nord.rs

 1// This file was generated by the `theme_importer`.
 2// Be careful when modifying it by hand.
 3
 4use gpui::rgba;
 5
 6use crate::{
 7    Appearance, ThemeColorsRefinement, UserTheme, UserThemeFamily, UserThemeStylesRefinement,
 8};
 9
10pub fn nord() -> UserThemeFamily {
11    UserThemeFamily {
12        name: "Nord".into(),
13        author: "Sven Greb (svengreb)".into(),
14        themes: vec![UserTheme {
15            name: "Nord".into(),
16            appearance: Appearance::Dark,
17            styles: UserThemeStylesRefinement {
18                colors: ThemeColorsRefinement {
19                    border: Some(rgba(0x3b4252ff).into()),
20                    border_variant: Some(rgba(0x3b4252ff).into()),
21                    border_focused: Some(rgba(0x3b4252ff).into()),
22                    border_selected: Some(rgba(0x3b4252ff).into()),
23                    border_transparent: Some(rgba(0x3b4252ff).into()),
24                    border_disabled: Some(rgba(0x3b4252ff).into()),
25                    elevated_surface_background: Some(rgba(0x2e3440ff).into()),
26                    surface_background: Some(rgba(0x2e3440ff).into()),
27                    background: Some(rgba(0x2e3440ff).into()),
28                    element_background: Some(rgba(0x88bfd0ee).into()),
29                    text: Some(rgba(0xd8dee9ff).into()),
30                    tab_inactive_background: Some(rgba(0x2e3440ff).into()),
31                    tab_active_background: Some(rgba(0x3b4252ff).into()),
32                    terminal_background: Some(rgba(0x2e3440ff).into()),
33                    terminal_ansi_bright_black: Some(rgba(0x4c566aff).into()),
34                    terminal_ansi_bright_red: Some(rgba(0xbf616aff).into()),
35                    terminal_ansi_bright_green: Some(rgba(0xa3be8cff).into()),
36                    terminal_ansi_bright_yellow: Some(rgba(0xebcb8bff).into()),
37                    terminal_ansi_bright_blue: Some(rgba(0x81a1c1ff).into()),
38                    terminal_ansi_bright_magenta: Some(rgba(0xb48eacff).into()),
39                    terminal_ansi_bright_cyan: Some(rgba(0x8fbcbbff).into()),
40                    terminal_ansi_bright_white: Some(rgba(0xeceff4ff).into()),
41                    terminal_ansi_black: Some(rgba(0x3b4252ff).into()),
42                    terminal_ansi_red: Some(rgba(0xbf616aff).into()),
43                    terminal_ansi_green: Some(rgba(0xa3be8cff).into()),
44                    terminal_ansi_yellow: Some(rgba(0xebcb8bff).into()),
45                    terminal_ansi_blue: Some(rgba(0x81a1c1ff).into()),
46                    terminal_ansi_magenta: Some(rgba(0xb48eacff).into()),
47                    terminal_ansi_cyan: Some(rgba(0x88bfd0ff).into()),
48                    terminal_ansi_white: Some(rgba(0xe5e9f0ff).into()),
49                    ..Default::default()
50                },
51            },
52        }],
53    }
54}