Revert changes to themes
This commit is contained in:
@@ -1,85 +1,131 @@
|
||||
Theme {
|
||||
metadata: ThemeMetadata {
|
||||
name: "One Dark".into(),
|
||||
is_light: false,
|
||||
},
|
||||
transparent: rgba(0x00000000).into(),
|
||||
mac_os_traffic_light_red: rgba(0xec695eff).into(),
|
||||
mac_os_traffic_light_yellow: rgba(0xf4bf4eff).into(),
|
||||
mac_os_traffic_light_green: rgba(0x61c553ff).into(),
|
||||
border: rgba(0x464b57ff).into(),
|
||||
border_variant: rgba(0x464b57ff).into(),
|
||||
border_focused: rgba(0x293b5bff).into(),
|
||||
border_transparent: rgba(0x00000000).into(),
|
||||
elevated_surface: rgba(0x3b414dff).into(),
|
||||
surface: rgba(0x2f343eff).into(),
|
||||
background: rgba(0x3b414dff).into(),
|
||||
filled_element: rgba(0x3b414dff).into(),
|
||||
filled_element_hover: rgba(0xffffff1e).into(),
|
||||
filled_element_active: rgba(0xffffff28).into(),
|
||||
filled_element_selected: rgba(0x18243dff).into(),
|
||||
filled_element_disabled: rgba(0x00000000).into(),
|
||||
ghost_element: rgba(0x00000000).into(),
|
||||
ghost_element_hover: rgba(0xffffff14).into(),
|
||||
ghost_element_active: rgba(0xffffff1e).into(),
|
||||
ghost_element_selected: rgba(0x18243dff).into(),
|
||||
ghost_element_disabled: rgba(0x00000000).into(),
|
||||
text: rgba(0xc8ccd4ff).into(),
|
||||
text_muted: rgba(0x838994ff).into(),
|
||||
text_placeholder: rgba(0xd07277ff).into(),
|
||||
text_disabled: rgba(0x555a63ff).into(),
|
||||
text_accent: rgba(0x74ade8ff).into(),
|
||||
icon_muted: rgba(0x838994ff).into(),
|
||||
syntax: SyntaxTheme {
|
||||
highlights: vec![("punctuation".into(), rgba(0xacb2beff).into()), ("comment".into(), rgba(0x5d636fff).into()), ("predictive".into(), rgba(0x5a6a87ff).into()), ("comment.doc".into(), rgba(0x878e98ff).into()), ("punctuation.bracket".into(), rgba(0xb2b9c6ff).into()), ("constant".into(), rgba(0xdfc184ff).into()), ("text.literal".into(), rgba(0xa1c181ff).into()), ("attribute".into(), rgba(0x74ade8ff).into()), ("link_text".into(), rgba(0x73ade9ff).into()), ("primary".into(), rgba(0xacb2beff).into()), ("enum".into(), rgba(0xd07277ff).into()), ("emphasis.strong".into(), rgba(0xbf956aff).into()), ("property".into(), rgba(0xd07277ff).into()), ("emphasis".into(), rgba(0x74ade8ff).into()), ("string.regex".into(), rgba(0xbf956aff).into()), ("variable".into(), rgba(0xc8ccd4ff).into()), ("keyword".into(), rgba(0xb477cfff).into()), ("boolean".into(), rgba(0xbf956aff).into()), ("variable.special".into(), rgba(0xbf956aff).into()), ("punctuation.special".into(), rgba(0xb1574bff).into()), ("title".into(), rgba(0xd07277ff).into()), ("punctuation.list_marker".into(), rgba(0xd07277ff).into()), ("string.special".into(), rgba(0xbf956aff).into()), ("number".into(), rgba(0xbf956aff).into()), ("preproc".into(), rgba(0xc8ccd4ff).into()), ("constructor".into(), rgba(0x73ade9ff).into()), ("string.special.symbol".into(), rgba(0xbf956aff).into()), ("link_uri".into(), rgba(0x6eb4bfff).into()), ("string".into(), rgba(0xa1c181ff).into()), ("string.escape".into(), rgba(0x878e98ff).into()), ("operator".into(), rgba(0x6eb4bfff).into()), ("hint".into(), rgba(0x5a6f89ff).into()), ("label".into(), rgba(0x74ade8ff).into()), ("type".into(), rgba(0x6eb4bfff).into()), ("embedded".into(), rgba(0xc8ccd4ff).into()), ("function".into(), rgba(0x73ade9ff).into()), ("tag".into(), rgba(0x74ade8ff).into()), ("variant".into(), rgba(0x73ade9ff).into()), ("punctuation.delimiter".into(), rgba(0xb2b9c6ff).into())],
|
||||
},
|
||||
status_bar: rgba(0x3b414dff).into(),
|
||||
title_bar: rgba(0x3b414dff).into(),
|
||||
toolbar: rgba(0x282c33ff).into(),
|
||||
tab_bar: rgba(0x2f343eff).into(),
|
||||
editor: rgba(0x282c33ff).into(),
|
||||
editor_subheader: rgba(0x2f343eff).into(),
|
||||
editor_active_line: rgba(0x2f343eff).into(),
|
||||
terminal: rgba(0x282c33ff).into(),
|
||||
image_fallback_background: rgba(0x3b414dff).into(),
|
||||
git_created: rgba(0xa1c181ff).into(),
|
||||
git_modified: rgba(0x74ade8ff).into(),
|
||||
git_deleted: rgba(0xd07277ff).into(),
|
||||
git_conflict: rgba(0xdec184ff).into(),
|
||||
git_ignored: rgba(0x555a63ff).into(),
|
||||
git_renamed: rgba(0xdec184ff).into(),
|
||||
players: [
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x74ade8ff).into(),
|
||||
selection: rgba(0x74ade83d).into(),
|
||||
use gpui2::rgba;
|
||||
|
||||
use crate::{PlayerTheme, SyntaxTheme, Theme, ThemeMetadata};
|
||||
|
||||
pub fn one_dark() -> Theme {
|
||||
Theme {
|
||||
metadata: ThemeMetadata {
|
||||
name: "One Dark".into(),
|
||||
is_light: false,
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa1c181ff).into(),
|
||||
selection: rgba(0xa1c1813d).into(),
|
||||
transparent: rgba(0x00000000).into(),
|
||||
mac_os_traffic_light_red: rgba(0xec695eff).into(),
|
||||
mac_os_traffic_light_yellow: rgba(0xf4bf4eff).into(),
|
||||
mac_os_traffic_light_green: rgba(0x61c553ff).into(),
|
||||
border: rgba(0x464b57ff).into(),
|
||||
border_variant: rgba(0x464b57ff).into(),
|
||||
border_focused: rgba(0x293b5bff).into(),
|
||||
border_transparent: rgba(0x00000000).into(),
|
||||
elevated_surface: rgba(0x3b414dff).into(),
|
||||
surface: rgba(0x2f343eff).into(),
|
||||
background: rgba(0x3b414dff).into(),
|
||||
filled_element: rgba(0x3b414dff).into(),
|
||||
filled_element_hover: rgba(0xffffff1e).into(),
|
||||
filled_element_active: rgba(0xffffff28).into(),
|
||||
filled_element_selected: rgba(0x18243dff).into(),
|
||||
filled_element_disabled: rgba(0x00000000).into(),
|
||||
ghost_element: rgba(0x00000000).into(),
|
||||
ghost_element_hover: rgba(0xffffff14).into(),
|
||||
ghost_element_active: rgba(0xffffff1e).into(),
|
||||
ghost_element_selected: rgba(0x18243dff).into(),
|
||||
ghost_element_disabled: rgba(0x00000000).into(),
|
||||
text: rgba(0xc8ccd4ff).into(),
|
||||
text_muted: rgba(0x838994ff).into(),
|
||||
text_placeholder: rgba(0xd07277ff).into(),
|
||||
text_disabled: rgba(0x555a63ff).into(),
|
||||
text_accent: rgba(0x74ade8ff).into(),
|
||||
icon_muted: rgba(0x838994ff).into(),
|
||||
syntax: SyntaxTheme {
|
||||
highlights: vec![
|
||||
("link_uri".into(), rgba(0x6eb4bfff).into()),
|
||||
("number".into(), rgba(0xbf956aff).into()),
|
||||
("property".into(), rgba(0xd07277ff).into()),
|
||||
("boolean".into(), rgba(0xbf956aff).into()),
|
||||
("label".into(), rgba(0x74ade8ff).into()),
|
||||
("punctuation.list_marker".into(), rgba(0xd07277ff).into()),
|
||||
("keyword".into(), rgba(0xb477cfff).into()),
|
||||
("punctuation.delimiter".into(), rgba(0xb2b9c6ff).into()),
|
||||
("string.special".into(), rgba(0xbf956aff).into()),
|
||||
("constant".into(), rgba(0xdfc184ff).into()),
|
||||
("punctuation".into(), rgba(0xacb2beff).into()),
|
||||
("variable.special".into(), rgba(0xbf956aff).into()),
|
||||
("preproc".into(), rgba(0xc8ccd4ff).into()),
|
||||
("enum".into(), rgba(0xd07277ff).into()),
|
||||
("attribute".into(), rgba(0x74ade8ff).into()),
|
||||
("emphasis.strong".into(), rgba(0xbf956aff).into()),
|
||||
("title".into(), rgba(0xd07277ff).into()),
|
||||
("hint".into(), rgba(0x5a6f89ff).into()),
|
||||
("emphasis".into(), rgba(0x74ade8ff).into()),
|
||||
("string.regex".into(), rgba(0xbf956aff).into()),
|
||||
("link_text".into(), rgba(0x73ade9ff).into()),
|
||||
("string".into(), rgba(0xa1c181ff).into()),
|
||||
("comment.doc".into(), rgba(0x878e98ff).into()),
|
||||
("punctuation.special".into(), rgba(0xb1574bff).into()),
|
||||
("primary".into(), rgba(0xacb2beff).into()),
|
||||
("operator".into(), rgba(0x6eb4bfff).into()),
|
||||
("function".into(), rgba(0x73ade9ff).into()),
|
||||
("string.special.symbol".into(), rgba(0xbf956aff).into()),
|
||||
("type".into(), rgba(0x6eb4bfff).into()),
|
||||
("variant".into(), rgba(0x73ade9ff).into()),
|
||||
("tag".into(), rgba(0x74ade8ff).into()),
|
||||
("punctuation.bracket".into(), rgba(0xb2b9c6ff).into()),
|
||||
("embedded".into(), rgba(0xc8ccd4ff).into()),
|
||||
("string.escape".into(), rgba(0x878e98ff).into()),
|
||||
("variable".into(), rgba(0xc8ccd4ff).into()),
|
||||
("predictive".into(), rgba(0x5a6a87ff).into()),
|
||||
("comment".into(), rgba(0x5d636fff).into()),
|
||||
("text.literal".into(), rgba(0xa1c181ff).into()),
|
||||
("constructor".into(), rgba(0x73ade9ff).into()),
|
||||
],
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xbe5046ff).into(),
|
||||
selection: rgba(0xbe50463d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xbf956aff).into(),
|
||||
selection: rgba(0xbf956a3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xb477cfff).into(),
|
||||
selection: rgba(0xb477cf3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x6eb4bfff).into(),
|
||||
selection: rgba(0x6eb4bf3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xd07277ff).into(),
|
||||
selection: rgba(0xd072773d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xdec184ff).into(),
|
||||
selection: rgba(0xdec1843d).into(),
|
||||
},
|
||||
],
|
||||
}
|
||||
status_bar: rgba(0x3b414dff).into(),
|
||||
title_bar: rgba(0x3b414dff).into(),
|
||||
toolbar: rgba(0x282c33ff).into(),
|
||||
tab_bar: rgba(0x2f343eff).into(),
|
||||
editor: rgba(0x282c33ff).into(),
|
||||
editor_subheader: rgba(0x2f343eff).into(),
|
||||
editor_active_line: rgba(0x2f343eff).into(),
|
||||
terminal: rgba(0x282c33ff).into(),
|
||||
image_fallback_background: rgba(0x3b414dff).into(),
|
||||
git_created: rgba(0xa1c181ff).into(),
|
||||
git_modified: rgba(0x74ade8ff).into(),
|
||||
git_deleted: rgba(0xd07277ff).into(),
|
||||
git_conflict: rgba(0xdec184ff).into(),
|
||||
git_ignored: rgba(0x555a63ff).into(),
|
||||
git_renamed: rgba(0xdec184ff).into(),
|
||||
players: [
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x74ade8ff).into(),
|
||||
selection: rgba(0x74ade83d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa1c181ff).into(),
|
||||
selection: rgba(0xa1c1813d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xbe5046ff).into(),
|
||||
selection: rgba(0xbe50463d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xbf956aff).into(),
|
||||
selection: rgba(0xbf956a3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xb477cfff).into(),
|
||||
selection: rgba(0xb477cf3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x6eb4bfff).into(),
|
||||
selection: rgba(0x6eb4bf3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xd07277ff).into(),
|
||||
selection: rgba(0xd072773d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xdec184ff).into(),
|
||||
selection: rgba(0xdec1843d).into(),
|
||||
},
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,85 +1,130 @@
|
||||
Theme {
|
||||
metadata: ThemeMetadata {
|
||||
name: "Sandcastle".into(),
|
||||
is_light: false,
|
||||
},
|
||||
transparent: rgba(0x00000000).into(),
|
||||
mac_os_traffic_light_red: rgba(0xec695eff).into(),
|
||||
mac_os_traffic_light_yellow: rgba(0xf4bf4eff).into(),
|
||||
mac_os_traffic_light_green: rgba(0x61c553ff).into(),
|
||||
border: rgba(0x3d4350ff).into(),
|
||||
border_variant: rgba(0x3d4350ff).into(),
|
||||
border_focused: rgba(0x223131ff).into(),
|
||||
border_transparent: rgba(0x00000000).into(),
|
||||
elevated_surface: rgba(0x333944ff).into(),
|
||||
surface: rgba(0x2b3038ff).into(),
|
||||
background: rgba(0x333944ff).into(),
|
||||
filled_element: rgba(0x333944ff).into(),
|
||||
filled_element_hover: rgba(0xffffff1e).into(),
|
||||
filled_element_active: rgba(0xffffff28).into(),
|
||||
filled_element_selected: rgba(0x171e1eff).into(),
|
||||
filled_element_disabled: rgba(0x00000000).into(),
|
||||
ghost_element: rgba(0x00000000).into(),
|
||||
ghost_element_hover: rgba(0xffffff14).into(),
|
||||
ghost_element_active: rgba(0xffffff1e).into(),
|
||||
ghost_element_selected: rgba(0x171e1eff).into(),
|
||||
ghost_element_disabled: rgba(0x00000000).into(),
|
||||
text: rgba(0xfdf4c1ff).into(),
|
||||
text_muted: rgba(0xa69782ff).into(),
|
||||
text_placeholder: rgba(0xb3627aff).into(),
|
||||
text_disabled: rgba(0x827568ff).into(),
|
||||
text_accent: rgba(0x518b8bff).into(),
|
||||
icon_muted: rgba(0xa69782ff).into(),
|
||||
syntax: SyntaxTheme {
|
||||
highlights: vec![("variable".into(), rgba(0xfdf4c1ff).into()), ("comment.doc".into(), rgba(0xa89984ff).into()), ("punctuation".into(), rgba(0xd5c5a1ff).into()), ("comment".into(), rgba(0xa89984ff).into()), ("punctuation.special".into(), rgba(0xd5c5a1ff).into()), ("string.regex".into(), rgba(0xa07d3aff).into()), ("emphasis".into(), rgba(0x518b8bff).into()), ("link_uri".into(), rgba(0x83a598ff).into()), ("label".into(), rgba(0x518b8bff).into()), ("property".into(), rgba(0x518b8bff).into()), ("constant".into(), rgba(0x83a598ff).into()), ("enum".into(), rgba(0xa07d3aff).into()), ("number".into(), rgba(0x83a598ff).into()), ("link_text".into(), rgba(0xa07d3aff).into()), ("hint".into(), rgba(0x727d68ff).into()), ("type".into(), rgba(0x83a598ff).into()), ("title".into(), rgba(0xfdf4c1ff).into()), ("punctuation.delimiter".into(), rgba(0xd5c5a1ff).into()), ("function".into(), rgba(0xa07d3aff).into()), ("preproc".into(), rgba(0xfdf4c1ff).into()), ("boolean".into(), rgba(0x83a598ff).into()), ("keyword".into(), rgba(0x518b8bff).into()), ("attribute".into(), rgba(0x518b8bff).into()), ("predictive".into(), rgba(0x5c6152ff).into()), ("string".into(), rgba(0xa07d3aff).into()), ("emphasis.strong".into(), rgba(0x518b8bff).into()), ("punctuation.bracket".into(), rgba(0xd5c5a1ff).into()), ("string.special.symbol".into(), rgba(0xa07d3aff).into()), ("variant".into(), rgba(0x518b8bff).into()), ("tag".into(), rgba(0x518b8bff).into()), ("primary".into(), rgba(0xfdf4c1ff).into()), ("string.special".into(), rgba(0xa07d3aff).into()), ("punctuation.list_marker".into(), rgba(0xd5c5a1ff).into()), ("string.escape".into(), rgba(0xa89984ff).into()), ("constructor".into(), rgba(0x518b8bff).into()), ("embedded".into(), rgba(0xfdf4c1ff).into()), ("operator".into(), rgba(0xa07d3aff).into()), ("text.literal".into(), rgba(0xa07d3aff).into())],
|
||||
},
|
||||
status_bar: rgba(0x333944ff).into(),
|
||||
title_bar: rgba(0x333944ff).into(),
|
||||
toolbar: rgba(0x282c33ff).into(),
|
||||
tab_bar: rgba(0x2b3038ff).into(),
|
||||
editor: rgba(0x282c33ff).into(),
|
||||
editor_subheader: rgba(0x2b3038ff).into(),
|
||||
editor_active_line: rgba(0x2b3038ff).into(),
|
||||
terminal: rgba(0x282c33ff).into(),
|
||||
image_fallback_background: rgba(0x333944ff).into(),
|
||||
git_created: rgba(0x83a598ff).into(),
|
||||
git_modified: rgba(0x518b8bff).into(),
|
||||
git_deleted: rgba(0xb3627aff).into(),
|
||||
git_conflict: rgba(0xa07d3aff).into(),
|
||||
git_ignored: rgba(0x827568ff).into(),
|
||||
git_renamed: rgba(0xa07d3aff).into(),
|
||||
players: [
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x518b8bff).into(),
|
||||
selection: rgba(0x518b8b3d).into(),
|
||||
use gpui2::rgba;
|
||||
|
||||
use crate::{PlayerTheme, SyntaxTheme, Theme, ThemeMetadata};
|
||||
|
||||
pub fn sandcastle() -> Theme {
|
||||
Theme {
|
||||
metadata: ThemeMetadata {
|
||||
name: "Sandcastle".into(),
|
||||
is_light: false,
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x83a598ff).into(),
|
||||
selection: rgba(0x83a5983d).into(),
|
||||
transparent: rgba(0x00000000).into(),
|
||||
mac_os_traffic_light_red: rgba(0xec695eff).into(),
|
||||
mac_os_traffic_light_yellow: rgba(0xf4bf4eff).into(),
|
||||
mac_os_traffic_light_green: rgba(0x61c553ff).into(),
|
||||
border: rgba(0x3d4350ff).into(),
|
||||
border_variant: rgba(0x3d4350ff).into(),
|
||||
border_focused: rgba(0x223131ff).into(),
|
||||
border_transparent: rgba(0x00000000).into(),
|
||||
elevated_surface: rgba(0x333944ff).into(),
|
||||
surface: rgba(0x2b3038ff).into(),
|
||||
background: rgba(0x333944ff).into(),
|
||||
filled_element: rgba(0x333944ff).into(),
|
||||
filled_element_hover: rgba(0xffffff1e).into(),
|
||||
filled_element_active: rgba(0xffffff28).into(),
|
||||
filled_element_selected: rgba(0x171e1eff).into(),
|
||||
filled_element_disabled: rgba(0x00000000).into(),
|
||||
ghost_element: rgba(0x00000000).into(),
|
||||
ghost_element_hover: rgba(0xffffff14).into(),
|
||||
ghost_element_active: rgba(0xffffff1e).into(),
|
||||
ghost_element_selected: rgba(0x171e1eff).into(),
|
||||
ghost_element_disabled: rgba(0x00000000).into(),
|
||||
text: rgba(0xfdf4c1ff).into(),
|
||||
text_muted: rgba(0xa69782ff).into(),
|
||||
text_placeholder: rgba(0xb3627aff).into(),
|
||||
text_disabled: rgba(0x827568ff).into(),
|
||||
text_accent: rgba(0x518b8bff).into(),
|
||||
icon_muted: rgba(0xa69782ff).into(),
|
||||
syntax: SyntaxTheme {
|
||||
highlights: vec![
|
||||
("string.special.symbol".into(), rgba(0xa07d3aff).into()),
|
||||
("enum".into(), rgba(0xa07d3aff).into()),
|
||||
("punctuation.bracket".into(), rgba(0xd5c5a1ff).into()),
|
||||
("hint".into(), rgba(0x727d68ff).into()),
|
||||
("punctuation.delimiter".into(), rgba(0xd5c5a1ff).into()),
|
||||
("comment".into(), rgba(0xa89984ff).into()),
|
||||
("embedded".into(), rgba(0xfdf4c1ff).into()),
|
||||
("string".into(), rgba(0xa07d3aff).into()),
|
||||
("string.escape".into(), rgba(0xa89984ff).into()),
|
||||
("comment.doc".into(), rgba(0xa89984ff).into()),
|
||||
("variant".into(), rgba(0x518b8bff).into()),
|
||||
("predictive".into(), rgba(0x5c6152ff).into()),
|
||||
("link_text".into(), rgba(0xa07d3aff).into()),
|
||||
("attribute".into(), rgba(0x518b8bff).into()),
|
||||
("title".into(), rgba(0xfdf4c1ff).into()),
|
||||
("emphasis.strong".into(), rgba(0x518b8bff).into()),
|
||||
("primary".into(), rgba(0xfdf4c1ff).into()),
|
||||
("punctuation.list_marker".into(), rgba(0xd5c5a1ff).into()),
|
||||
("boolean".into(), rgba(0x83a598ff).into()),
|
||||
("function".into(), rgba(0xa07d3aff).into()),
|
||||
("punctuation.special".into(), rgba(0xd5c5a1ff).into()),
|
||||
("string.special".into(), rgba(0xa07d3aff).into()),
|
||||
("string.regex".into(), rgba(0xa07d3aff).into()),
|
||||
("tag".into(), rgba(0x518b8bff).into()),
|
||||
("keyword".into(), rgba(0x518b8bff).into()),
|
||||
("type".into(), rgba(0x83a598ff).into()),
|
||||
("text.literal".into(), rgba(0xa07d3aff).into()),
|
||||
("link_uri".into(), rgba(0x83a598ff).into()),
|
||||
("label".into(), rgba(0x518b8bff).into()),
|
||||
("property".into(), rgba(0x518b8bff).into()),
|
||||
("number".into(), rgba(0x83a598ff).into()),
|
||||
("constructor".into(), rgba(0x518b8bff).into()),
|
||||
("preproc".into(), rgba(0xfdf4c1ff).into()),
|
||||
("emphasis".into(), rgba(0x518b8bff).into()),
|
||||
("variable".into(), rgba(0xfdf4c1ff).into()),
|
||||
("operator".into(), rgba(0xa07d3aff).into()),
|
||||
("punctuation".into(), rgba(0xd5c5a1ff).into()),
|
||||
("constant".into(), rgba(0x83a598ff).into()),
|
||||
],
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa87222ff).into(),
|
||||
selection: rgba(0xa872223d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa07d3aff).into(),
|
||||
selection: rgba(0xa07d3a3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xd75f5fff).into(),
|
||||
selection: rgba(0xd75f5f3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x83a598ff).into(),
|
||||
selection: rgba(0x83a5983d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xb3627aff).into(),
|
||||
selection: rgba(0xb3627a3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa07d3aff).into(),
|
||||
selection: rgba(0xa07d3a3d).into(),
|
||||
},
|
||||
],
|
||||
}
|
||||
status_bar: rgba(0x333944ff).into(),
|
||||
title_bar: rgba(0x333944ff).into(),
|
||||
toolbar: rgba(0x282c33ff).into(),
|
||||
tab_bar: rgba(0x2b3038ff).into(),
|
||||
editor: rgba(0x282c33ff).into(),
|
||||
editor_subheader: rgba(0x2b3038ff).into(),
|
||||
editor_active_line: rgba(0x2b3038ff).into(),
|
||||
terminal: rgba(0x282c33ff).into(),
|
||||
image_fallback_background: rgba(0x333944ff).into(),
|
||||
git_created: rgba(0x83a598ff).into(),
|
||||
git_modified: rgba(0x518b8bff).into(),
|
||||
git_deleted: rgba(0xb3627aff).into(),
|
||||
git_conflict: rgba(0xa07d3aff).into(),
|
||||
git_ignored: rgba(0x827568ff).into(),
|
||||
git_renamed: rgba(0xa07d3aff).into(),
|
||||
players: [
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x518b8bff).into(),
|
||||
selection: rgba(0x518b8b3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x83a598ff).into(),
|
||||
selection: rgba(0x83a5983d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa87222ff).into(),
|
||||
selection: rgba(0xa872223d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa07d3aff).into(),
|
||||
selection: rgba(0xa07d3a3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xd75f5fff).into(),
|
||||
selection: rgba(0xd75f5f3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0x83a598ff).into(),
|
||||
selection: rgba(0x83a5983d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xb3627aff).into(),
|
||||
selection: rgba(0xb3627a3d).into(),
|
||||
},
|
||||
PlayerTheme {
|
||||
cursor: rgba(0xa07d3aff).into(),
|
||||
selection: rgba(0xa07d3a3d).into(),
|
||||
},
|
||||
],
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user