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 night_owl() -> UserThemeFamily {
11 UserThemeFamily {
12 name: "Night Owl".into(),
13 author: "Sarah Drasner (sdras)".into(),
14 themes: vec![
15 UserTheme {
16 name: "Night Owl".into(),
17 appearance: Appearance::Dark,
18 styles: UserThemeStylesRefinement {
19 colors: ThemeColorsRefinement {
20 border: Some(rgba(0x5f7e97ff).into()),
21 border_variant: Some(rgba(0x5f7e97ff).into()),
22 border_focused: Some(rgba(0x5f7e97ff).into()),
23 border_selected: Some(rgba(0x5f7e97ff).into()),
24 border_transparent: Some(rgba(0x5f7e97ff).into()),
25 border_disabled: Some(rgba(0x5f7e97ff).into()),
26 elevated_surface_background: Some(rgba(0x011526ff).into()),
27 surface_background: Some(rgba(0x011526ff).into()),
28 background: Some(rgba(0x011526ff).into()),
29 element_background: Some(rgba(0x7d56c1cc).into()),
30 text: Some(rgba(0xd6deebff).into()),
31 tab_inactive_background: Some(rgba(0x01101cff).into()),
32 tab_active_background: Some(rgba(0x0a2842ff).into()),
33 terminal_ansi_bright_black: Some(rgba(0x575656ff).into()),
34 terminal_ansi_bright_red: Some(rgba(0xef524fff).into()),
35 terminal_ansi_bright_green: Some(rgba(0x21da6eff).into()),
36 terminal_ansi_bright_yellow: Some(rgba(0xffeb95ff).into()),
37 terminal_ansi_bright_blue: Some(rgba(0x82aaffff).into()),
38 terminal_ansi_bright_magenta: Some(rgba(0xc792eaff).into()),
39 terminal_ansi_bright_cyan: Some(rgba(0x7fdbcaff).into()),
40 terminal_ansi_bright_white: Some(rgba(0xffffffff).into()),
41 terminal_ansi_black: Some(rgba(0x011526ff).into()),
42 terminal_ansi_red: Some(rgba(0xef524fff).into()),
43 terminal_ansi_green: Some(rgba(0x21da6eff).into()),
44 terminal_ansi_yellow: Some(rgba(0xc5e478ff).into()),
45 terminal_ansi_blue: Some(rgba(0x82aaffff).into()),
46 terminal_ansi_magenta: Some(rgba(0xc792eaff).into()),
47 terminal_ansi_cyan: Some(rgba(0x20c7a7ff).into()),
48 terminal_ansi_white: Some(rgba(0xffffffff).into()),
49 ..Default::default()
50 },
51 },
52 },
53 UserTheme {
54 name: "Night Owl Light".into(),
55 appearance: Appearance::Light,
56 styles: UserThemeStylesRefinement {
57 colors: ThemeColorsRefinement {
58 border: Some(rgba(0xd9d9d9ff).into()),
59 border_variant: Some(rgba(0xd9d9d9ff).into()),
60 border_focused: Some(rgba(0xd9d9d9ff).into()),
61 border_selected: Some(rgba(0xd9d9d9ff).into()),
62 border_transparent: Some(rgba(0xd9d9d9ff).into()),
63 border_disabled: Some(rgba(0xd9d9d9ff).into()),
64 elevated_surface_background: Some(rgba(0xf0f0f0ff).into()),
65 surface_background: Some(rgba(0xf0f0f0ff).into()),
66 background: Some(rgba(0xfbfbfbff).into()),
67 element_background: Some(rgba(0x29a298ff).into()),
68 text: Some(rgba(0x403f53ff).into()),
69 tab_inactive_background: Some(rgba(0xf0f0f0ff).into()),
70 tab_active_background: Some(rgba(0xf6f6f6ff).into()),
71 terminal_background: Some(rgba(0xf6f6f6ff).into()),
72 terminal_ansi_bright_black: Some(rgba(0x403f53ff).into()),
73 terminal_ansi_bright_red: Some(rgba(0xde3c3aff).into()),
74 terminal_ansi_bright_green: Some(rgba(0x07916aff).into()),
75 terminal_ansi_bright_yellow: Some(rgba(0xdaa900ff).into()),
76 terminal_ansi_bright_blue: Some(rgba(0x278dd7ff).into()),
77 terminal_ansi_bright_magenta: Some(rgba(0xd64289ff).into()),
78 terminal_ansi_bright_cyan: Some(rgba(0x29a298ff).into()),
79 terminal_ansi_bright_white: Some(rgba(0xf0f0f0ff).into()),
80 terminal_ansi_black: Some(rgba(0x403f53ff).into()),
81 terminal_ansi_red: Some(rgba(0xde3c3aff).into()),
82 terminal_ansi_green: Some(rgba(0x07916aff).into()),
83 terminal_ansi_yellow: Some(rgba(0xe0ae01ff).into()),
84 terminal_ansi_blue: Some(rgba(0x278dd7ff).into()),
85 terminal_ansi_magenta: Some(rgba(0xd64289ff).into()),
86 terminal_ansi_cyan: Some(rgba(0x29a298ff).into()),
87 terminal_ansi_white: Some(rgba(0xf0f0f0ff).into()),
88 ..Default::default()
89 },
90 },
91 },
92 ],
93 }
94}