Begin working on adwaita/tomorrow hybrid theme
This commit is contained in:
parent
da50c9dd93
commit
7b20d25869
37
data/adwaita.yml
Normal file
37
data/adwaita.yml
Normal file
@ -0,0 +1,37 @@
|
||||
name: Adwaita
|
||||
author: Jeff Anderson
|
||||
themes:
|
||||
- name: Adwaita Dark
|
||||
appearance: dark
|
||||
style:
|
||||
- black: "#1E1F21"
|
||||
bright_black: "#373B4180"
|
||||
dim_black: "#17181A"
|
||||
|
||||
white: "#C5C8C6"
|
||||
bright_white: "#FFFFFF"
|
||||
dim_white: "#DEDDDA"
|
||||
|
||||
blue: "#3584E4"
|
||||
bright_blue: "#99C1F1"
|
||||
dim_blue: "#1A5FB4"
|
||||
|
||||
green: "#33D17A"
|
||||
bright_green: "#8FF0A4"
|
||||
dim_green: "#26A269"
|
||||
|
||||
yellow: "#F6D32D"
|
||||
bright_yellow: "#F9F06B"
|
||||
dim_yellow: "#E5A50A"
|
||||
|
||||
orange: "#FF7800"
|
||||
bright_orange: "#FFBE6F"
|
||||
dim_orange: "#C64600"
|
||||
|
||||
red: "#E01B24"
|
||||
bright_red: "#F66151"
|
||||
dim_red: "#A51D2D"
|
||||
|
||||
magenta: "#9141AC"
|
||||
bright_magenta: "#DC8ADD"
|
||||
dim_magenta: "#613583"
|
381
templates/adwaita.mustache
Normal file
381
templates/adwaita.mustache
Normal file
@ -0,0 +1,381 @@
|
||||
{
|
||||
"$schema": "https://zed.dev/schema/themes/v0.2.0.json",
|
||||
"name": "{{name}}",
|
||||
"author": "{{author}}",
|
||||
"themes": [
|
||||
{{#themes}}
|
||||
{
|
||||
"name": "{{name}}",
|
||||
"appearance": "{{appearance}}",
|
||||
"style": {
|
||||
{{#style}}
|
||||
"border": "{{dim_white}}",
|
||||
"border.variant": "{{dim_white}}",
|
||||
"border.focused": "{{white}}",
|
||||
"border.selected": "{{white}}",
|
||||
"border.transparent": "#00000000",
|
||||
"border.disabled": "#2e2a1fff",
|
||||
"elevated_surface.background": "{{black}}",
|
||||
"surface.background": "{{black}}",
|
||||
"background": "{{black}}",
|
||||
"element.background": "{{black}}",
|
||||
"element.hover": "#29251bff",
|
||||
"element.active": "{{bright_black}}",
|
||||
"element.selected": "{{bright_black}}",
|
||||
"element.disabled": "{{black}}",
|
||||
"drop_target.background": "#736e5580",
|
||||
"ghost_element.background": "#00000000",
|
||||
"ghost_element.hover": "#29251bff",
|
||||
"ghost_element.active": "{{bright_black}}",
|
||||
"ghost_element.selected": "{{bright_black}}",
|
||||
"ghost_element.disabled": "{{black}}",
|
||||
"text": "{{white}}",
|
||||
"text.muted": "#736e55ff",
|
||||
"text.placeholder": "#4c4735ff",
|
||||
"text.disabled": "#4c4735ff",
|
||||
"text.accent": "{{blue}}",
|
||||
"icon": "{{white}}",
|
||||
"icon.muted": "#736e55ff",
|
||||
"icon.disabled": "#4c4735ff",
|
||||
"icon.placeholder": "#736e55ff",
|
||||
"icon.accent": "{{blue}}",
|
||||
"status_bar.background": "{{black}}",
|
||||
"title_bar.background": "{{black}}",
|
||||
"title_bar.inactive_background": "{{black}}",
|
||||
"toolbar.background": "{{black}}",
|
||||
"tab_bar.background": "{{black}}",
|
||||
"tab.inactive_background": "{{black}}",
|
||||
"tab.active_background": "{{black}}",
|
||||
"search.match_background": "#499bef66",
|
||||
"panel.background": "{{black}}",
|
||||
"panel.focused_border": "{{blue}}",
|
||||
"pane.focused_border": null,
|
||||
"scrollbar.thumb.background": "#f8f5de4c",
|
||||
"scrollbar.thumb.hover_background": "#29251bff",
|
||||
"scrollbar.thumb.border": "#29251bff",
|
||||
"scrollbar.track.background": "#00000000",
|
||||
"scrollbar.track.border": "#221e15ff",
|
||||
"editor.foreground": "{{white}}",
|
||||
"editor.background": "{{black}}",
|
||||
"editor.gutter.background": "{{black}}",
|
||||
"editor.subheader.background": "{{black}}",
|
||||
"editor.active_line.background": "#231f16bf",
|
||||
"editor.highlighted_line.background": "{{black}}",
|
||||
"editor.line_number": "#f8f5de59",
|
||||
"editor.active_line_number": "{{white}}",
|
||||
"editor.invisible": "#494433ff",
|
||||
"editor.wrap_guide": "#f8f5de0d",
|
||||
"editor.active_wrap_guide": "#f8f5de1a",
|
||||
"editor.document_highlight.read_background": "#499bef1a",
|
||||
"editor.document_highlight.write_background": "#49443366",
|
||||
"terminal.background": "{{black}}",
|
||||
"terminal.foreground": "{{white}}",
|
||||
"terminal.bright_foreground": "{{white}}",
|
||||
"terminal.dim_foreground": "{{black}}",
|
||||
"terminal.ansi.black": "{{black}}",
|
||||
"terminal.ansi.bright_black": "{{bright_black}}",
|
||||
"terminal.ansi.dim_black": "{{white}}",
|
||||
"terminal.ansi.red": "{{red}}",
|
||||
"terminal.ansi.bright_red": "{{bright_red}}",
|
||||
"terminal.ansi.dim_red": "{{dim_red}}",
|
||||
"terminal.ansi.green": "{{green}}",
|
||||
"terminal.ansi.bright_green": "{{bright_green}}",
|
||||
"terminal.ansi.dim_green": "{{dim_green}}",
|
||||
"terminal.ansi.yellow": "{{yellow}}",
|
||||
"terminal.ansi.bright_yellow": "{{bright_yellow}}",
|
||||
"terminal.ansi.dim_yellow": "{{dim_yellow}}",
|
||||
"terminal.ansi.blue": "{{blue}}",
|
||||
"terminal.ansi.bright_blue": "{{bright_blue}}",
|
||||
"terminal.ansi.dim_blue": "{{dim_blue}}",
|
||||
"terminal.ansi.magenta": "{{magenta}}",
|
||||
"terminal.ansi.bright_magenta": "{{bright_magenta}}",
|
||||
"terminal.ansi.dim_magenta": "{{dim_magenta}}",
|
||||
"terminal.ansi.cyan": "{{cyan}}",
|
||||
"terminal.ansi.bright_cyan": "{{bright_cyan}}",
|
||||
"terminal.ansi.dim_cyan": "{{dim_cyan}}",
|
||||
"terminal.ansi.white": "{{white}}",
|
||||
"terminal.ansi.bright_white": "{{white}}",
|
||||
"terminal.ansi.dim_white": "{{dim_white}}",
|
||||
"link_text.hover": "{{blue}}",
|
||||
"conflict": "#f1fe28ff",
|
||||
"conflict.background": "#546205ff",
|
||||
"conflict.border": "#717f0aff",
|
||||
"created": "{{green}}",
|
||||
"created.background": "#094d12ff",
|
||||
"created.border": "#1a6a20ff",
|
||||
"deleted": "{{red}}",
|
||||
"deleted.background": "#490f12ff",
|
||||
"deleted.border": "#651c1cff",
|
||||
"error": "{{red}}",
|
||||
"error.background": "#490f12ff",
|
||||
"error.border": "#651c1cff",
|
||||
"hidden": "#4c4735ff",
|
||||
"hidden.background": "{{black}}",
|
||||
"hidden.border": "#2e2a1fff",
|
||||
"hint": "#246e61ff",
|
||||
"hint.background": "#0e2242ff",
|
||||
"hint.border": "#193760ff",
|
||||
"ignored": "#4c4735ff",
|
||||
"ignored.background": "{{black}}",
|
||||
"ignored.border": "#302c21ff",
|
||||
"info": "{{blue}}",
|
||||
"info.background": "#0e2242ff",
|
||||
"info.border": "#193760ff",
|
||||
"modified": "#f1fe28ff",
|
||||
"modified.background": "#546205ff",
|
||||
"modified.border": "#717f0aff",
|
||||
"predictive": "#78434aff",
|
||||
"predictive.background": "#094d12ff",
|
||||
"predictive.border": "#1a6a20ff",
|
||||
"renamed": "{{blue}}",
|
||||
"renamed.background": "#0e2242ff",
|
||||
"renamed.border": "#193760ff",
|
||||
"success": "{{green}}",
|
||||
"success.background": "#094d12ff",
|
||||
"success.border": "#1a6a20ff",
|
||||
"unreachable": "#736e55ff",
|
||||
"unreachable.background": "{{black}}",
|
||||
"unreachable.border": "#302c21ff",
|
||||
"warning": "#f1fe28ff",
|
||||
"warning.background": "#546205ff",
|
||||
"warning.border": "#717f0aff",
|
||||
"players": [
|
||||
{
|
||||
"cursor": "{{blue}}",
|
||||
"background": "{{blue}}",
|
||||
"selection": "#499bef3d"
|
||||
},
|
||||
{
|
||||
"cursor": "{{magenta}}",
|
||||
"background": "{{magenta}}",
|
||||
"selection": "#f59be63d"
|
||||
},
|
||||
{
|
||||
"cursor": "#faa11cff",
|
||||
"background": "#faa11cff",
|
||||
"selection": "#faa11c3d"
|
||||
},
|
||||
{
|
||||
"cursor": "#fe8080ff",
|
||||
"background": "#fe8080ff",
|
||||
"selection": "#fe80803d"
|
||||
},
|
||||
{
|
||||
"cursor": "{{cyan}}",
|
||||
"background": "{{cyan}}",
|
||||
"selection": "#5aeabb3d"
|
||||
},
|
||||
{
|
||||
"cursor": "{{red}}",
|
||||
"background": "{{red}}",
|
||||
"selection": "#e350413d"
|
||||
},
|
||||
{
|
||||
"cursor": "#f1fe28ff",
|
||||
"background": "#f1fe28ff",
|
||||
"selection": "#f1fe283d"
|
||||
},
|
||||
{
|
||||
"cursor": "{{green}}",
|
||||
"background": "{{green}}",
|
||||
"selection": "#5dea5a3d"
|
||||
}
|
||||
],
|
||||
"syntax": {
|
||||
"attribute": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"boolean": {
|
||||
"color": "{{green}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"comment": {
|
||||
"color": "#777159ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"comment.doc": {
|
||||
"color": "#777159ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"constant": {
|
||||
"color": "{{green}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"constructor": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"embedded": {
|
||||
"color": "{{white}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"emphasis": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"emphasis.strong": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": 700
|
||||
},
|
||||
"enum": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"function": {
|
||||
"color": "#f1fe28ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"hint": {
|
||||
"color": "#246e61ff",
|
||||
"font_style": null,
|
||||
"font_weight": 700
|
||||
},
|
||||
"keyword": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"label": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"link_text": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": "italic",
|
||||
"font_weight": null
|
||||
},
|
||||
"link_uri": {
|
||||
"color": "{{green}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"number": {
|
||||
"color": "{{green}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"operator": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"predictive": {
|
||||
"color": "#78434aff",
|
||||
"font_style": "italic",
|
||||
"font_weight": null
|
||||
},
|
||||
"preproc": {
|
||||
"color": "{{white}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"primary": {
|
||||
"color": "{{white}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"property": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation": {
|
||||
"color": "#bfbb9bff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.bracket": {
|
||||
"color": "#bfbb9bff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.delimiter": {
|
||||
"color": "#bfbb9bff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.list_marker": {
|
||||
"color": "#bfbb9bff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"punctuation.special": {
|
||||
"color": "#bfbb9bff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.escape": {
|
||||
"color": "#777159ff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.regex": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.special": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"string.special.symbol": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"tag": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"text.literal": {
|
||||
"color": "#faa11cff",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"title": {
|
||||
"color": "{{white}}",
|
||||
"font_style": null,
|
||||
"font_weight": 700
|
||||
},
|
||||
"type": {
|
||||
"color": "{{cyan}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"variable": {
|
||||
"color": "{{white}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
},
|
||||
"variant": {
|
||||
"color": "{{blue}}",
|
||||
"font_style": null,
|
||||
"font_weight": null
|
||||
}
|
||||
}
|
||||
{{/style}}
|
||||
}
|
||||
}
|
||||
{{/themes}}
|
||||
]
|
||||
}
|
1122
themes/adwaita.json
1122
themes/adwaita.json
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user