diff --git a/build.ts b/build.ts index 04bf083..ac2c6cc 100644 --- a/build.ts +++ b/build.ts @@ -11,6 +11,7 @@ import { toWindowsTerminalTheme } from "./exporters/windowsTerminal.ts"; import { toCss } from "./exporters/css.ts"; import { toVscodeTheme } from "./exporters/vscode.ts"; import { toHelixTheme } from "./exporters/helix.ts"; +import { toGtkTheme } from "./exporters/gtk.ts"; const { "vsce-path": vscePath } = parseArgs( Deno.args, @@ -65,6 +66,9 @@ const buildSingleThemes = async (theme: Theme, type: string) => { const helix = await toHelixTheme(theme); await Deno.writeTextFile(`build/${type}/helix.toml`, helix); + const gtk = await toGtkTheme(theme); + await Deno.writeTextFile(`build/${type}/gtk.css`, gtk); + const css = toCss(theme); await Deno.writeTextFile(`build/${type}/kleur.css`, css); diff --git a/build/Dark/gtk.css b/build/Dark/gtk.css new file mode 100644 index 0000000..75f5ab2 --- /dev/null +++ b/build/Dark/gtk.css @@ -0,0 +1,89 @@ +/** for gtk 3 and 4 **/ +@define-color accent_color #9287e4; +@define-color accent_bg_color #1d1a36; +@define-color accent_fg_color #9287e4; +@define-color destructive_color #fa5f54; +@define-color destructive_bg_color #430203; +@define-color destructive_fg_color #fa5f54; +@define-color success_color #00a94f; +@define-color success_bg_color #00240a; +@define-color success_fg_color #00a94f; +@define-color warning_color #ca8400; +@define-color warning_bg_color #2d1900; +@define-color warning_fg_color #ca8400; +@define-color error_color #fa5f54; +@define-color error_bg_color #430203; +@define-color error_fg_color #fa5f54; +@define-color window_bg_color #060613; +@define-color window_fg_color #c6c6cb; +@define-color view_bg_color #060613; +@define-color view_fg_color #e0e0e3; +@define-color headerbar_bg_color #0b0c19; +@define-color headerbar_fg_color #c6c6cb; +@define-color headerbar_border_color rgba(11, 12, 25, 0.7); +@define-color headerbar_backdrop_color @window_bg_color; +@define-color headerbar_shade_color rgba(0, 0, 0, 0.07); +@define-color headerbar_darker_shade_color rgba(0, 0, 0, 0.07); +@define-color sidebar_bg_color #0b0c19; +@define-color sidebar_fg_color #c6c6cb; +@define-color sidebar_backdrop_color @window_bg_color; +@define-color sidebar_shade_color rgba(0, 0, 0, 0.07); +@define-color secondary_sidebar_bg_color @sidebar_bg_color; +@define-color secondary_sidebar_fg_color @sidebar_fg_color; +@define-color secondary_sidebar_backdrop_color @sidebar_backdrop_color; +@define-color secondary_sidebar_shade_color @sidebar_shade_color; +@define-color card_bg_color #0b0c19; +@define-color card_fg_color #c6c6cb; +@define-color card_shade_color rgba(0, 0, 0, 0.07); +@define-color dialog_bg_color #0b0c19; +@define-color dialog_fg_color #c6c6cb; +@define-color popover_bg_color #0b0c19; +@define-color popover_fg_color #c6c6cb; +@define-color popover_shade_color rgba(0, 0, 0, 0.07); +@define-color shade_color rgba(0, 0, 0, 0.07); +@define-color scrollbar_outline_color #1b1b2a; +@define-color blue_1 #004f71; +@define-color blue_2 #006892; +@define-color blue_3 #0081b2; +@define-color blue_4 #009dd7; +@define-color blue_5 #00b8f7; +@define-color green_1 #005622; +@define-color green_2 #00702f; +@define-color green_3 #008b3d; +@define-color green_4 #00a94f; +@define-color green_5 #00c662; +@define-color yellow_1 #; +@define-color yellow_2 #; +@define-color yellow_3 #; +@define-color yellow_4 #; +@define-color yellow_5 #; +@define-color orange_1 #6a4100; +@define-color orange_2 #895600; +@define-color orange_3 #a86b00; +@define-color orange_4 #ca8400; +@define-color orange_5 #e99c00; +@define-color red_1 #941415; +@define-color red_2 #ba2523; +@define-color red_3 #dd3c36; +@define-color red_4 #fa5f54; +@define-color red_5 #ff8b7e; +@define-color purple_1 #4a427a; +@define-color purple_2 #61589d; +@define-color purple_3 #61589d; +@define-color purple_4 #786ebf; +@define-color purple_5 #9287e4; +@define-color brown_1 #ca8400; +@define-color brown_2 #ca8400; +@define-color brown_3 #ca8400; +@define-color brown_4 #ca8400; +@define-color brown_5 #ca8400; +@define-color light_1 #1b1b2a; +@define-color light_2 #1b1b2a; +@define-color light_3 #1b1b2a; +@define-color light_4 #1b1b2a; +@define-color light_5 #1b1b2a; +@define-color dark_1 #0b0c19; +@define-color dark_2 #0b0c19; +@define-color dark_3 #0b0c19; +@define-color dark_4 #0b0c19; +@define-color dark_5 #0b0c19; diff --git a/build/Dark/helix.toml b/build/Dark/helix.toml index dabc13a..5bb5b51 100644 --- a/build/Dark/helix.toml +++ b/build/Dark/helix.toml @@ -80,29 +80,29 @@ [palette] base00 = "#060613" # Default Background -base01 = "#090917" # Lighter Background (Used for status bars, line number and folding marks) -base02 = "#141423" # Selection Background -base03 = "#595a67" # Comments, Invisibles, Line Highlighting -base04 = "#595a67" # Dark Foreground (Used for status bars) -base05 = "#72737e" # Default Foreground, Caret, Delimiters, Operators -base06 = "#8b8c96" # Light Foreground (Not often used) -base07 = "#a6a6ae" # Light Background (Not often used) -base08 = "#f5564d" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted -base09 = "#c27e00" # Integers, Boolean, Constants, XML Attributes, Markup Link Url -base0A = "#c27e00" # Classes, Markup Bold, Search Text Background -base0B = "#00a24b" # Strings, Inherited Class, Markup Code, Diff Inserted -base0C = "#009d96" # Support, Regular Expressions, Escape Characters, Markup Quotes -base0D = "#0097ce" # Functions, Methods, Attribute IDs, Headings -base0E = "#8c81dc" # Keywords, Storage, Selector, Markup Italic, Diff Changed -base0F = "#c27e00" # Deprecated, Opening/Closing Embedded Language Tags, e.g. +base01 = "#0b0c19" # Lighter Background (Used for status bars, line number and folding marks) +base02 = "#1b1b2a" # Selection Background +base03 = "#5f606d" # Comments, Invisibles, Line Highlighting +base04 = "#767882" # Dark Foreground (Used for status bars) +base05 = "#92929b" # Default Foreground, Caret, Delimiters, Operators +base06 = "#ababb3" # Light Foreground (Not often used) +base07 = "#c6c6cb" # Light Background (Not often used) +base08 = "#fa5f54" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted +base09 = "#ca8400" # Integers, Boolean, Constants, XML Attributes, Markup Link Url +base0A = "#ca8400" # Classes, Markup Bold, Search Text Background +base0B = "#00a94f" # Strings, Inherited Class, Markup Code, Diff Inserted +base0C = "#00a49c" # Support, Regular Expressions, Escape Characters, Markup Quotes +base0D = "#009dd7" # Functions, Methods, Attribute IDs, Headings +base0E = "#9287e4" # Keywords, Storage, Selector, Markup Italic, Diff Changed +base0F = "#ca8400" # Deprecated, Opening/Closing Embedded Language Tags, e.g. background = "#060613" -surface = "#090917" -overlay = "#141423" -red = "#f5564d" -orange = "#c27e00" -green = "#00a24b" -blue = "#0097ce" -teal = "#009d96" -purple = "#8c81dc" -primary = "#8c81dc" -secondary = "#0097ce" +surface = "#0b0c19" +overlay = "#1b1b2a" +red = "#fa5f54" +orange = "#ca8400" +green = "#00a94f" +blue = "#009dd7" +teal = "#00a49c" +purple = "#9287e4" +primary = "#9287e4" +secondary = "#009dd7" diff --git a/build/Dark/kleur-hex.json b/build/Dark/kleur-hex.json index 57f8223..a9fbeee 100644 --- a/build/Dark/kleur-hex.json +++ b/build/Dark/kleur-hex.json @@ -1,95 +1,95 @@ { "background": "#060613", - "surface": "#090917", - "overlay": "#141423", + "surface": "#0b0c19", + "overlay": "#1b1b2a", "base": { - "100": "#2b2c3a", - "200": "#424351", - "300": "#595a67", - "400": "#72737e", - "500": "#8b8c96", - "600": "#a6a6ae", - "700": "#c2c2c8", - "800": "#dddde0" + "100": "#1b1c2b", + "200": "#484957", + "300": "#5f606d", + "400": "#767882", + "500": "#92929b", + "600": "#ababb3", + "700": "#c6c6cb", + "800": "#e0e0e3" }, "blue": { - "100": "#003046", - "200": "#004968", - "300": "#006189", - "400": "#007bab", - "500": "#0097ce", - "600": "#00b3f1", - "700": "#3dd1ff", - "800": "#8eebff" + "100": "#002031", + "200": "#004f71", + "300": "#006892", + "400": "#0081b2", + "500": "#009dd7", + "600": "#00b8f7", + "700": "#4bd6ff", + "800": "#97edff" }, "green": { - "100": "#003512", - "200": "#004f1e", - "300": "#00692b", - "400": "#00853a", - "500": "#00a24b", - "600": "#00c05e", - "700": "#29de78", - "800": "#74f79e" + "100": "#00240a", + "200": "#005622", + "300": "#00702f", + "400": "#008b3d", + "500": "#00a94f", + "600": "#00c662", + "700": "#34e27c", + "800": "#7df9a4" }, "orange": { - "100": "#422600", - "200": "#623b00", - "300": "#815000", - "400": "#a16700", - "500": "#c27e00", - "600": "#e39700", - "700": "#ffb432", - "800": "#ffd88b" + "100": "#2d1900", + "200": "#6a4100", + "300": "#895600", + "400": "#a86b00", + "500": "#ca8400", + "600": "#e99c00", + "700": "#ffba40", + "800": "#ffdc95" }, "purple": { - "100": "#2d284e", - "200": "#443d71", - "300": "#5b5294", - "400": "#7369b8", - "500": "#8c81dc", - "600": "#a69bfd", - "700": "#c3baff", - "800": "#ded9ff" + "100": "#1d1a36", + "200": "#4a427a", + "300": "#61589d", + "400": "#786ebf", + "500": "#9287e4", + "600": "#aba0ff", + "700": "#c8bfff", + "800": "#e0ddff" }, "red": { - "100": "#600507", - "200": "#8a1012", - "300": "#b0201f", - "400": "#d63732", - "500": "#f5564d", - "600": "#ff8276", - "700": "#ffaea2", - "800": "#ffd4cc" + "100": "#430203", + "200": "#941415", + "300": "#ba2523", + "400": "#dd3c36", + "500": "#fa5f54", + "600": "#ff8b7e", + "700": "#ffb4a9", + "800": "#ffd7d1" }, "teal": { - "100": "#003330", - "200": "#004d49", - "300": "#006661", - "400": "#00817b", - "500": "#009d96", - "600": "#00bab1", - "700": "#00d9cf", - "800": "#60f3ea" + "100": "#002320", + "200": "#00534f", + "300": "#006d67", + "400": "#008780", + "500": "#00a49c", + "600": "#00c0b7", + "700": "#14ddd3", + "800": "#68f5ec" }, "primary": { - "100": "#2d284e", - "200": "#443d71", - "300": "#5b5294", - "400": "#7369b8", - "500": "#8c81dc", - "600": "#a69bfd", - "700": "#c3baff", - "800": "#ded9ff" + "100": "#1d1a36", + "200": "#4a427a", + "300": "#61589d", + "400": "#786ebf", + "500": "#9287e4", + "600": "#aba0ff", + "700": "#c8bfff", + "800": "#e0ddff" }, "secondary": { - "100": "#003046", - "200": "#004968", - "300": "#006189", - "400": "#007bab", - "500": "#0097ce", - "600": "#00b3f1", - "700": "#3dd1ff", - "800": "#8eebff" + "100": "#002031", + "200": "#004f71", + "300": "#006892", + "400": "#0081b2", + "500": "#009dd7", + "600": "#00b8f7", + "700": "#4bd6ff", + "800": "#97edff" } } \ No newline at end of file diff --git a/build/Dark/kleur-lch.json b/build/Dark/kleur-lch.json index f9ba7c5..7849951 100644 --- a/build/Dark/kleur-lch.json +++ b/build/Dark/kleur-lch.json @@ -1,95 +1,95 @@ { "background": "lch(2.0000001494048547, 5.9999998374788435, 289.9999986317611)", - "surface": "lch(2.9427145138546074, 7.4772299602207735, 289.6028904359055)", - "overlay": "lch(7.056756222987836, 10.7953831035454, 291.9210760549568)", + "surface": "lch(3.5824258047348856, 8.376610176947818, 289.4163914167586)", + "overlay": "lch(10.504968412699341, 10.908578768893943, 291.777325854454)", "base": { - "100": "lch(18%, 10, 290deg)", - "200": "lch(29%, 9, 289deg)", - "300": "lch(39%, 8, 289deg)", - "400": "lch(49%, 6, 288deg)", - "500": "lch(58%, 6, 287deg)", - "600": "lch(68%, 4, 291deg)", - "700": "lch(79%, 3, 290deg)", - "800": "lch(88%, 2, 290deg)" + "100": "lch(11%, 11, 291deg)", + "200": "lch(31%, 9, 289deg)", + "300": "lch(41%, 8, 288deg)", + "400": "lch(51%, 6, 283deg)", + "500": "lch(61%, 5, 291deg)", + "600": "lch(70%, 4, 291deg)", + "700": "lch(80%, 3, 290deg)", + "800": "lch(89%, 2, 290deg)" }, "blue": { - "100": "lch(18%, 19, 253deg)", - "200": "lch(29%, 25, 253deg)", - "300": "lch(38%, 30, 253deg)", - "400": "lch(48%, 35, 252deg)", - "500": "lch(59%, 40, 250deg)", - "600": "lch(68%, 44, 249deg)", - "700": "lch(78%, 41, 235deg)", - "800": "lch(88%, 29, 219deg)" + "100": "lch(11%, 15, 254deg)", + "200": "lch(31%, 26, 254deg)", + "300": "lch(41%, 31, 253deg)", + "400": "lch(51%, 36, 251deg)", + "500": "lch(61%, 41, 251deg)", + "600": "lch(70%, 45, 248deg)", + "700": "lch(80%, 39, 232deg)", + "800": "lch(89%, 27, 218deg)" }, "green": { - "100": "lch(18%, 31, 146deg)", - "200": "lch(29%, 41, 146deg)", - "300": "lch(38%, 49, 146deg)", - "400": "lch(48%, 58, 147deg)", - "500": "lch(58%, 65, 148deg)", - "600": "lch(68%, 73, 149deg)", - "700": "lch(79%, 76, 150deg)", - "800": "lch(88%, 64, 150deg)" + "100": "lch(11%, 23, 149deg)", + "200": "lch(31%, 43, 146deg)", + "300": "lch(41%, 51, 147deg)", + "400": "lch(50%, 60, 147deg)", + "500": "lch(61%, 67, 148deg)", + "600": "lch(70%, 74, 149deg)", + "700": "lch(80%, 75, 150deg)", + "800": "lch(89%, 61, 150deg)" }, "orange": { - "100": "lch(18%, 28, 69deg)", - "200": "lch(29%, 41, 72deg)", - "300": "lch(39%, 50, 72deg)", - "400": "lch(49%, 58, 73deg)", - "500": "lch(58%, 67, 74deg)", - "600": "lch(68%, 76, 75deg)", - "700": "lch(79%, 74, 77deg)", - "800": "lch(88%, 43, 85deg)" + "100": "lch(11%, 18, 66deg)", + "200": "lch(31%, 43, 72deg)", + "300": "lch(41%, 52, 73deg)", + "400": "lch(51%, 60, 73deg)", + "500": "lch(61%, 69, 74deg)", + "600": "lch(70%, 77, 75deg)", + "700": "lch(80%, 69, 78deg)", + "800": "lch(89%, 39, 86deg)" }, "purple": { - "100": "lch(18%, 26, 300deg)", - "200": "lch(29%, 34, 300deg)", - "300": "lch(39%, 41, 300deg)", - "400": "lch(49%, 47, 300deg)", - "500": "lch(58%, 52, 299deg)", - "600": "lch(68%, 54, 299deg)", - "700": "lch(78%, 37, 298deg)", - "800": "lch(88%, 20, 297deg)" + "100": "lch(11%, 21, 299deg)", + "200": "lch(31%, 36, 300deg)", + "300": "lch(41%, 42, 300deg)", + "400": "lch(51%, 47, 300deg)", + "500": "lch(61%, 53, 299deg)", + "600": "lch(70%, 52, 299deg)", + "700": "lch(80%, 34, 298deg)", + "800": "lch(89%, 18, 295deg)" }, "red": { - "100": "lch(18%, 46, 34deg)", - "200": "lch(29%, 59, 35deg)", - "300": "lch(38%, 68, 35deg)", - "400": "lch(49%, 73, 34deg)", - "500": "lch(59%, 72, 33deg)", - "600": "lch(68%, 54, 32deg)", - "700": "lch(79%, 34, 33deg)", - "800": "lch(88%, 17, 35deg)" + "100": "lch(11%, 34, 28deg)", + "200": "lch(31%, 62, 35deg)", + "300": "lch(41%, 70, 35deg)", + "400": "lch(51%, 74, 34deg)", + "500": "lch(61%, 70, 33deg)", + "600": "lch(70%, 50, 32deg)", + "700": "lch(80%, 31, 33deg)", + "800": "lch(89%, 15, 32deg)" }, "teal": { - "100": "lch(18%, 17, 189deg)", - "200": "lch(29%, 22, 189deg)", - "300": "lch(38%, 27, 190deg)", - "400": "lch(48%, 31, 190deg)", - "500": "lch(58%, 36, 190deg)", - "600": "lch(68%, 41, 189deg)", - "700": "lch(79%, 46, 189deg)", - "800": "lch(88%, 42, 190deg)" + "100": "lch(11%, 14, 187deg)", + "200": "lch(31%, 23, 190deg)", + "300": "lch(41%, 28, 189deg)", + "400": "lch(51%, 33, 189deg)", + "500": "lch(61%, 37, 189deg)", + "600": "lch(70%, 42, 189deg)", + "700": "lch(80%, 46, 190deg)", + "800": "lch(89%, 41, 190deg)" }, "primary": { - "100": "lch(18%, 26, 300deg)", - "200": "lch(29%, 34, 300deg)", - "300": "lch(39%, 41, 300deg)", - "400": "lch(49%, 47, 300deg)", - "500": "lch(58%, 52, 299deg)", - "600": "lch(68%, 54, 299deg)", - "700": "lch(78%, 37, 298deg)", - "800": "lch(88%, 20, 297deg)" + "100": "lch(11%, 21, 299deg)", + "200": "lch(31%, 36, 300deg)", + "300": "lch(41%, 42, 300deg)", + "400": "lch(51%, 47, 300deg)", + "500": "lch(61%, 53, 299deg)", + "600": "lch(70%, 52, 299deg)", + "700": "lch(80%, 34, 298deg)", + "800": "lch(89%, 18, 295deg)" }, "secondary": { - "100": "lch(18%, 19, 253deg)", - "200": "lch(29%, 25, 253deg)", - "300": "lch(38%, 30, 253deg)", - "400": "lch(48%, 35, 252deg)", - "500": "lch(59%, 40, 250deg)", - "600": "lch(68%, 44, 249deg)", - "700": "lch(78%, 41, 235deg)", - "800": "lch(88%, 29, 219deg)" + "100": "lch(11%, 15, 254deg)", + "200": "lch(31%, 26, 254deg)", + "300": "lch(41%, 31, 253deg)", + "400": "lch(51%, 36, 251deg)", + "500": "lch(61%, 41, 251deg)", + "600": "lch(70%, 45, 248deg)", + "700": "lch(80%, 39, 232deg)", + "800": "lch(89%, 27, 218deg)" } } \ No newline at end of file diff --git a/build/Dark/kleur.css b/build/Dark/kleur.css index d3a79f0..0eb1c71 100644 --- a/build/Dark/kleur.css +++ b/build/Dark/kleur.css @@ -1,78 +1,78 @@ :root { --background: lch(2.0000001494048547, 5.9999998374788435, 289.9999986317611); ---surface: lch(2.9427145138546074, 7.4772299602207735, 289.6028904359055); ---overlay: lch(7.056756222987836, 10.7953831035454, 291.9210760549568); +--surface: lch(3.5824258047348856, 8.376610176947818, 289.4163914167586); +--overlay: lch(10.504968412699341, 10.908578768893943, 291.777325854454); --background: lch(2%, 6, 290); ---base100: lch(18%, 10, 290); ---base200: lch(29%, 9, 289); ---base300: lch(39%, 8, 289); ---base400: lch(49%, 6, 288); ---base500: lch(58%, 6, 287); ---base600: lch(68%, 4, 291); ---base700: lch(79%, 3, 290); ---base800: lch(88%, 2, 290); ---blue100: lch(18%, 19, 253); ---blue200: lch(29%, 25, 253); ---blue300: lch(38%, 30, 253); ---blue400: lch(48%, 35, 252); ---blue500: lch(59%, 40, 250); ---blue600: lch(68%, 44, 249); ---blue700: lch(78%, 41, 235); ---blue800: lch(88%, 29, 219); ---green100: lch(18%, 31, 146); ---green200: lch(29%, 41, 146); ---green300: lch(38%, 49, 146); ---green400: lch(48%, 58, 147); ---green500: lch(58%, 65, 148); ---green600: lch(68%, 73, 149); ---green700: lch(79%, 76, 150); ---green800: lch(88%, 64, 150); ---orange100: lch(18%, 28, 69); ---orange200: lch(29%, 41, 72); ---orange300: lch(39%, 50, 72); ---orange400: lch(49%, 58, 73); ---orange500: lch(58%, 67, 74); ---orange600: lch(68%, 76, 75); ---orange700: lch(79%, 74, 77); ---orange800: lch(88%, 43, 85); ---purple100: lch(18%, 26, 300); ---purple200: lch(29%, 34, 300); ---purple300: lch(39%, 41, 300); ---purple400: lch(49%, 47, 300); ---purple500: lch(58%, 52, 299); ---purple600: lch(68%, 54, 299); ---purple700: lch(78%, 37, 298); ---purple800: lch(88%, 20, 297); ---red100: lch(18%, 46, 34); ---red200: lch(29%, 59, 35); ---red300: lch(38%, 68, 35); ---red400: lch(49%, 73, 34); ---red500: lch(59%, 72, 33); ---red600: lch(68%, 54, 32); ---red700: lch(79%, 34, 33); ---red800: lch(88%, 17, 35); ---teal100: lch(18%, 17, 189); ---teal200: lch(29%, 22, 189); ---teal300: lch(38%, 27, 190); ---teal400: lch(48%, 31, 190); ---teal500: lch(58%, 36, 190); ---teal600: lch(68%, 41, 189); ---teal700: lch(79%, 46, 189); ---teal800: lch(88%, 42, 190); ---primary100: lch(18%, 26, 300); ---primary200: lch(29%, 34, 300); ---primary300: lch(39%, 41, 300); ---primary400: lch(49%, 47, 300); ---primary500: lch(58%, 52, 299); ---primary600: lch(68%, 54, 299); ---primary700: lch(78%, 37, 298); ---primary800: lch(88%, 20, 297); ---secondary100: lch(18%, 19, 253); ---secondary200: lch(29%, 25, 253); ---secondary300: lch(38%, 30, 253); ---secondary400: lch(48%, 35, 252); ---secondary500: lch(59%, 40, 250); ---secondary600: lch(68%, 44, 249); ---secondary700: lch(78%, 41, 235); ---secondary800: lch(88%, 29, 219); +--base100: lch(11%, 11, 291); +--base200: lch(31%, 9, 289); +--base300: lch(41%, 8, 288); +--base400: lch(51%, 6, 283); +--base500: lch(61%, 5, 291); +--base600: lch(70%, 4, 291); +--base700: lch(80%, 3, 290); +--base800: lch(89%, 2, 290); +--blue100: lch(11%, 15, 254); +--blue200: lch(31%, 26, 254); +--blue300: lch(41%, 31, 253); +--blue400: lch(51%, 36, 251); +--blue500: lch(61%, 41, 251); +--blue600: lch(70%, 45, 248); +--blue700: lch(80%, 39, 232); +--blue800: lch(89%, 27, 218); +--green100: lch(11%, 23, 149); +--green200: lch(31%, 43, 146); +--green300: lch(41%, 51, 147); +--green400: lch(50%, 60, 147); +--green500: lch(61%, 67, 148); +--green600: lch(70%, 74, 149); +--green700: lch(80%, 75, 150); +--green800: lch(89%, 61, 150); +--orange100: lch(11%, 18, 66); +--orange200: lch(31%, 43, 72); +--orange300: lch(41%, 52, 73); +--orange400: lch(51%, 60, 73); +--orange500: lch(61%, 69, 74); +--orange600: lch(70%, 77, 75); +--orange700: lch(80%, 69, 78); +--orange800: lch(89%, 39, 86); +--purple100: lch(11%, 21, 299); +--purple200: lch(31%, 36, 300); +--purple300: lch(41%, 42, 300); +--purple400: lch(51%, 47, 300); +--purple500: lch(61%, 53, 299); +--purple600: lch(70%, 52, 299); +--purple700: lch(80%, 34, 298); +--purple800: lch(89%, 18, 295); +--red100: lch(11%, 34, 28); +--red200: lch(31%, 62, 35); +--red300: lch(41%, 70, 35); +--red400: lch(51%, 74, 34); +--red500: lch(61%, 70, 33); +--red600: lch(70%, 50, 32); +--red700: lch(80%, 31, 33); +--red800: lch(89%, 15, 32); +--teal100: lch(11%, 14, 187); +--teal200: lch(31%, 23, 190); +--teal300: lch(41%, 28, 189); +--teal400: lch(51%, 33, 189); +--teal500: lch(61%, 37, 189); +--teal600: lch(70%, 42, 189); +--teal700: lch(80%, 46, 190); +--teal800: lch(89%, 41, 190); +--primary100: lch(11%, 21, 299); +--primary200: lch(31%, 36, 300); +--primary300: lch(41%, 42, 300); +--primary400: lch(51%, 47, 300); +--primary500: lch(61%, 53, 299); +--primary600: lch(70%, 52, 299); +--primary700: lch(80%, 34, 298); +--primary800: lch(89%, 18, 295); +--secondary100: lch(11%, 15, 254); +--secondary200: lch(31%, 26, 254); +--secondary300: lch(41%, 31, 253); +--secondary400: lch(51%, 36, 251); +--secondary500: lch(61%, 41, 251); +--secondary600: lch(70%, 45, 248); +--secondary700: lch(80%, 39, 232); +--secondary800: lch(89%, 27, 218); } \ No newline at end of file diff --git a/build/Dark/kleur.json b/build/Dark/kleur.json index 8cfa91d..e913ad6 100644 --- a/build/Dark/kleur.json +++ b/build/Dark/kleur.json @@ -1,27 +1,27 @@ { "scheme": "Kleur Dark", "base00": "#060613", - "base01": "#090917", - "base02": "#141423", - "base03": "#595a67", - "base04": "#595a67", - "base05": "#72737e", - "base06": "#8b8c96", - "base07": "#a6a6ae", - "base08": "#f5564d", - "base09": "#c27e00", - "base0A": "#c27e00", - "base0B": "#00a24b", - "base0C": "#009d96", - "base0D": "#0097ce", - "base0E": "#8c81dc", - "base0F": "#c27e00", - "base10": "#090917", + "base01": "#0b0c19", + "base02": "#1b1b2a", + "base03": "#5f606d", + "base04": "#767882", + "base05": "#92929b", + "base06": "#ababb3", + "base07": "#c6c6cb", + "base08": "#fa5f54", + "base09": "#ca8400", + "base0A": "#ca8400", + "base0B": "#00a94f", + "base0C": "#00a49c", + "base0D": "#009dd7", + "base0E": "#9287e4", + "base0F": "#ca8400", + "base10": "#0b0c19", "base11": "#060613", - "base12": "#ffaea2", - "base13": "#ffb432", - "base14": "#29de78", - "base15": "#00d9cf", - "base16": "#3dd1ff", - "base17": "#c3baff" + "base12": "#ffb4a9", + "base13": "#ffba40", + "base14": "#34e27c", + "base15": "#14ddd3", + "base16": "#4bd6ff", + "base17": "#c8bfff" } \ No newline at end of file diff --git a/build/Dark/kleur.yaml b/build/Dark/kleur.yaml index 21013a3..58234fe 100644 --- a/build/Dark/kleur.yaml +++ b/build/Dark/kleur.yaml @@ -1,25 +1,25 @@ scheme: Kleur Dark base00: "#060613" -base01: "#090917" -base02: "#141423" -base03: "#595a67" -base04: "#595a67" -base05: "#72737e" -base06: "#8b8c96" -base07: "#a6a6ae" -base08: "#f5564d" -base09: "#c27e00" -base0A: "#c27e00" -base0B: "#00a24b" -base0C: "#009d96" -base0D: "#0097ce" -base0E: "#8c81dc" -base0F: "#c27e00" -base10: "#090917" +base01: "#0b0c19" +base02: "#1b1b2a" +base03: "#5f606d" +base04: "#767882" +base05: "#92929b" +base06: "#ababb3" +base07: "#c6c6cb" +base08: "#fa5f54" +base09: "#ca8400" +base0A: "#ca8400" +base0B: "#00a94f" +base0C: "#00a49c" +base0D: "#009dd7" +base0E: "#9287e4" +base0F: "#ca8400" +base10: "#0b0c19" base11: "#060613" -base12: "#ffaea2" -base13: "#ffb432" -base14: "#29de78" -base15: "#00d9cf" -base16: "#3dd1ff" -base17: "#c3baff" +base12: "#ffb4a9" +base13: "#ffba40" +base14: "#34e27c" +base15: "#14ddd3" +base16: "#4bd6ff" +base17: "#c8bfff" diff --git a/build/Dark/windows-terminal.json b/build/Dark/windows-terminal.json index 297f843..7cd6294 100644 --- a/build/Dark/windows-terminal.json +++ b/build/Dark/windows-terminal.json @@ -1,23 +1,23 @@ { "name": "Kleur Dark", - "foreground": "#72737e", + "foreground": "#92929b", "background": "#060613", - "cursorColor": "#72737e", - "selectionBackground": "#141423", + "cursorColor": "#92929b", + "selectionBackground": "#1b1b2a", "black": "#060613", - "red": "#f5564d", - "green": "#00a24b", - "yellow": "#c27e00", - "blue": "#0097ce", - "purple": "#8c81dc", - "cyan": "#009d96", - "white": "#72737e", - "brightBlack": "#595a67", - "brightRed": "#ffaea2", - "brightGreen": "#29de78", - "brightYellow": "#ffb432", - "brightBlue": "#3dd1ff", - "brightPurple": "#c3baff", - "brightCyan": "#00d9cf", - "brightWhite": "#a6a6ae" + "red": "#fa5f54", + "green": "#00a94f", + "yellow": "#ca8400", + "blue": "#009dd7", + "purple": "#9287e4", + "cyan": "#00a49c", + "white": "#92929b", + "brightBlack": "#5f606d", + "brightRed": "#ffb4a9", + "brightGreen": "#34e27c", + "brightYellow": "#ffba40", + "brightBlue": "#4bd6ff", + "brightPurple": "#c8bfff", + "brightCyan": "#14ddd3", + "brightWhite": "#c6c6cb" } diff --git a/build/Light/gtk.css b/build/Light/gtk.css new file mode 100644 index 0000000..19c02f9 --- /dev/null +++ b/build/Light/gtk.css @@ -0,0 +1,89 @@ +/** for gtk 3 and 4 **/ +@define-color accent_color #006088; +@define-color accent_bg_color #72e4ff; +@define-color accent_fg_color #006088; +@define-color destructive_color #af201f; +@define-color destructive_bg_color #ffc7be; +@define-color destructive_fg_color #af201f; +@define-color success_color #00692b; +@define-color success_bg_color #5cf090; +@define-color success_fg_color #00692b; +@define-color warning_color #804f00; +@define-color warning_bg_color #ffcd6d; +@define-color warning_fg_color #804f00; +@define-color error_color #af201f; +@define-color error_bg_color #ffc7be; +@define-color error_fg_color #af201f; +@define-color window_bg_color #eff0f8; +@define-color window_fg_color #121317; +@define-color view_bg_color #eff0f8; +@define-color view_fg_color #000000; +@define-color headerbar_bg_color #ebecf4; +@define-color headerbar_fg_color #121317; +@define-color headerbar_border_color rgba(235, 236, 244, 0.7); +@define-color headerbar_backdrop_color @window_bg_color; +@define-color headerbar_shade_color rgba(0, 0, 0, 0.07); +@define-color headerbar_darker_shade_color rgba(0, 0, 0, 0.07); +@define-color sidebar_bg_color #ebecf4; +@define-color sidebar_fg_color #121317; +@define-color sidebar_backdrop_color @window_bg_color; +@define-color sidebar_shade_color rgba(0, 0, 0, 0.07); +@define-color secondary_sidebar_bg_color @sidebar_bg_color; +@define-color secondary_sidebar_fg_color @sidebar_fg_color; +@define-color secondary_sidebar_backdrop_color @sidebar_backdrop_color; +@define-color secondary_sidebar_shade_color @sidebar_shade_color; +@define-color card_bg_color #ebecf4; +@define-color card_fg_color #121317; +@define-color card_shade_color rgba(0, 0, 0, 0.07); +@define-color dialog_bg_color #ebecf4; +@define-color dialog_fg_color #121317; +@define-color popover_bg_color #ebecf4; +@define-color popover_fg_color #121317; +@define-color popover_shade_color rgba(0, 0, 0, 0.07); +@define-color shade_color rgba(0, 0, 0, 0.07); +@define-color scrollbar_outline_color #e7e8f0; +@define-color blue_1 #009bd3; +@define-color blue_2 #007bab; +@define-color blue_3 #006088; +@define-color blue_4 #004765; +@define-color blue_5 #003047; +@define-color green_1 #00a74e; +@define-color green_2 #00853a; +@define-color green_3 #00692b; +@define-color green_4 #004d1d; +@define-color green_5 #003512; +@define-color yellow_1 #; +@define-color yellow_2 #; +@define-color yellow_3 #; +@define-color yellow_4 #; +@define-color yellow_5 #; +@define-color orange_1 #c78200; +@define-color orange_2 #a16600; +@define-color orange_3 #804f00; +@define-color orange_4 #5f3900; +@define-color orange_5 #422700; +@define-color red_1 #f85b51; +@define-color red_2 #d63631; +@define-color red_3 #af201f; +@define-color red_4 #860f11; +@define-color red_5 #600507; +@define-color purple_1 #9085e1; +@define-color purple_2 #7269b7; +@define-color purple_3 #7269b7; +@define-color purple_4 #5a5292; +@define-color purple_5 #423b6e; +@define-color brown_1 #804f00; +@define-color brown_2 #804f00; +@define-color brown_3 #804f00; +@define-color brown_4 #804f00; +@define-color brown_5 #804f00; +@define-color light_1 #e7e8f0; +@define-color light_2 #e7e8f0; +@define-color light_3 #e7e8f0; +@define-color light_4 #e7e8f0; +@define-color light_5 #e7e8f0; +@define-color dark_1 #ebecf4; +@define-color dark_2 #ebecf4; +@define-color dark_3 #ebecf4; +@define-color dark_4 #ebecf4; +@define-color dark_5 #ebecf4; diff --git a/build/Light/helix.toml b/build/Light/helix.toml index c169eda..384033d 100644 --- a/build/Light/helix.toml +++ b/build/Light/helix.toml @@ -80,29 +80,29 @@ [palette] base00 = "#eff0f8" # Default Background -base01 = "#edeef5" # Lighter Background (Used for status bars, line number and folding marks) -base02 = "#eaebf3" # Selection Background -base03 = "#666675" # Comments, Invisibles, Line Highlighting -base04 = "#666675" # Dark Foreground (Used for status bars) -base05 = "#4a4b56" # Default Foreground, Caret, Delimiters, Operators -base06 = "#31323a" # Light Foreground (Not often used) -base07 = "#16161a" # Light Background (Not often used) -base08 = "#c42b28" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted -base09 = "#915c00" # Integers, Boolean, Constants, XML Attributes, Markup Link Url -base0A = "#915c00" # Classes, Markup Bold, Search Text Background -base0B = "#007833" # Strings, Inherited Class, Markup Code, Diff Inserted -base0C = "#00746e" # Support, Regular Expressions, Escape Characters, Markup Quotes -base0D = "#006f9a" # Functions, Methods, Attribute IDs, Headings -base0E = "#675ea6" # Keywords, Storage, Selector, Markup Italic, Diff Changed -base0F = "#915c00" # Deprecated, Opening/Closing Embedded Language Tags, e.g. +base01 = "#ebecf4" # Lighter Background (Used for status bars, line number and folding marks) +base02 = "#e7e8f0" # Selection Background +base03 = "#717282" # Comments, Invisibles, Line Highlighting +base04 = "#595967" # Dark Foreground (Used for status bars) +base05 = "#41414c" # Default Foreground, Caret, Delimiters, Operators +base06 = "#2c2c34" # Light Foreground (Not often used) +base07 = "#121317" # Light Background (Not often used) +base08 = "#af201f" # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted +base09 = "#804f00" # Integers, Boolean, Constants, XML Attributes, Markup Link Url +base0A = "#804f00" # Classes, Markup Bold, Search Text Background +base0B = "#00692b" # Strings, Inherited Class, Markup Code, Diff Inserted +base0C = "#006560" # Support, Regular Expressions, Escape Characters, Markup Quotes +base0D = "#006088" # Functions, Methods, Attribute IDs, Headings +base0E = "#5a5292" # Keywords, Storage, Selector, Markup Italic, Diff Changed +base0F = "#804f00" # Deprecated, Opening/Closing Embedded Language Tags, e.g. background = "#eff0f8" -surface = "#edeef5" -overlay = "#eaebf3" -red = "#c42b28" -orange = "#915c00" -green = "#007833" -blue = "#006f9a" -teal = "#00746e" -purple = "#675ea6" -primary = "#006f9a" -secondary = "#675ea6" +surface = "#ebecf4" +overlay = "#e7e8f0" +red = "#af201f" +orange = "#804f00" +green = "#00692b" +blue = "#006088" +teal = "#006560" +purple = "#5a5292" +primary = "#006088" +secondary = "#5a5292" diff --git a/build/Light/kleur-hex.json b/build/Light/kleur-hex.json index bbe9a35..674717a 100644 --- a/build/Light/kleur-hex.json +++ b/build/Light/kleur-hex.json @@ -1,95 +1,95 @@ { "background": "#eff0f8", - "surface": "#edeef5", - "overlay": "#eaebf3", + "surface": "#ebecf4", + "overlay": "#e7e8f0", "base": { - "100": "#adaec3", - "200": "#858698", - "300": "#666675", - "400": "#4a4b56", - "500": "#31323a", - "600": "#16161a", - "700": "#000000", + "100": "#d3d4e7", + "200": "#8f8fa2", + "300": "#717282", + "400": "#595967", + "500": "#41414c", + "600": "#2c2c34", + "700": "#121317", "800": "#000000" }, "blue": { - "100": "#00bcfb", - "200": "#0091c6", - "300": "#006f9a", - "400": "#005174", - "500": "#00364f", - "600": "#001826", - "700": "#000000", + "100": "#72e4ff", + "200": "#009bd3", + "300": "#007bab", + "400": "#006088", + "500": "#004765", + "600": "#003047", + "700": "#001522", "800": "#000000" }, "green": { - "100": "#00ca65", - "200": "#009c47", - "300": "#007833", - "400": "#005823", - "500": "#003b15", - "600": "#001b06", - "700": "#000000", + "100": "#5cf090", + "200": "#00a74e", + "300": "#00853a", + "400": "#00692b", + "500": "#004d1d", + "600": "#003512", + "700": "#001805", "800": "#000000" }, "orange": { - "100": "#eca000", - "200": "#bb7900", - "300": "#915c00", - "400": "#6c4200", - "500": "#4a2c00", - "600": "#231200", - "700": "#000000", + "100": "#ffcd6d", + "200": "#c78200", + "300": "#a16600", + "400": "#804f00", + "500": "#5f3900", + "600": "#422700", + "700": "#1f1000", "800": "#000000" }, "purple": { - "100": "#afa4ff", - "200": "#877cd4", - "300": "#675ea6", - "400": "#4c447d", - "500": "#322d56", - "600": "#16132b", - "700": "#000000", + "100": "#d5cfff", + "200": "#9085e1", + "300": "#7269b7", + "400": "#5a5292", + "500": "#423b6e", + "600": "#2d284e", + "700": "#131026", "800": "#000000" }, "red": { - "100": "#ff9084", - "200": "#ef4f46", - "300": "#c42b28", - "400": "#961516", - "500": "#6a070a", - "600": "#360102", - "700": "#000000", + "100": "#ffc7be", + "200": "#f85b51", + "300": "#d63631", + "400": "#af201f", + "500": "#860f11", + "600": "#600507", + "700": "#300102", "800": "#000000" }, "teal": { - "100": "#00c4bb", - "200": "#009790", - "300": "#00746e", - "400": "#005551", - "500": "#003936", - "600": "#001a19", - "700": "#000000", + "100": "#42ebe1", + "200": "#00a29a", + "300": "#00817a", + "400": "#006560", + "500": "#004a46", + "600": "#003330", + "700": "#001615", "800": "#000000" }, "primary": { - "100": "#00bcfb", - "200": "#0091c6", - "300": "#006f9a", - "400": "#005174", - "500": "#00364f", - "600": "#001826", - "700": "#000000", + "100": "#72e4ff", + "200": "#009bd3", + "300": "#007bab", + "400": "#006088", + "500": "#004765", + "600": "#003047", + "700": "#001522", "800": "#000000" }, "secondary": { - "100": "#afa4ff", - "200": "#877cd4", - "300": "#675ea6", - "400": "#4c447d", - "500": "#322d56", - "600": "#16132b", - "700": "#000000", + "100": "#d5cfff", + "200": "#9085e1", + "300": "#7269b7", + "400": "#5a5292", + "500": "#423b6e", + "600": "#2d284e", + "700": "#131026", "800": "#000000" } } \ No newline at end of file diff --git a/build/Light/kleur-lch.json b/build/Light/kleur-lch.json index 9edb955..1106189 100644 --- a/build/Light/kleur-lch.json +++ b/build/Light/kleur-lch.json @@ -1,95 +1,95 @@ { "background": "lch(95.00000319011902, 3.9999912983927217, 285.99986285352287)", - "surface": "lch(94.10000635414235, 3.999982669622568, 285.99972685815214)", - "overlay": "lch(93.20000632804671, 3.9999827424364818, 285.9997280098529)", + "surface": "lch(93.56000633848498, 3.9999827133109016, 285.99972754917053)", + "overlay": "lch(92.12000629673172, 3.9999828298137703, 285.9997293919251)", "base": { - "100": "lch(72%, 11, 290deg)", - "200": "lch(56%, 10, 289deg)", - "300": "lch(44%, 9, 291deg)", - "400": "lch(32%, 7, 288deg)", - "500": "lch(21%, 5, 287deg)", - "600": "lch(7%, 3, 291deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 10, 289deg)", + "200": "lch(60%, 11, 291deg)", + "300": "lch(48%, 9, 289deg)", + "400": "lch(38%, 9, 292deg)", + "500": "lch(28%, 7, 292deg)", + "600": "lch(18%, 6, 292deg)", + "700": "lch(6%, 3, 281deg)", "800": "lch(0%, 0, 0deg)" }, "blue": { - "100": "lch(72%, 46, 247deg)", - "200": "lch(56%, 39, 250deg)", - "300": "lch(44%, 32, 251deg)", - "400": "lch(32%, 27, 254deg)", - "500": "lch(21%, 21, 254deg)", - "600": "lch(7%, 13, 256deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 34, 222deg)", + "200": "lch(60%, 41, 250deg)", + "300": "lch(48%, 35, 252deg)", + "400": "lch(38%, 30, 254deg)", + "500": "lch(28%, 24, 252deg)", + "600": "lch(18%, 19, 254deg)", + "700": "lch(6%, 12, 257deg)", "800": "lch(0%, 0, 0deg)" }, "green": { - "100": "lch(72%, 75, 149deg)", - "200": "lch(56%, 64, 147deg)", - "300": "lch(44%, 54, 147deg)", - "400": "lch(32%, 43, 146deg)", - "500": "lch(21%, 33, 146deg)", - "600": "lch(7%, 16, 149deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 70, 150deg)", + "200": "lch(60%, 67, 148deg)", + "300": "lch(48%, 58, 147deg)", + "400": "lch(38%, 49, 146deg)", + "500": "lch(28%, 40, 146deg)", + "600": "lch(18%, 31, 146deg)", + "700": "lch(6%, 13, 149deg)", "800": "lch(0%, 0, 0deg)" }, "orange": { - "100": "lch(72%, 78, 76deg)", - "200": "lch(56%, 65, 74deg)", - "300": "lch(44%, 54, 73deg)", - "400": "lch(32%, 44, 72deg)", - "500": "lch(21%, 32, 71deg)", - "600": "lch(7%, 13, 59deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 54, 83deg)", + "200": "lch(60%, 68, 74deg)", + "300": "lch(48%, 58, 73deg)", + "400": "lch(38%, 50, 72deg)", + "500": "lch(28%, 40, 72deg)", + "600": "lch(18%, 28, 71deg)", + "700": "lch(6%, 10, 61deg)", "800": "lch(0%, 0, 0deg)" }, "purple": { - "100": "lch(71%, 50, 299deg)", - "200": "lch(56%, 50, 299deg)", - "300": "lch(44%, 43, 300deg)", - "400": "lch(32%, 36, 300deg)", - "500": "lch(21%, 28, 300deg)", - "600": "lch(7%, 18, 300deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 25, 297deg)", + "200": "lch(60%, 52, 299deg)", + "300": "lch(48%, 46, 299deg)", + "400": "lch(38%, 39, 300deg)", + "500": "lch(28%, 33, 300deg)", + "600": "lch(18%, 26, 300deg)", + "700": "lch(6%, 16, 298deg)", "800": "lch(0%, 0, 0deg)" }, "red": { - "100": "lch(71%, 48, 32deg)", - "200": "lch(56%, 73, 33deg)", - "300": "lch(44%, 71, 34deg)", - "400": "lch(32%, 62, 35deg)", - "500": "lch(21%, 49, 34deg)", - "600": "lch(7%, 28, 22deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 22, 33deg)", + "200": "lch(60%, 71, 33deg)", + "300": "lch(48%, 74, 34deg)", + "400": "lch(38%, 67, 35deg)", + "500": "lch(28%, 58, 35deg)", + "600": "lch(18%, 46, 34deg)", + "700": "lch(6%, 25, 20deg)", "800": "lch(0%, 0, 0deg)" }, "teal": { - "100": "lch(72%, 43, 190deg)", - "200": "lch(56%, 35, 190deg)", - "300": "lch(44%, 29, 189deg)", - "400": "lch(32%, 23, 190deg)", - "500": "lch(21%, 18, 190deg)", - "600": "lch(7%, 9, 194deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 45, 190deg)", + "200": "lch(60%, 37, 189deg)", + "300": "lch(48%, 32, 189deg)", + "400": "lch(38%, 26, 189deg)", + "500": "lch(28%, 21, 189deg)", + "600": "lch(18%, 17, 189deg)", + "700": "lch(6%, 7, 194deg)", "800": "lch(0%, 0, 0deg)" }, "primary": { - "100": "lch(72%, 46, 247deg)", - "200": "lch(56%, 39, 250deg)", - "300": "lch(44%, 32, 251deg)", - "400": "lch(32%, 27, 254deg)", - "500": "lch(21%, 21, 254deg)", - "600": "lch(7%, 13, 256deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 34, 222deg)", + "200": "lch(60%, 41, 250deg)", + "300": "lch(48%, 35, 252deg)", + "400": "lch(38%, 30, 254deg)", + "500": "lch(28%, 24, 252deg)", + "600": "lch(18%, 19, 254deg)", + "700": "lch(6%, 12, 257deg)", "800": "lch(0%, 0, 0deg)" }, "secondary": { - "100": "lch(71%, 50, 299deg)", - "200": "lch(56%, 50, 299deg)", - "300": "lch(44%, 43, 300deg)", - "400": "lch(32%, 36, 300deg)", - "500": "lch(21%, 28, 300deg)", - "600": "lch(7%, 18, 300deg)", - "700": "lch(0%, 0, 0deg)", + "100": "lch(85%, 25, 297deg)", + "200": "lch(60%, 52, 299deg)", + "300": "lch(48%, 46, 299deg)", + "400": "lch(38%, 39, 300deg)", + "500": "lch(28%, 33, 300deg)", + "600": "lch(18%, 26, 300deg)", + "700": "lch(6%, 16, 298deg)", "800": "lch(0%, 0, 0deg)" } } \ No newline at end of file diff --git a/build/Light/kleur.css b/build/Light/kleur.css index 7f279d7..deb0b2c 100644 --- a/build/Light/kleur.css +++ b/build/Light/kleur.css @@ -1,78 +1,78 @@ :root { --background: lch(95.00000319011902, 3.9999912983927217, 285.99986285352287); ---surface: lch(94.10000635414235, 3.999982669622568, 285.99972685815214); ---overlay: lch(93.20000632804671, 3.9999827424364818, 285.9997280098529); +--surface: lch(93.56000633848498, 3.9999827133109016, 285.99972754917053); +--overlay: lch(92.12000629673172, 3.9999828298137703, 285.9997293919251); --background: lch(95%, 4, 286); ---base100: lch(72%, 11, 290); ---base200: lch(56%, 10, 289); ---base300: lch(44%, 9, 291); ---base400: lch(32%, 7, 288); ---base500: lch(21%, 5, 287); ---base600: lch(7%, 3, 291); ---base700: lch(0%, 0, 0); +--base100: lch(85%, 10, 289); +--base200: lch(60%, 11, 291); +--base300: lch(48%, 9, 289); +--base400: lch(38%, 9, 292); +--base500: lch(28%, 7, 292); +--base600: lch(18%, 6, 292); +--base700: lch(6%, 3, 281); --base800: lch(0%, 0, 0); ---blue100: lch(72%, 46, 247); ---blue200: lch(56%, 39, 250); ---blue300: lch(44%, 32, 251); ---blue400: lch(32%, 27, 254); ---blue500: lch(21%, 21, 254); ---blue600: lch(7%, 13, 256); ---blue700: lch(0%, 0, 0); +--blue100: lch(85%, 34, 222); +--blue200: lch(60%, 41, 250); +--blue300: lch(48%, 35, 252); +--blue400: lch(38%, 30, 254); +--blue500: lch(28%, 24, 252); +--blue600: lch(18%, 19, 254); +--blue700: lch(6%, 12, 257); --blue800: lch(0%, 0, 0); ---green100: lch(72%, 75, 149); ---green200: lch(56%, 64, 147); ---green300: lch(44%, 54, 147); ---green400: lch(32%, 43, 146); ---green500: lch(21%, 33, 146); ---green600: lch(7%, 16, 149); ---green700: lch(0%, 0, 0); +--green100: lch(85%, 70, 150); +--green200: lch(60%, 67, 148); +--green300: lch(48%, 58, 147); +--green400: lch(38%, 49, 146); +--green500: lch(28%, 40, 146); +--green600: lch(18%, 31, 146); +--green700: lch(6%, 13, 149); --green800: lch(0%, 0, 0); ---orange100: lch(72%, 78, 76); ---orange200: lch(56%, 65, 74); ---orange300: lch(44%, 54, 73); ---orange400: lch(32%, 44, 72); ---orange500: lch(21%, 32, 71); ---orange600: lch(7%, 13, 59); ---orange700: lch(0%, 0, 0); +--orange100: lch(85%, 54, 83); +--orange200: lch(60%, 68, 74); +--orange300: lch(48%, 58, 73); +--orange400: lch(38%, 50, 72); +--orange500: lch(28%, 40, 72); +--orange600: lch(18%, 28, 71); +--orange700: lch(6%, 10, 61); --orange800: lch(0%, 0, 0); ---purple100: lch(71%, 50, 299); ---purple200: lch(56%, 50, 299); ---purple300: lch(44%, 43, 300); ---purple400: lch(32%, 36, 300); ---purple500: lch(21%, 28, 300); ---purple600: lch(7%, 18, 300); ---purple700: lch(0%, 0, 0); +--purple100: lch(85%, 25, 297); +--purple200: lch(60%, 52, 299); +--purple300: lch(48%, 46, 299); +--purple400: lch(38%, 39, 300); +--purple500: lch(28%, 33, 300); +--purple600: lch(18%, 26, 300); +--purple700: lch(6%, 16, 298); --purple800: lch(0%, 0, 0); ---red100: lch(71%, 48, 32); ---red200: lch(56%, 73, 33); ---red300: lch(44%, 71, 34); ---red400: lch(32%, 62, 35); ---red500: lch(21%, 49, 34); ---red600: lch(7%, 28, 22); ---red700: lch(0%, 0, 0); +--red100: lch(85%, 22, 33); +--red200: lch(60%, 71, 33); +--red300: lch(48%, 74, 34); +--red400: lch(38%, 67, 35); +--red500: lch(28%, 58, 35); +--red600: lch(18%, 46, 34); +--red700: lch(6%, 25, 20); --red800: lch(0%, 0, 0); ---teal100: lch(72%, 43, 190); ---teal200: lch(56%, 35, 190); ---teal300: lch(44%, 29, 189); ---teal400: lch(32%, 23, 190); ---teal500: lch(21%, 18, 190); ---teal600: lch(7%, 9, 194); ---teal700: lch(0%, 0, 0); +--teal100: lch(85%, 45, 190); +--teal200: lch(60%, 37, 189); +--teal300: lch(48%, 32, 189); +--teal400: lch(38%, 26, 189); +--teal500: lch(28%, 21, 189); +--teal600: lch(18%, 17, 189); +--teal700: lch(6%, 7, 194); --teal800: lch(0%, 0, 0); ---primary100: lch(72%, 46, 247); ---primary200: lch(56%, 39, 250); ---primary300: lch(44%, 32, 251); ---primary400: lch(32%, 27, 254); ---primary500: lch(21%, 21, 254); ---primary600: lch(7%, 13, 256); ---primary700: lch(0%, 0, 0); +--primary100: lch(85%, 34, 222); +--primary200: lch(60%, 41, 250); +--primary300: lch(48%, 35, 252); +--primary400: lch(38%, 30, 254); +--primary500: lch(28%, 24, 252); +--primary600: lch(18%, 19, 254); +--primary700: lch(6%, 12, 257); --primary800: lch(0%, 0, 0); ---secondary100: lch(71%, 50, 299); ---secondary200: lch(56%, 50, 299); ---secondary300: lch(44%, 43, 300); ---secondary400: lch(32%, 36, 300); ---secondary500: lch(21%, 28, 300); ---secondary600: lch(7%, 18, 300); ---secondary700: lch(0%, 0, 0); +--secondary100: lch(85%, 25, 297); +--secondary200: lch(60%, 52, 299); +--secondary300: lch(48%, 46, 299); +--secondary400: lch(38%, 39, 300); +--secondary500: lch(28%, 33, 300); +--secondary600: lch(18%, 26, 300); +--secondary700: lch(6%, 16, 298); --secondary800: lch(0%, 0, 0); } \ No newline at end of file diff --git a/build/Light/kleur.json b/build/Light/kleur.json index 986c777..747c66e 100644 --- a/build/Light/kleur.json +++ b/build/Light/kleur.json @@ -1,27 +1,27 @@ { "scheme": "Kleur Light", "base00": "#eff0f8", - "base01": "#edeef5", - "base02": "#eaebf3", - "base03": "#666675", - "base04": "#666675", - "base05": "#4a4b56", - "base06": "#31323a", - "base07": "#16161a", - "base08": "#c42b28", - "base09": "#915c00", - "base0A": "#915c00", - "base0B": "#007833", - "base0C": "#00746e", - "base0D": "#006f9a", - "base0E": "#675ea6", - "base0F": "#915c00", - "base10": "#edeef5", + "base01": "#ebecf4", + "base02": "#e7e8f0", + "base03": "#717282", + "base04": "#595967", + "base05": "#41414c", + "base06": "#2c2c34", + "base07": "#121317", + "base08": "#af201f", + "base09": "#804f00", + "base0A": "#804f00", + "base0B": "#00692b", + "base0C": "#006560", + "base0D": "#006088", + "base0E": "#5a5292", + "base0F": "#804f00", + "base10": "#ebecf4", "base11": "#eff0f8", - "base12": "#961516", - "base13": "#6c4200", - "base14": "#005823", - "base15": "#005551", - "base16": "#005174", - "base17": "#4c447d" + "base12": "#860f11", + "base13": "#5f3900", + "base14": "#004d1d", + "base15": "#004a46", + "base16": "#004765", + "base17": "#423b6e" } \ No newline at end of file diff --git a/build/Light/kleur.yaml b/build/Light/kleur.yaml index 3b75ac6..7f5c046 100644 --- a/build/Light/kleur.yaml +++ b/build/Light/kleur.yaml @@ -1,25 +1,25 @@ scheme: Kleur Light base00: "#eff0f8" -base01: "#edeef5" -base02: "#eaebf3" -base03: "#666675" -base04: "#666675" -base05: "#4a4b56" -base06: "#31323a" -base07: "#16161a" -base08: "#c42b28" -base09: "#915c00" -base0A: "#915c00" -base0B: "#007833" -base0C: "#00746e" -base0D: "#006f9a" -base0E: "#675ea6" -base0F: "#915c00" -base10: "#edeef5" +base01: "#ebecf4" +base02: "#e7e8f0" +base03: "#717282" +base04: "#595967" +base05: "#41414c" +base06: "#2c2c34" +base07: "#121317" +base08: "#af201f" +base09: "#804f00" +base0A: "#804f00" +base0B: "#00692b" +base0C: "#006560" +base0D: "#006088" +base0E: "#5a5292" +base0F: "#804f00" +base10: "#ebecf4" base11: "#eff0f8" -base12: "#961516" -base13: "#6c4200" -base14: "#005823" -base15: "#005551" -base16: "#005174" -base17: "#4c447d" +base12: "#860f11" +base13: "#5f3900" +base14: "#004d1d" +base15: "#004a46" +base16: "#004765" +base17: "#423b6e" diff --git a/build/Light/windows-terminal.json b/build/Light/windows-terminal.json index 30727f6..c3d97db 100644 --- a/build/Light/windows-terminal.json +++ b/build/Light/windows-terminal.json @@ -1,23 +1,23 @@ { "name": "Kleur Light", - "foreground": "#4a4b56", + "foreground": "#41414c", "background": "#eff0f8", - "cursorColor": "#4a4b56", - "selectionBackground": "#eaebf3", + "cursorColor": "#41414c", + "selectionBackground": "#e7e8f0", "black": "#eff0f8", - "red": "#c42b28", - "green": "#007833", - "yellow": "#915c00", - "blue": "#006f9a", - "purple": "#675ea6", - "cyan": "#00746e", - "white": "#4a4b56", - "brightBlack": "#666675", - "brightRed": "#961516", - "brightGreen": "#005823", - "brightYellow": "#6c4200", - "brightBlue": "#005174", - "brightPurple": "#4c447d", - "brightCyan": "#005551", - "brightWhite": "#16161a" + "red": "#af201f", + "green": "#00692b", + "yellow": "#804f00", + "blue": "#006088", + "purple": "#5a5292", + "cyan": "#006560", + "white": "#41414c", + "brightBlack": "#717282", + "brightRed": "#860f11", + "brightGreen": "#004d1d", + "brightYellow": "#5f3900", + "brightBlue": "#004765", + "brightPurple": "#423b6e", + "brightCyan": "#004a46", + "brightWhite": "#121317" } diff --git a/build/v2/README.md b/build/v2/README.md deleted file mode 100644 index 118e7a9..0000000 --- a/build/v2/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# Kleur V2 exports - -These are exports from kleur V2 that have not been updated to V3 yet diff --git a/build/v2/zed.json b/build/v2/zed.json deleted file mode 100644 index 1fb95c2..0000000 --- a/build/v2/zed.json +++ /dev/null @@ -1,330 +0,0 @@ -{ - "$schema": "https://zed.dev/schema/themes/v0.1.0.json", - "name": "Kleur", - "author": "Suyashtnt", - "themes": [ - { - "name": "Kleur Dark", - "appearance": "dark", - "style": { - "background.appearance": "opaque", - "accents": [], - "border": "#00000000", - "border.variant": "#00000000", - "border.focused": "#a89dff", - "border.selected": "#00000000", - "border.transparent": "#00000000", - "border.disabled": "#00000000", - "elevated_surface.background": "#060613", - "surface.background": "#09071f", - "background": "#060613", - "element.background": "#a89dff", - "element.hover": "#141327", - "element.active": null, - "element.selected": "#141327", - "element.disabled": null, - "drop_target.background": "#2b2b4166", - "ghost_element.background": null, - "ghost_element.hover": "#141327", - "ghost_element.active": null, - "ghost_element.selected": "#141327", - "ghost_element.disabled": null, - "text": "#dadbf8", - "text.muted": "#dadbf8", - "text.placeholder": null, - "text.disabled": null, - "text.accent": null, - "icon": null, - "icon.muted": null, - "icon.disabled": null, - "icon.placeholder": null, - "icon.accent": null, - "status_bar.background": "#09071f", - "title_bar.background": "#060613", - "toolbar.background": "#09071f", - "tab_bar.background": "#09071f", - "tab.inactive_background": "#09071f", - "tab.active_background": "#141327", - "search.match_background": null, - "panel.background": "#09071f", - "panel.focused_border": null, - "pane.focused_border": null, - "pane_group.border": null, - "scrollbar.thumb.background": "#2b2b4133", - "scrollbar.thumb.hover_background": "#2b2b4177", - "scrollbar.thumb.border": "#2b2b4133", - "scrollbar.track.background": "#060613", - "scrollbar.track.border": "#00000000", - "editor.foreground": "#dadbf8", - "editor.background": "#060613", - "editor.gutter.background": "#060613", - "editor.subheader.background": null, - "editor.active_line.background": "#09071f", - "editor.highlighted_line.background": null, - "editor.line_number": "#2b2b41", - "editor.active_line_number": "#dadbf8", - "editor.invisible": null, - "editor.wrap_guide": "#00000000", - "editor.active_wrap_guide": "#00000000", - "editor.indent_guide": null, - "editor.indent_guide_active": null, - "editor.document_highlight.read_background": null, - "editor.document_highlight.write_background": null, - "terminal.background": "#060613", - "terminal.foreground": null, - "terminal.bright_foreground": null, - "terminal.dim_foreground": null, - "terminal.ansi.black": "#060613", - "terminal.ansi.bright_black": "#2b2b41", - "terminal.ansi.dim_black": null, - "terminal.ansi.red": "#a89dff", - "terminal.ansi.bright_red": "#a89dff", - "terminal.ansi.dim_red": null, - "terminal.ansi.green": "#11d770", - "terminal.ansi.bright_green": "#11d770", - "terminal.ansi.dim_green": null, - "terminal.ansi.yellow": "#e6443d", - "terminal.ansi.bright_yellow": "#e6443d", - "terminal.ansi.dim_yellow": null, - "terminal.ansi.blue": "#a89dff", - "terminal.ansi.bright_blue": "#a89dff", - "terminal.ansi.dim_blue": null, - "terminal.ansi.magenta": "#00c0ff", - "terminal.ansi.bright_magenta": "#00c0ff", - "terminal.ansi.dim_magenta": null, - "terminal.ansi.cyan": "#00dad0", - "terminal.ansi.bright_cyan": "#00dad0", - "terminal.ansi.dim_cyan": null, - "terminal.ansi.white": "#dadbf8", - "terminal.ansi.bright_white": "#a89dff", - "terminal.ansi.dim_white": null, - "link_text.hover": "#00dad0", - "conflict": "#e6443d", - "conflict.background": null, - "conflict.border": null, - "created": "#11d770", - "created.background": null, - "created.border": null, - "deleted": "#a89dff", - "deleted.background": null, - "deleted.border": null, - "error": "#a89dff", - "error.background": null, - "error.border": null, - "hidden": "#dadbf8", - "hidden.background": null, - "hidden.border": null, - "hint": "#2b2b41", - "hint.background": null, - "hint.border": null, - "ignored": "#2b2b41", - "ignored.background": null, - "ignored.border": null, - "info": "#00dad0", - "info.background": null, - "info.border": null, - "modified": "#00c0ff", - "modified.background": null, - "modified.border": null, - "predictive": null, - "predictive.background": null, - "predictive.border": null, - "renamed": null, - "renamed.background": null, - "renamed.border": null, - "success": null, - "success.background": null, - "success.border": null, - "unreachable": null, - "unreachable.background": null, - "unreachable.border": null, - "warning": "#e6443d", - "warning.background": null, - "warning.border": null, - "players": [], - "syntax": { - "attribute": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "boolean": { - "color": "#f1a400", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "comment": { - "color": "#2b2b41", - "background_color": null, - "font_style": "italic", - "font_weight": null - }, - "comment.doc": { - "color": "#2b2b41", - "background_color": null, - "font_style": "italic", - "font_weight": null - }, - "constant": { - "color": "#f1a400", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "constructor": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "emphasis": { - "color": "#a89dff", - "background_color": null, - "font_style": "italic", - "font_weight": null - }, - "emphasis.strong": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": 700 - }, - "function": { - "color": "#00c0ff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "keyword": { - "color": "#00c0ff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "label": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "link_text": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "link_uri": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "number": { - "color": "#f1a400", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "punctuation": { - "color": "#dadbf8", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "punctuation.bracket": { - "color": "#dadbf8", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "punctuation.delimiter": { - "color": "#dadbf8", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "punctuation.list_marker": { - "color": "#dadbf8", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "punctuation.special": { - "color": "#dadbf8", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "string": { - "color": "#11d770", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "string.escape": { - "color": "#f1a400", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "string.regex": { - "color": "#11d770", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "string.special": { - "color": "#11d770", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "string.special.symbol": { - "color": "#11d770", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "tag": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "text.literal": { - "color": "#11d770", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "title": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "type": { - "color": "#11d770", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "variable": { - "color": "#a89dff", - "background_color": null, - "font_style": null, - "font_weight": null - }, - "variable.special": { - "color": "#a89dff", - "background_color": null, - "font_style": "italic", - "font_weight": null - } - } - } - } - ] -} diff --git a/build/vscode/dark.json b/build/vscode/dark.json index 4395e7a..e4115bc 100644 --- a/build/vscode/dark.json +++ b/build/vscode/dark.json @@ -4,522 +4,522 @@ "name": "Kleur Dark", "type": "dark", "colors": { - "focusBorder": "#8c81dc", - "foreground": "#a6a6ae", - "disabledForeground": "#595a67", - "widget.border": "#141423", + "focusBorder": "#9287e4", + "foreground": "#c6c6cb", + "disabledForeground": "#767882", + "widget.border": "#1b1b2a", "widget.shadow": "#00000000", - "selection.background": "#141423", - "descriptionForeground": "#595a67", - "errorForeground": "#f5564d", - "icon.foreground": "#8c81dc", - "textBlockQuote.background": "#090917", - "textBlockQuote.border": "#8c81dc", + "selection.background": "#1b1b2a", + "descriptionForeground": "#5f606d", + "errorForeground": "#fa5f54", + "icon.foreground": "#9287e4", + "textBlockQuote.background": "#0b0c19", + "textBlockQuote.border": "#9287e4", "textCodeBlock.background": "#060613", - "textLink.activeForeground": "#8c81dc", - "textLink.foreground": "#0097ce", - "textPreformat.foreground": "#0097ce", - "textSeparator.foreground": "#72737e", - "toolbar.hoverBackground": "#141423", - "toolbar.activeBackground": "#141423", - "button.background": "#8c81dc", + "textLink.activeForeground": "#9287e4", + "textLink.foreground": "#009dd7", + "textPreformat.foreground": "#009dd7", + "textSeparator.foreground": "#92929b", + "toolbar.hoverBackground": "#1b1b2a", + "toolbar.activeBackground": "#1b1b2a", + "button.background": "#9287e4", "button.foreground": "#060613", - "button.hoverBackground": "#8c81dcC0", + "button.hoverBackground": "#9287e4C0", "button.secondaryForeground": "#060613", - "button.secondaryBackground": "#0097ce", - "button.secondaryHoverBackground": "#0097ceC0", + "button.secondaryBackground": "#009dd7", + "button.secondaryHoverBackground": "#009dd7C0", "checkbox.background": "#060613", - "checkbox.foreground": "#8c81dc", + "checkbox.foreground": "#9287e4", "dropdown.background": "#060613", "dropdown.listBackground": "#060613", - "dropdown.foreground": "#a6a6ae", + "dropdown.foreground": "#c6c6cb", "input.background": "#060613", - "input.foreground": "#a6a6ae", - "input.placeholderForeground": "#595a67", - "inputOption.activeBackground": "#8c81dc", + "input.foreground": "#c6c6cb", + "input.placeholderForeground": "#5f606d", + "inputOption.activeBackground": "#9287e4", "inputOption.activeForeground": "#060613", - "inputValidation.errorBackground": "#f5564d", - "inputValidation.errorForeground": "#a6a6ae", - "inputValidation.errorBorder": "#f5564d", - "inputValidation.infoBackground": "#0097ce", - "inputValidation.infoForeground": "#a6a6ae", - "inputValidation.infoBorder": "#0097ce", - "inputValidation.warningBackground": "#c27e00", - "inputValidation.warningForeground": "#a6a6ae", - "inputValidation.warningBorder": "#c27e00", + "inputValidation.errorBackground": "#fa5f54", + "inputValidation.errorForeground": "#c6c6cb", + "inputValidation.errorBorder": "#fa5f54", + "inputValidation.infoBackground": "#009dd7", + "inputValidation.infoForeground": "#c6c6cb", + "inputValidation.infoBorder": "#009dd7", + "inputValidation.warningBackground": "#ca8400", + "inputValidation.warningForeground": "#c6c6cb", + "inputValidation.warningBorder": "#ca8400", "scrollbar.shadow": "#00000000", - "scrollbarSlider.activeBackground": "#8c81dc77", - "scrollbarSlider.background": "#595a6733", - "scrollbarSlider.hoverBackground": "#595a6777", - "badge.foreground": "#a6a6ae", + "scrollbarSlider.activeBackground": "#9287e477", + "scrollbarSlider.background": "#5f606d33", + "scrollbarSlider.hoverBackground": "#5f606d77", + "badge.foreground": "#c6c6cb", "badge.background": "#060613", - "progressBar.background": "#595a67", - "list.activeSelectionBackground": "#141423", - "list.activeSelectionForeground": "#a6a6ae", - "list.dropBackground": "#595a6766", - "list.focusBackground": "#141423", - "list.focusForeground": "#a6a6ae", - "list.focusOutline": "#0097ce", - "list.focusAndSelectionOutline": "#0097ce", - "list.highlightForeground": "#a6a6ae", - "list.hoverBackground": "#141423", - "list.hoverForeground": "#a6a6ae", - "list.inactiveSelectionBackground": "#141423", - "list.inactiveSelectionForeground": "#a6a6ae", - "list.inactiveFocusBackground": "#141423", - "list.inactiveFocusOutline": "#595a67", - "list.invalidItemForeground": "#f5564d", - "list.errorForeground": "#f5564d", - "list.warningForeground": "#c27e00", + "progressBar.background": "#5f606d", + "list.activeSelectionBackground": "#1b1b2a", + "list.activeSelectionForeground": "#c6c6cb", + "list.dropBackground": "#5f606d66", + "list.focusBackground": "#1b1b2a", + "list.focusForeground": "#c6c6cb", + "list.focusOutline": "#009dd7", + "list.focusAndSelectionOutline": "#009dd7", + "list.highlightForeground": "#c6c6cb", + "list.hoverBackground": "#1b1b2a", + "list.hoverForeground": "#c6c6cb", + "list.inactiveSelectionBackground": "#1b1b2a", + "list.inactiveSelectionForeground": "#c6c6cb", + "list.inactiveFocusBackground": "#1b1b2a", + "list.inactiveFocusOutline": "#5f606d", + "list.invalidItemForeground": "#fa5f54", + "list.errorForeground": "#fa5f54", + "list.warningForeground": "#ca8400", "listFilterWidget.background": "#060613", - "listFilterWidget.noMatchesOutline": "#f5564d", + "listFilterWidget.noMatchesOutline": "#fa5f54", "listFilterWidget.shadow": "#00000000", - "list.filterMatchBackground": "#141423", - "tree.indentGuidesStroke": "#a6a6ae", - "activityBar.background": "#090917", - "activityBar.dropBorder": "#595a67", - "activityBar.foreground": "#a6a6ae", - "activityBar.inactiveForeground": "#595a67", - "activityBarBadge.background": "#8c81dc", + "list.filterMatchBackground": "#1b1b2a", + "tree.indentGuidesStroke": "#c6c6cb", + "activityBar.background": "#0b0c19", + "activityBar.dropBorder": "#5f606d", + "activityBar.foreground": "#c6c6cb", + "activityBar.inactiveForeground": "#5f606d", + "activityBarBadge.background": "#9287e4", "activityBarBadge.foreground": "#060613", - "activityBar.activeBorder": "#72737e", - "activityBar.activeBackground": "#141423", - "activityBar.activeFocusBorder": "#8c81dc", - "activityBarTop.foreground": "#a6a6ae", - "activityBarTop.activeBorder": "#8c81dc", - "activityBarTop.inactiveForeground": "#595a67", - "activityBarTop.dropBorder": "#595a67", - "profileBadge.background": "#090917", - "profileBadge.foreground": "#595a67", - "sideBar.background": "#090917", - "sideBar.foreground": "#a6a6ae", - "sideBar.dropBackground": "#141423", - "sideBarTitle.foreground": "#a6a6ae", - "sideBarSectionHeader.background": "#090917", - "sideBarSectionHeader.foreground": "#a6a6ae", - "minimap.findMatchHighlight": "#c27e00", - "minimap.selectionHighlight": "#141423", - "minimap.errorHighlight": "#f5564d", - "minimap.warningHighlight": "#c27e00", + "activityBar.activeBorder": "#92929b", + "activityBar.activeBackground": "#1b1b2a", + "activityBar.activeFocusBorder": "#9287e4", + "activityBarTop.foreground": "#c6c6cb", + "activityBarTop.activeBorder": "#9287e4", + "activityBarTop.inactiveForeground": "#5f606d", + "activityBarTop.dropBorder": "#5f606d", + "profileBadge.background": "#0b0c19", + "profileBadge.foreground": "#5f606d", + "sideBar.background": "#0b0c19", + "sideBar.foreground": "#c6c6cb", + "sideBar.dropBackground": "#1b1b2a", + "sideBarTitle.foreground": "#c6c6cb", + "sideBarSectionHeader.background": "#0b0c19", + "sideBarSectionHeader.foreground": "#c6c6cb", + "minimap.findMatchHighlight": "#ca8400", + "minimap.selectionHighlight": "#1b1b2a", + "minimap.errorHighlight": "#fa5f54", + "minimap.warningHighlight": "#ca8400", "minimap.background": "#060613", - "minimap.selectionOccurrenceHighlight": "#595a67", - "minimapGutter.addedBackground": "#00a24b", - "minimapGutter.modifiedBackground": "#8c81dc", - "minimapGutter.deletedBackground": "#f5564d", - "editorGroup.dropBackground": "#595a6766", - "editorGroupHeader.noTabsBackground": "#090917", - "editorGroupHeader.tabsBackground": "#090917", + "minimap.selectionOccurrenceHighlight": "#5f606d", + "minimapGutter.addedBackground": "#00a94f", + "minimapGutter.modifiedBackground": "#9287e4", + "minimapGutter.deletedBackground": "#fa5f54", + "editorGroup.dropBackground": "#5f606d66", + "editorGroupHeader.noTabsBackground": "#0b0c19", + "editorGroupHeader.tabsBackground": "#0b0c19", "editorGroup.emptyBackground": "#060613", - "editorGroup.focusedEmptyBorder": "#8c81dc", - "editorGroup.dropIntoPromptForeground": "#8b8c96", + "editorGroup.focusedEmptyBorder": "#9287e4", + "editorGroup.dropIntoPromptForeground": "#ababb3", "editorGroup.dropIntoPromptBackground": "#060613", - "tab.activeBackground": "#141423", - "tab.unfocusedActiveBackground": "#141423", - "tab.activeForeground": "#8c81dc", + "tab.activeBackground": "#1b1b2a", + "tab.unfocusedActiveBackground": "#1b1b2a", + "tab.activeForeground": "#9287e4", "tab.border": "#00000000", - "tab.dragAndDropBorder": "#595a67", - "tab.inactiveBackground": "#090917", - "tab.unfocusedInactiveBackground": "#090917", - "tab.inactiveForeground": "#72737e", - "tab.unfocusedActiveForeground": "#595a67", - "tab.unfocusedInactiveForeground": "#595a67", - "tab.hoverBackground": "#141423", - "tab.unfocusedHoverBackground": "#141423", - "tab.hoverForeground": "#a6a6ae", - "tab.unfocusedHoverForeground": "#8b8c96", - "tab.activeModifiedBorder": "#8c81dc", - "tab.inactiveModifiedBorder": "#8c81dc", - "tab.unfocusedActiveModifiedBorder": "#8c81dc", - "tab.unfocusedInactiveModifiedBorder": "#8c81dc", + "tab.dragAndDropBorder": "#5f606d", + "tab.inactiveBackground": "#0b0c19", + "tab.unfocusedInactiveBackground": "#0b0c19", + "tab.inactiveForeground": "#92929b", + "tab.unfocusedActiveForeground": "#767882", + "tab.unfocusedInactiveForeground": "#767882", + "tab.hoverBackground": "#1b1b2a", + "tab.unfocusedHoverBackground": "#1b1b2a", + "tab.hoverForeground": "#c6c6cb", + "tab.unfocusedHoverForeground": "#ababb3", + "tab.activeModifiedBorder": "#9287e4", + "tab.inactiveModifiedBorder": "#9287e4", + "tab.unfocusedActiveModifiedBorder": "#9287e4", + "tab.unfocusedInactiveModifiedBorder": "#9287e4", "editorPane.background": "#060613", "editor.background": "#060613", - "editor.foreground": "#a6a6ae", - "editorLineNumber.foreground": "#595a67", - "editorLineNumber.activeForeground": "#595a67", - "editorCursor.foreground": "#72737e", - "editor.selectionBackground": "#141423", - "editor.inactiveSelectionBackground": "#141423", - "editor.selectionHighlightBackground": "#090917", - "editor.wordHighlightBackground": "#141423", - "editor.wordHighlightStrongBackground": "#595a67", - "editor.findMatchBackground": "#c27e00", - "editor.findMatchHighlightBackground": "#c27e00", - "editor.findRangeHighlightBackground": "#090917", - "searchEditor.findMatchBackground": "#c27e00", - "editor.hoverHighlightBackground": "#141423", - "editor.lineHighlightBackground": "#090917", - "editorLink.activeForeground": "#0097ce", - "editor.rangeHighlightBackground": "#090917", - "editorWhitespace.foreground": "#595a67", - "editorIndentGuide.background": "#141423", - "editorIndentGuide.activeBackground": "#141423", - "editorInlayHint.background": "#090917", - "editorInlayHint.foreground": "#595a67", - "editorInlayHint.typeForeground": "#595a67", - "editorInlayHint.typeBackground": "#090917", - "editorInlayHint.parameterForeground": "#595a67", - "editorInlayHint.parameterBackground": "#090917", - "editorRuler.foreground": "#141423", - "editorCodeLens.foreground": "#141423", - "editorLightBulb.foreground": "#c27e00", - "editorLightBulbAutoFix.foreground": "#0097ce", - "editorBracketMatch.background": "#141423", - "editorBracketHighlight.foreground1": "#8c81dc", - "editorBracketHighlight.foreground2": "#0097ce", - "editorBracketHighlight.foreground3": "#009d96", - "editorBracketHighlight.foreground4": "#00a24b", - "editorBracketHighlight.foreground5": "#c27e00", - "editorBracketHighlight.foreground6": "#ffb432", - "editorBracketHighlight.unexpectedBracket.foreground": "#f5564d", + "editor.foreground": "#c6c6cb", + "editorLineNumber.foreground": "#5f606d", + "editorLineNumber.activeForeground": "#767882", + "editorCursor.foreground": "#92929b", + "editor.selectionBackground": "#1b1b2a", + "editor.inactiveSelectionBackground": "#1b1b2a", + "editor.selectionHighlightBackground": "#0b0c19", + "editor.wordHighlightBackground": "#1b1b2a", + "editor.wordHighlightStrongBackground": "#5f606d", + "editor.findMatchBackground": "#ca8400", + "editor.findMatchHighlightBackground": "#ca8400", + "editor.findRangeHighlightBackground": "#0b0c19", + "searchEditor.findMatchBackground": "#ca8400", + "editor.hoverHighlightBackground": "#1b1b2a", + "editor.lineHighlightBackground": "#0b0c19", + "editorLink.activeForeground": "#009dd7", + "editor.rangeHighlightBackground": "#0b0c19", + "editorWhitespace.foreground": "#5f606d", + "editorIndentGuide.background": "#1b1b2a", + "editorIndentGuide.activeBackground": "#1b1b2a", + "editorInlayHint.background": "#0b0c19", + "editorInlayHint.foreground": "#5f606d", + "editorInlayHint.typeForeground": "#5f606d", + "editorInlayHint.typeBackground": "#0b0c19", + "editorInlayHint.parameterForeground": "#5f606d", + "editorInlayHint.parameterBackground": "#0b0c19", + "editorRuler.foreground": "#1b1b2a", + "editorCodeLens.foreground": "#1b1b2a", + "editorLightBulb.foreground": "#ca8400", + "editorLightBulbAutoFix.foreground": "#009dd7", + "editorBracketMatch.background": "#1b1b2a", + "editorBracketHighlight.foreground1": "#9287e4", + "editorBracketHighlight.foreground2": "#009dd7", + "editorBracketHighlight.foreground3": "#00a49c", + "editorBracketHighlight.foreground4": "#00a94f", + "editorBracketHighlight.foreground5": "#ca8400", + "editorBracketHighlight.foreground6": "#ffba40", + "editorBracketHighlight.unexpectedBracket.foreground": "#fa5f54", "editorOverviewRuler.border": "#00000000", - "editorOverviewRuler.findMatchForeground": "#c27e00", - "editorOverviewRuler.rangeHighlightForeground": "#595a67", - "editorOverviewRuler.selectionHighlightForeground": "#141423", - "editorOverviewRuler.wordHighlightForeground": "#a6a6ae", - "editorOverviewRuler.wordHighlightStrongForeground": "#8c81dc", - "editorOverviewRuler.modifiedForeground": "#8c81dc", - "editorOverviewRuler.addedForeground": "#00a24b", - "editorOverviewRuler.deletedForeground": "#f5564d", - "editorOverviewRuler.errorForeground": "#f5564d", - "editorOverviewRuler.warningForeground": "#c27e00", - "editorOverviewRuler.infoForeground": "#0097ce", - "editorOverviewRuler.bracketMatchForeground": "#8b8c96", - "editorError.foreground": "#f5564d", - "editorWarning.foreground": "#c27e00", - "editorInfo.foreground": "#8c81dc", - "editorHint.foreground": "#0097ce", - "problemsErrorIcon.foreground": "#f5564d", - "problemsWarningIcon.foreground": "#c27e00", - "problemsInfoIcon.foreground": "#0097ce", + "editorOverviewRuler.findMatchForeground": "#ca8400", + "editorOverviewRuler.rangeHighlightForeground": "#5f606d", + "editorOverviewRuler.selectionHighlightForeground": "#1b1b2a", + "editorOverviewRuler.wordHighlightForeground": "#c6c6cb", + "editorOverviewRuler.wordHighlightStrongForeground": "#9287e4", + "editorOverviewRuler.modifiedForeground": "#9287e4", + "editorOverviewRuler.addedForeground": "#00a94f", + "editorOverviewRuler.deletedForeground": "#fa5f54", + "editorOverviewRuler.errorForeground": "#fa5f54", + "editorOverviewRuler.warningForeground": "#ca8400", + "editorOverviewRuler.infoForeground": "#009dd7", + "editorOverviewRuler.bracketMatchForeground": "#ababb3", + "editorError.foreground": "#fa5f54", + "editorWarning.foreground": "#ca8400", + "editorInfo.foreground": "#9287e4", + "editorHint.foreground": "#009dd7", + "problemsErrorIcon.foreground": "#fa5f54", + "problemsWarningIcon.foreground": "#ca8400", + "problemsInfoIcon.foreground": "#009dd7", "editorGutter.background": "#060613", - "editorGutter.modifiedBackground": "#8c81dc", - "editorGutter.addedBackground": "#00a24b", - "editorGutter.deletedBackground": "#f5564d", - "editorGutter.commentRangeForeground": "#595a67", - "editorGutter.foldingControlForeground": "#72737e", - "diffEditor.insertedTextBackground": "#00a24b60", - "diffEditor.removedTextBackground": "#f5564d60", - "diffEditor.border": "#141423", - "diffEditor.diagonalFill": "#141423", - "diffEditor.insertedLineBackground": "#00a24b30", - "diffEditor.removedLineBackground": "#f5564d30", - "diffEditorGutter.insertedLineBackground": "#00a24b30", - "diffEditorGutter.removedLineBackground": "#f5564d30", - "diffEditorOverview.insertedForeground": "#00a24b60", - "diffEditorOverview.removedForeground": "#f5564d60", + "editorGutter.modifiedBackground": "#9287e4", + "editorGutter.addedBackground": "#00a94f", + "editorGutter.deletedBackground": "#fa5f54", + "editorGutter.commentRangeForeground": "#767882", + "editorGutter.foldingControlForeground": "#92929b", + "diffEditor.insertedTextBackground": "#00a94f60", + "diffEditor.removedTextBackground": "#fa5f5460", + "diffEditor.border": "#1b1b2a", + "diffEditor.diagonalFill": "#1b1b2a", + "diffEditor.insertedLineBackground": "#00a94f30", + "diffEditor.removedLineBackground": "#fa5f5430", + "diffEditorGutter.insertedLineBackground": "#00a94f30", + "diffEditorGutter.removedLineBackground": "#fa5f5430", + "diffEditorOverview.insertedForeground": "#00a94f60", + "diffEditorOverview.removedForeground": "#fa5f5460", "diffEditor.unchangedRegionShadow": "#00000000", - "chat.requestBorder": "#141423", - "chat.requestBackground": "#090917", - "chat.slashCommandBackground": "#8c81dc", + "chat.requestBorder": "#1b1b2a", + "chat.requestBackground": "#0b0c19", + "chat.slashCommandBackground": "#9287e4", "chat.slashCommandForeground": "#060613", - "chat.avatarBackground": "#8c81dc", + "chat.avatarBackground": "#9287e4", "chat.avatarForeground": "#060613", - "inlineChat.background": "#090917", - "inlineChat.border": "#141423", + "inlineChat.background": "#0b0c19", + "inlineChat.border": "#1b1b2a", "inlineChat.shadow": "#00000000", - "inlineChat.regionHighlight": "#090917", - "inlineChatInput.border": "#141423", - "inlineChatInput.focusBorder": "#8c81dc", - "inlineChatInput.placeholderForeground": "#595a67", + "inlineChat.regionHighlight": "#0b0c19", + "inlineChatInput.border": "#1b1b2a", + "inlineChatInput.focusBorder": "#9287e4", + "inlineChatInput.placeholderForeground": "#5f606d", "inlineChatInput.background": "#060613", - "inlineChatDiff.inserted": "#00a24b60", - "inlineChatDiff.removed": "#f5564d60", - "editorWidget.foreground": "#a6a6ae", + "inlineChatDiff.inserted": "#00a94f60", + "inlineChatDiff.removed": "#fa5f5460", + "editorWidget.foreground": "#c6c6cb", "editorWidget.background": "#060613", - "editorWidget.border": "#141423", - "editorWidget.resizeBorder": "#8c81dc", - "editorSuggestWidget.background": "#090917", - "editorSuggestWidget.border": "#141423", - "editorSuggestWidget.foreground": "#a6a6ae", - "editorSuggestWidget.focusHighlightForeground": "#8c81dc", - "editorSuggestWidget.highlightForeground": "#8c81dc", - "editorSuggestWidget.selectedBackground": "#141423", - "editorSuggestWidget.selectedForeground": "#a6a6ae", - "editorSuggestWidget.selectedIconForeground": "#a6a6ae", - "editorHoverWidget.foreground": "#a6a6ae", - "editorHoverWidget.background": "#090917", - "editorHoverWidget.border": "#141423", - "editorHoverWidget.highlightForeground": "#8c81dc", - "editorHoverWidget.statusBarBackground": "#090917", + "editorWidget.border": "#1b1b2a", + "editorWidget.resizeBorder": "#9287e4", + "editorSuggestWidget.background": "#0b0c19", + "editorSuggestWidget.border": "#1b1b2a", + "editorSuggestWidget.foreground": "#c6c6cb", + "editorSuggestWidget.focusHighlightForeground": "#9287e4", + "editorSuggestWidget.highlightForeground": "#9287e4", + "editorSuggestWidget.selectedBackground": "#1b1b2a", + "editorSuggestWidget.selectedForeground": "#c6c6cb", + "editorSuggestWidget.selectedIconForeground": "#c6c6cb", + "editorHoverWidget.foreground": "#c6c6cb", + "editorHoverWidget.background": "#0b0c19", + "editorHoverWidget.border": "#1b1b2a", + "editorHoverWidget.highlightForeground": "#9287e4", + "editorHoverWidget.statusBarBackground": "#0b0c19", "editorGhostText.background": "#00000000", - "editorGhostText.foreground": "#595a67", + "editorGhostText.foreground": "#5f606d", "editorStickyScroll.background": "#060613", - "editorStickyScroll.border": "#141423", + "editorStickyScroll.border": "#1b1b2a", "editorStickyScroll.shadow": "#00000000", - "editorStickyScrollHover.background": "#090917", - "debugExceptionWidget.background": "#090917", - "editorMarkerNavigation.background": "#090917", - "editorMarkerNavigationError.background": "#f5564d", - "editorMarkerNavigationWarning.background": "#c27e00", - "editorMarkerNavigationInfo.background": "#0097ce", - "editorMarkerNavigationError.headerBackground": "#f5564d20", - "editorMarkerNavigationWarning.headerBackground": "#c27e0020", - "editorMarkerNavigationInfo.headerBackground": "#0097ce20", - "peekViewEditor.background": "#090917", - "peekViewEditorGutter.background": "#090917", - "peekViewEditor.matchHighlightBackground": "#c27e00", + "editorStickyScrollHover.background": "#0b0c19", + "debugExceptionWidget.background": "#0b0c19", + "editorMarkerNavigation.background": "#0b0c19", + "editorMarkerNavigationError.background": "#fa5f54", + "editorMarkerNavigationWarning.background": "#ca8400", + "editorMarkerNavigationInfo.background": "#009dd7", + "editorMarkerNavigationError.headerBackground": "#fa5f5420", + "editorMarkerNavigationWarning.headerBackground": "#ca840020", + "editorMarkerNavigationInfo.headerBackground": "#009dd720", + "peekViewEditor.background": "#0b0c19", + "peekViewEditorGutter.background": "#0b0c19", + "peekViewEditor.matchHighlightBackground": "#ca8400", "peekViewResult.background": "#060613", - "peekViewResult.fileForeground": "#a6a6ae", - "peekViewResult.lineForeground": "#595a67", - "peekViewResult.matchHighlightBackground": "#c27e00", - "peekViewResult.selectionBackground": "#141423", - "peekViewResult.selectionForeground": "#a6a6ae", - "peekViewTitle.background": "#141423", - "peekViewTitleDescription.foreground": "#595a67", - "peekViewTitleLabel.foreground": "#a6a6ae", - "merge.currentHeaderBackground": "#0097ce40", - "merge.currentContentBackground": "#0097ce40", - "merge.incomingHeaderBackground": "#00a24b60", - "merge.incomingContentBackground": "#00a24b60", - "editorOverviewRuler.currentContentForeground": "#0097ce", - "editorOverviewRuler.incomingContentForeground": "#00a24b", - "editorOverviewRuler.commonContentForeground": "#c27e00", - "mergeEditor.conflict.unhandledFocused.border": "#0097ce", - "mergeEditor.conflict.handledFocused.border": "#0097ce", - "panel.background": "#090917", + "peekViewResult.fileForeground": "#c6c6cb", + "peekViewResult.lineForeground": "#5f606d", + "peekViewResult.matchHighlightBackground": "#ca8400", + "peekViewResult.selectionBackground": "#1b1b2a", + "peekViewResult.selectionForeground": "#c6c6cb", + "peekViewTitle.background": "#1b1b2a", + "peekViewTitleDescription.foreground": "#5f606d", + "peekViewTitleLabel.foreground": "#c6c6cb", + "merge.currentHeaderBackground": "#009dd740", + "merge.currentContentBackground": "#009dd740", + "merge.incomingHeaderBackground": "#00a94f60", + "merge.incomingContentBackground": "#00a94f60", + "editorOverviewRuler.currentContentForeground": "#009dd7", + "editorOverviewRuler.incomingContentForeground": "#00a94f", + "editorOverviewRuler.commonContentForeground": "#ca8400", + "mergeEditor.conflict.unhandledFocused.border": "#009dd7", + "mergeEditor.conflict.handledFocused.border": "#009dd7", + "panel.background": "#0b0c19", "panel.border": "#00000000", - "panel.dropBorder": "#090917", - "panelTitle.activeForeground": "#a6a6ae", - "panelTitle.inactiveForeground": "#595a67", - "statusBar.background": "#090917", - "statusBar.foreground": "#8b8c96", - "statusBar.debuggingBackground": "#c27e00", + "panel.dropBorder": "#0b0c19", + "panelTitle.activeForeground": "#c6c6cb", + "panelTitle.inactiveForeground": "#5f606d", + "statusBar.background": "#0b0c19", + "statusBar.foreground": "#ababb3", + "statusBar.debuggingBackground": "#ca8400", "statusBar.debuggingForeground": "#060613", - "statusBar.noFolderForeground": "#72737e", - "statusBar.noFolderBackground": "#090917", - "statusBarItem.activeBackground": "#141423", - "statusBarItem.hoverForeground": "#a6a6ae", - "statusBarItem.hoverBackground": "#141423", + "statusBar.noFolderForeground": "#92929b", + "statusBar.noFolderBackground": "#0b0c19", + "statusBarItem.activeBackground": "#1b1b2a", + "statusBarItem.hoverForeground": "#c6c6cb", + "statusBarItem.hoverBackground": "#1b1b2a", "statusBarItem.prominentForeground": "#060613", - "statusBarItem.prominentBackground": "#8c81dc", + "statusBarItem.prominentBackground": "#9287e4", "statusBarItem.prominentHoverForeground": "#060613", - "statusBarItem.prominentHoverBackground": "#8c81dcC0", - "statusBarItem.remoteBackground": "#090917", - "statusBarItem.remoteForeground": "#a6a6ae", - "statusBarItem.remoteHoverBackground": "#141423", - "statusBarItem.remoteHoverForeground": "#a6a6ae", - "statusBarItem.errorBackground": "#f5564d", + "statusBarItem.prominentHoverBackground": "#9287e4C0", + "statusBarItem.remoteBackground": "#0b0c19", + "statusBarItem.remoteForeground": "#c6c6cb", + "statusBarItem.remoteHoverBackground": "#1b1b2a", + "statusBarItem.remoteHoverForeground": "#c6c6cb", + "statusBarItem.errorBackground": "#fa5f54", "statusBarItem.errorForeground": "#060613", - "statusBarItem.errorHoverBackground": "#f5564dC0", + "statusBarItem.errorHoverBackground": "#fa5f54C0", "statusBarItem.errorHoverForeground": "#060613", - "statusBarItem.warningBackground": "#c27e00", + "statusBarItem.warningBackground": "#ca8400", "statusBarItem.warningForeground": "#060613", - "statusBarItem.warningHoverBackground": "#c27e00C0", + "statusBarItem.warningHoverBackground": "#ca8400C0", "statusBarItem.warningHoverForeground": "#060613", - "statusBarItem.compactHoverBackground": "#141423", - "statusBarItem.focusBorder": "#0097ce", - "statusBar.focusBorder": "#0097ce", - "statusBarItem.offlineBackground": "#c27e00", + "statusBarItem.compactHoverBackground": "#1b1b2a", + "statusBarItem.focusBorder": "#009dd7", + "statusBar.focusBorder": "#009dd7", + "statusBarItem.offlineBackground": "#ca8400", "statusBarItem.offlineForeground": "#060613", "statusBarItem.offlineHoverForeground": "#060613", - "statusBarItem.offlineHoverBackground": "#c27e00C0", + "statusBarItem.offlineHoverBackground": "#ca8400C0", "titleBar.activeBackground": "#060613", - "titleBar.activeForeground": "#a6a6ae", - "titleBar.inactiveBackground": "#090917", - "titleBar.inactiveForeground": "#595a67", - "menubar.selectionForeground": "#a6a6ae", - "menubar.selectionBackground": "#090917", - "menu.foreground": "#a6a6ae", - "menu.background": "#090917", - "menu.selectionForeground": "#a6a6ae", - "menu.selectionBackground": "#141423", - "menu.separatorBackground": "#141423", - "menu.border": "#141423", - "commandCenter.foreground": "#a6a6ae", - "commandCenter.activeForeground": "#a6a6ae", + "titleBar.activeForeground": "#c6c6cb", + "titleBar.inactiveBackground": "#0b0c19", + "titleBar.inactiveForeground": "#5f606d", + "menubar.selectionForeground": "#c6c6cb", + "menubar.selectionBackground": "#0b0c19", + "menu.foreground": "#c6c6cb", + "menu.background": "#0b0c19", + "menu.selectionForeground": "#c6c6cb", + "menu.selectionBackground": "#1b1b2a", + "menu.separatorBackground": "#1b1b2a", + "menu.border": "#1b1b2a", + "commandCenter.foreground": "#c6c6cb", + "commandCenter.activeForeground": "#c6c6cb", "commandCenter.background": "#060613", - "commandCenter.activeBackground": "#090917", - "notificationCenterHeader.foreground": "#a6a6ae", - "notificationCenterHeader.background": "#090917", - "notifications.foreground": "#a6a6ae", - "notifications.background": "#141423", - "notificationLink.foreground": "#0097ce", - "notificationsErrorIcon.foreground": "#f5564d", - "notificationsWarningIcon.foreground": "#c27e00", - "notificationsInfoIcon.foreground": "#0097ce", - "banner.background": "#141423", - "banner.foreground": "#a6a6ae", - "banner.iconForeground": "#0097ce", + "commandCenter.activeBackground": "#0b0c19", + "notificationCenterHeader.foreground": "#c6c6cb", + "notificationCenterHeader.background": "#0b0c19", + "notifications.foreground": "#c6c6cb", + "notifications.background": "#1b1b2a", + "notificationLink.foreground": "#009dd7", + "notificationsErrorIcon.foreground": "#fa5f54", + "notificationsWarningIcon.foreground": "#ca8400", + "notificationsInfoIcon.foreground": "#009dd7", + "banner.background": "#1b1b2a", + "banner.foreground": "#c6c6cb", + "banner.iconForeground": "#009dd7", "extensionButton.prominentForeground": "#060613", - "extensionButton.prominentBackground": "#00a24b", - "extensionButton.prominentHoverBackground": "#00a24bC0", - "extensionButton.background": "#0097ce", + "extensionButton.prominentBackground": "#00a94f", + "extensionButton.prominentHoverBackground": "#00a94fC0", + "extensionButton.background": "#009dd7", "extensionButton.foreground": "#060613", - "extensionButton.hoverBackground": "#0097ceC0", + "extensionButton.hoverBackground": "#009dd7C0", "extensionButton.separator": "#00000000", - "extensionBadge.remoteBackground": "#c27e00", - "extensionBadge.remoteForeground": "#a6a6ae", - "extensionIcon.starForeground": "#c27e00", - "extensionIcon.verifiedForeground": "#0097ce", - "extensionIcon.preReleaseForeground": "#c27e00", - "pickerGroup.border": "#141423", - "pickerGroup.foreground": "#595a67", - "quickInput.background": "#090917", - "quickInput.foreground": "#a6a6ae", - "quickInputList.focusBackground": "#141423", - "quickInputList.focusForeground": "#a6a6ae", - "quickInputList.focusIconForeground": "#a6a6ae", - "quickInputTitle.background": "#090917", - "keybindingLabel.background": "#141423", - "keybindingLabel.foreground": "#a6a6ae", - "keybindingLabel.bottomBorder": "#141423", - "keybindingTable.headerBackground": "#141423", - "keybindingTable.rowsBackground": "#090917", + "extensionBadge.remoteBackground": "#ca8400", + "extensionBadge.remoteForeground": "#c6c6cb", + "extensionIcon.starForeground": "#ca8400", + "extensionIcon.verifiedForeground": "#009dd7", + "extensionIcon.preReleaseForeground": "#ca8400", + "pickerGroup.border": "#1b1b2a", + "pickerGroup.foreground": "#5f606d", + "quickInput.background": "#0b0c19", + "quickInput.foreground": "#c6c6cb", + "quickInputList.focusBackground": "#1b1b2a", + "quickInputList.focusForeground": "#c6c6cb", + "quickInputList.focusIconForeground": "#c6c6cb", + "quickInputTitle.background": "#0b0c19", + "keybindingLabel.background": "#1b1b2a", + "keybindingLabel.foreground": "#c6c6cb", + "keybindingLabel.bottomBorder": "#1b1b2a", + "keybindingTable.headerBackground": "#1b1b2a", + "keybindingTable.rowsBackground": "#0b0c19", "terminal.background": "#060613", - "terminal.foreground": "#a6a6ae", + "terminal.foreground": "#c6c6cb", "terminal.ansiBlack": "#060613", - "terminal.ansiBlue": "#0097ce", - "terminal.ansiBrightBlack": "#595a67", - "terminal.ansiBrightBlue": "#3dd1ff", - "terminal.ansiBrightCyan": "#00d9cf", - "terminal.ansiBrightGreen": "#29de78", - "terminal.ansiBrightMagenta": "#c3baff", - "terminal.ansiBrightRed": "#ffaea2", - "terminal.ansiBrightWhite": "#a6a6ae", - "terminal.ansiBrightYellow": "#ffb432", - "terminal.ansiCyan": "#009d96", - "terminal.ansiGreen": "#00a24b", - "terminal.ansiMagenta": "#8c81dc", - "terminal.ansiRed": "#f5564d", - "terminal.ansiWhite": "#a6a6ae", - "terminal.ansiYellow": "#c27e00", - "terminalCursor.foreground": "#72737e", + "terminal.ansiBlue": "#009dd7", + "terminal.ansiBrightBlack": "#5f606d", + "terminal.ansiBrightBlue": "#4bd6ff", + "terminal.ansiBrightCyan": "#14ddd3", + "terminal.ansiBrightGreen": "#34e27c", + "terminal.ansiBrightMagenta": "#c8bfff", + "terminal.ansiBrightRed": "#ffb4a9", + "terminal.ansiBrightWhite": "#c6c6cb", + "terminal.ansiBrightYellow": "#ffba40", + "terminal.ansiCyan": "#00a49c", + "terminal.ansiGreen": "#00a94f", + "terminal.ansiMagenta": "#9287e4", + "terminal.ansiRed": "#fa5f54", + "terminal.ansiWhite": "#c6c6cb", + "terminal.ansiYellow": "#ca8400", + "terminalCursor.foreground": "#92929b", "terminalOverviewRuler.cursorForeground": "#ff0000", "terminalOverviewRuler.findMatchForeground": "#ff0000", - "debugToolBar.background": "#090917", - "debugView.stateLabelForeground": "#a6a6ae", - "debugView.stateLabelBackground": "#0097ce", - "debugView.valueChangedHighlight": "#0097ce", - "debugTokenExpression.name": "#8c81dc", - "debugTokenExpression.value": "#a6a6ae", - "debugTokenExpression.string": "#00a24b", - "debugTokenExpression.boolean": "#c27e00", - "debugTokenExpression.number": "#c27e00", - "debugTokenExpression.error": "#f5564d", - "testing.iconFailed": "#f5564d", - "testing.iconErrored": "#c27e00", - "testing.iconPassed": "#00a24b", - "testing.runAction": "#595a67", - "testing.iconQueued": "#c27e00", - "testing.iconUnset": "#595a67", - "testing.iconSkipped": "#8c81dc", - "testing.peekHeaderBackground": "#090917", - "testing.message.error.decorationForeground": "#a6a6ae", - "testing.message.error.lineBackground": "#f5564d20", - "testing.message.info.decorationForeground": "#a6a6ae", - "testing.message.info.lineBackground": "#0097ce20", + "debugToolBar.background": "#0b0c19", + "debugView.stateLabelForeground": "#c6c6cb", + "debugView.stateLabelBackground": "#009dd7", + "debugView.valueChangedHighlight": "#009dd7", + "debugTokenExpression.name": "#9287e4", + "debugTokenExpression.value": "#c6c6cb", + "debugTokenExpression.string": "#00a94f", + "debugTokenExpression.boolean": "#ca8400", + "debugTokenExpression.number": "#ca8400", + "debugTokenExpression.error": "#fa5f54", + "testing.iconFailed": "#fa5f54", + "testing.iconErrored": "#ca8400", + "testing.iconPassed": "#00a94f", + "testing.runAction": "#767882", + "testing.iconQueued": "#ca8400", + "testing.iconUnset": "#767882", + "testing.iconSkipped": "#9287e4", + "testing.peekHeaderBackground": "#0b0c19", + "testing.message.error.decorationForeground": "#c6c6cb", + "testing.message.error.lineBackground": "#fa5f5420", + "testing.message.info.decorationForeground": "#c6c6cb", + "testing.message.info.lineBackground": "#009dd720", "welcomePage.background": "#060613", - "welcomePage.progress.background": "#595a67", - "welcomePage.progress.foreground": "#0097ce", - "welcomePage.tileBackground": "#090917", - "welcomePage.tileHoverBackground": "#141423", + "welcomePage.progress.background": "#5f606d", + "welcomePage.progress.foreground": "#009dd7", + "welcomePage.tileBackground": "#0b0c19", + "welcomePage.tileHoverBackground": "#1b1b2a", "walkThrough.embeddedEditorBackground": "#060613", - "gitDecoration.addedResourceForeground": "#00a24b", - "gitDecoration.modifiedResourceForeground": "#8c81dc", - "gitDecoration.deletedResourceForeground": "#f5564d", - "gitDecoration.renamedResourceForeground": "#009d96", - "gitDecoration.stageModifiedResourceForeground": "#8c81dc", - "gitDecoration.stageDeletedResourceForeground": "#f5564d", - "gitDecoration.untrackedResourceForeground": "#c27e00", - "gitDecoration.ignoredResourceForeground": "#595a67", - "gitDecoration.conflictingResourceForeground": "#c27e00", - "gitDecoration.submoduleResourceForeground": "#c27e00", - "settings.headerForeground": "#a6a6ae", - "settings.modifiedItemIndicator": "#0097ce", - "settings.dropdownBackground": "#090917", - "settings.dropdownForeground": "#a6a6ae", - "settings.checkboxBackground": "#090917", - "settings.checkboxForeground": "#a6a6ae", - "settings.rowHoverBackground": "#141423", - "settings.textInputBackground": "#090917", - "settings.textInputForeground": "#a6a6ae", - "settings.numberInputBackground": "#090917", - "settings.numberInputForeground": "#a6a6ae", - "settings.focusedRowBackground": "#141423", - "settings.focusedRowBorder": "#0097ce", - "settings.headerBorder": "#a6a6ae", - "settings.sashBorder": "#a6a6ae", - "breadcrumb.foreground": "#72737e", - "breadcrumb.background": "#090917", - "breadcrumb.focusForeground": "#8b8c96", - "breadcrumb.activeSelectionForeground": "#a6a6ae", - "breadcrumbPicker.background": "#090917", - "editor.snippetTabstopHighlightBackground": "#141423", - "editor.snippetFinalTabstopHighlightBackground": "#595a67", - "symbolIcon.arrayForeground": "#a6a6ae", - "symbolIcon.booleanForeground": "#c27e00", - "symbolIcon.classForeground": "#c27e00", - "symbolIcon.colorForeground": "#a6a6ae", - "symbolIcon.constantForeground": "#c27e00", - "symbolIcon.constructorForeground": "#0097ce", - "symbolIcon.enumeratorForeground": "#c27e00", - "symbolIcon.enumeratorMemberForeground": "#0097ce", - "symbolIcon.eventForeground": "#c27e00", - "symbolIcon.fieldForeground": "#f5564d", - "symbolIcon.fileForeground": "#a6a6ae", - "symbolIcon.folderForeground": "#a6a6ae", - "symbolIcon.functionForeground": "#0097ce", - "symbolIcon.interfaceForeground": "#0097ce", - "symbolIcon.keyForeground": "#a6a6ae", - "symbolIcon.keywordForeground": "#8c81dc", - "symbolIcon.methodForeground": "#0097ce", - "symbolIcon.moduleForeground": "#a6a6ae", - "symbolIcon.namespaceForeground": "#a6a6ae", - "symbolIcon.numberForeground": "#c27e00", - "symbolIcon.objectForeground": "#a6a6ae", - "symbolIcon.operatorForeground": "#a6a6ae", - "symbolIcon.packageForeground": "#a6a6ae", - "symbolIcon.propertyForeground": "#a6a6ae", - "symbolIcon.referenceForeground": "#a6a6ae", - "symbolIcon.snippetForeground": "#a6a6ae", - "symbolIcon.stringForeground": "#00a24b", - "symbolIcon.structForeground": "#c27e00", - "symbolIcon.textForeground": "#a6a6ae", - "symbolIcon.typeParameterForeground": "#a6a6ae", - "symbolIcon.unitForeground": "#a6a6ae", - "symbolIcon.variableForeground": "#f5564d", - "debugIcon.breakpointForeground": "#f5564d", - "debugIcon.breakpointDisabledForeground": "#595a67", - "debugIcon.breakpointUnverifiedForeground": "#141423", - "debugIcon.breakpointCurrentStackframeForeground": "#c27e00", - "debugIcon.breakpointStackframeForeground": "#c27e00", - "debugIcon.startForeground": "#00a24b", - "debugIcon.pauseForeground": "#0097ce", - "debugIcon.stopForeground": "#f5564d", - "debugIcon.disconnectForeground": "#f5564d", - "debugIcon.restartForeground": "#00a24b", - "debugIcon.stepOverForeground": "#0097ce", - "debugIcon.stepIntoForeground": "#009d96", - "debugIcon.stepOutForeground": "#8c81dc", - "debugIcon.continueForeground": "#00a24b", - "debugIcon.stepBackForeground": "#c27e00", - "debugConsole.infoForeground": "#a6a6ae", - "debugConsole.warningForeground": "#c27e00", - "debugConsole.errorForeground": "#f5564d", - "debugConsole.sourceForeground": "#a6a6ae", - "debugConsoleInputIcon.foreground": "#a6a6ae", + "gitDecoration.addedResourceForeground": "#00a94f", + "gitDecoration.modifiedResourceForeground": "#9287e4", + "gitDecoration.deletedResourceForeground": "#fa5f54", + "gitDecoration.renamedResourceForeground": "#00a49c", + "gitDecoration.stageModifiedResourceForeground": "#9287e4", + "gitDecoration.stageDeletedResourceForeground": "#fa5f54", + "gitDecoration.untrackedResourceForeground": "#ca8400", + "gitDecoration.ignoredResourceForeground": "#5f606d", + "gitDecoration.conflictingResourceForeground": "#ca8400", + "gitDecoration.submoduleResourceForeground": "#ca8400", + "settings.headerForeground": "#c6c6cb", + "settings.modifiedItemIndicator": "#009dd7", + "settings.dropdownBackground": "#0b0c19", + "settings.dropdownForeground": "#c6c6cb", + "settings.checkboxBackground": "#0b0c19", + "settings.checkboxForeground": "#c6c6cb", + "settings.rowHoverBackground": "#1b1b2a", + "settings.textInputBackground": "#0b0c19", + "settings.textInputForeground": "#c6c6cb", + "settings.numberInputBackground": "#0b0c19", + "settings.numberInputForeground": "#c6c6cb", + "settings.focusedRowBackground": "#1b1b2a", + "settings.focusedRowBorder": "#009dd7", + "settings.headerBorder": "#c6c6cb", + "settings.sashBorder": "#c6c6cb", + "breadcrumb.foreground": "#92929b", + "breadcrumb.background": "#0b0c19", + "breadcrumb.focusForeground": "#ababb3", + "breadcrumb.activeSelectionForeground": "#c6c6cb", + "breadcrumbPicker.background": "#0b0c19", + "editor.snippetTabstopHighlightBackground": "#1b1b2a", + "editor.snippetFinalTabstopHighlightBackground": "#5f606d", + "symbolIcon.arrayForeground": "#c6c6cb", + "symbolIcon.booleanForeground": "#ca8400", + "symbolIcon.classForeground": "#ca8400", + "symbolIcon.colorForeground": "#c6c6cb", + "symbolIcon.constantForeground": "#ca8400", + "symbolIcon.constructorForeground": "#009dd7", + "symbolIcon.enumeratorForeground": "#ca8400", + "symbolIcon.enumeratorMemberForeground": "#009dd7", + "symbolIcon.eventForeground": "#ca8400", + "symbolIcon.fieldForeground": "#fa5f54", + "symbolIcon.fileForeground": "#c6c6cb", + "symbolIcon.folderForeground": "#c6c6cb", + "symbolIcon.functionForeground": "#009dd7", + "symbolIcon.interfaceForeground": "#009dd7", + "symbolIcon.keyForeground": "#c6c6cb", + "symbolIcon.keywordForeground": "#9287e4", + "symbolIcon.methodForeground": "#009dd7", + "symbolIcon.moduleForeground": "#c6c6cb", + "symbolIcon.namespaceForeground": "#c6c6cb", + "symbolIcon.numberForeground": "#ca8400", + "symbolIcon.objectForeground": "#c6c6cb", + "symbolIcon.operatorForeground": "#c6c6cb", + "symbolIcon.packageForeground": "#c6c6cb", + "symbolIcon.propertyForeground": "#c6c6cb", + "symbolIcon.referenceForeground": "#c6c6cb", + "symbolIcon.snippetForeground": "#c6c6cb", + "symbolIcon.stringForeground": "#00a94f", + "symbolIcon.structForeground": "#ca8400", + "symbolIcon.textForeground": "#c6c6cb", + "symbolIcon.typeParameterForeground": "#c6c6cb", + "symbolIcon.unitForeground": "#c6c6cb", + "symbolIcon.variableForeground": "#fa5f54", + "debugIcon.breakpointForeground": "#fa5f54", + "debugIcon.breakpointDisabledForeground": "#767882", + "debugIcon.breakpointUnverifiedForeground": "#1b1b2a", + "debugIcon.breakpointCurrentStackframeForeground": "#ca8400", + "debugIcon.breakpointStackframeForeground": "#ca8400", + "debugIcon.startForeground": "#00a94f", + "debugIcon.pauseForeground": "#009dd7", + "debugIcon.stopForeground": "#fa5f54", + "debugIcon.disconnectForeground": "#fa5f54", + "debugIcon.restartForeground": "#00a94f", + "debugIcon.stepOverForeground": "#009dd7", + "debugIcon.stepIntoForeground": "#00a49c", + "debugIcon.stepOutForeground": "#9287e4", + "debugIcon.continueForeground": "#00a94f", + "debugIcon.stepBackForeground": "#ca8400", + "debugConsole.infoForeground": "#c6c6cb", + "debugConsole.warningForeground": "#ca8400", + "debugConsole.errorForeground": "#fa5f54", + "debugConsole.sourceForeground": "#c6c6cb", + "debugConsoleInputIcon.foreground": "#c6c6cb", "notebook.editorBackground": "#060613", - "notebook.cellBorderColor": "#595a67", - "notebook.cellHoverBackground": "#090917", - "notebook.cellToolbarSeparator": "#141423", + "notebook.cellBorderColor": "#5f606d", + "notebook.cellHoverBackground": "#0b0c19", + "notebook.cellToolbarSeparator": "#1b1b2a", "notebook.cellEditorBackground": "#060613", - "notebook.focusedCellBackground": "#141423", - "notebook.focusedCellBorder": "#0097ce", - "notebook.focusedEditorBorder": "#0097ce", - "notebook.inactiveFocusedCellBorder": "#595a67", - "notebook.selectedCellBackground": "#141423", - "notebookStatusErrorIcon.foreground": "#f5564d", - "notebookStatusRunningIcon.foreground": "#8c81dc", - "notebookStatusSuccessIcon.foreground": "#00a24b", - "charts.foreground": "#a6a6ae", - "charts.lines": "#a6a6ae", - "charts.red": "#f5564d", - "charts.blue": "#0097ce", + "notebook.focusedCellBackground": "#1b1b2a", + "notebook.focusedCellBorder": "#009dd7", + "notebook.focusedEditorBorder": "#009dd7", + "notebook.inactiveFocusedCellBorder": "#5f606d", + "notebook.selectedCellBackground": "#1b1b2a", + "notebookStatusErrorIcon.foreground": "#fa5f54", + "notebookStatusRunningIcon.foreground": "#9287e4", + "notebookStatusSuccessIcon.foreground": "#00a94f", + "charts.foreground": "#c6c6cb", + "charts.lines": "#c6c6cb", + "charts.red": "#fa5f54", + "charts.blue": "#009dd7", "charts.yellow": "#", - "charts.orange": "#c27e00", - "charts.green": "#00a24b", - "charts.purple": "#8c81dc", - "ports.iconRunningProcessForeground": "#c27e00", + "charts.orange": "#ca8400", + "charts.green": "#00a94f", + "charts.purple": "#9287e4", + "ports.iconRunningProcessForeground": "#ca8400", }, "tokenColors": [ { @@ -530,7 +530,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#595a67" + "foreground": "#5f606d" } }, { @@ -543,7 +543,7 @@ "variable.parameter" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -552,7 +552,7 @@ "variable.other.object.property" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -561,7 +561,7 @@ "constant.other.color" ], "settings": { - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -571,7 +571,7 @@ "invalid.illegal" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -603,7 +603,7 @@ "storage.modifier" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -613,7 +613,7 @@ "keyword.control.flow", ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -624,7 +624,7 @@ "keyword.control.as" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -634,7 +634,7 @@ "storage.type.primitive" ], "settings": { - "foreground": "#009d96" + "foreground": "#00a49c" } }, { @@ -644,7 +644,7 @@ "meta.type.annotation" ], "settings": { - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -654,7 +654,7 @@ "meta.function-call" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -673,7 +673,7 @@ "keyword.other.substitution" ], "settings": { - "foreground": "#72737e" + "foreground": "#92929b" } }, { @@ -683,7 +683,7 @@ "variable.interpolation" ], "settings": { - "foreground": "#c27e00" + "foreground": "#ca8400" } }, { @@ -694,7 +694,7 @@ "markup.deleted.git_gutter" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -707,7 +707,7 @@ "keyword.other.special-method" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -716,7 +716,7 @@ "meta.block variable.other" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -726,7 +726,7 @@ "string.other.link" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -740,7 +740,7 @@ "keyword.other.unit" ], "settings": { - "foreground": "#c27e00" + "foreground": "#ca8400" } }, { @@ -756,7 +756,7 @@ ], "settings": { "fontStyle": "", - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -772,7 +772,7 @@ "support.type.sys-types" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -781,7 +781,7 @@ "meta.object-literal.key", ], "settings": { - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -792,7 +792,7 @@ "storage.modifier.import" ], "settings": { - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -801,7 +801,7 @@ "entity.name.variable.field" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -810,7 +810,7 @@ "support.type" ], "settings": { - "foreground": "#009d96" + "foreground": "#00a49c" } }, { @@ -824,7 +824,7 @@ "source.postcss support.type.property-name" ], "settings": { - "foreground": "#009d96" + "foreground": "#00a49c" } }, { @@ -835,7 +835,7 @@ "variable.other.class.js" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -845,7 +845,7 @@ ], "settings": { "fontStyle": "italic bold", - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -855,7 +855,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -865,7 +865,7 @@ "variable.function.constructor" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -874,7 +874,7 @@ "entity.other.attribute-name" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -885,7 +885,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#c27e00" + "foreground": "#ca8400" } }, { @@ -894,7 +894,7 @@ "entity.other.attribute-name.class" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -903,7 +903,7 @@ "source.sass keyword.control" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -912,7 +912,7 @@ "markup.inserted" ], "settings": { - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -921,7 +921,7 @@ "markup.deleted" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -930,7 +930,7 @@ "markup.changed" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -939,7 +939,7 @@ "string.regexp" ], "settings": { - "foreground": "#00a24b" + "foreground": "#00a94f" } }, { @@ -948,7 +948,7 @@ "constant.character.escape" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -970,7 +970,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -980,7 +980,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -989,7 +989,7 @@ "source.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -998,7 +998,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1007,7 +1007,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1016,7 +1016,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1025,7 +1025,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1034,7 +1034,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1043,7 +1043,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1052,7 +1052,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1061,7 +1061,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1071,7 +1071,7 @@ "punctuation.definition.list_item.markdown" ], "settings": { - "foreground": "#72737e" + "foreground": "#92929b" } }, { @@ -1080,7 +1080,7 @@ "text.html.markdown markup.inline.raw.markdown" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -1089,7 +1089,7 @@ "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" ], "settings": { - "foreground": "#009d96" + "foreground": "#00a49c" } }, { @@ -1098,7 +1098,7 @@ "text.html.markdown meta.dummy.line-break" ], "settings": { - "foreground": "#595a67" + "foreground": "#5f606d" } }, { @@ -1109,7 +1109,7 @@ "markup.heading.markdown punctuation.definition.heading.markdown" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1119,7 +1119,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -1139,7 +1139,7 @@ ], "settings": { "fontStyle": "bold", - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -1154,7 +1154,7 @@ ], "settings": { "fontStyle": "bold", - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -1163,7 +1163,7 @@ "markup.quote punctuation.definition.blockquote.markdown" ], "settings": { - "foreground": "#009d96" + "foreground": "#00a49c" } }, { @@ -1181,7 +1181,7 @@ "string.other.link.title.markdown" ], "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { @@ -1190,7 +1190,7 @@ "string.other.link.description.title.markdown" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -1199,7 +1199,7 @@ "constant.other.reference.link.markdown" ], "settings": { - "foreground": "#c27e00" + "foreground": "#ca8400" } }, { @@ -1208,7 +1208,7 @@ "markup.raw.block" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -1236,7 +1236,7 @@ "variable.language.fenced.markdown" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { @@ -1245,7 +1245,7 @@ "variable.language.fenced.markdown" ], "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { @@ -1255,7 +1255,7 @@ ], "settings": { "fontStyle": "bold", - "foreground": "#009d96" + "foreground": "#00a49c" } }, { @@ -1264,100 +1264,100 @@ "markup.table" ], "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } }, { "scope": "token.info-token", "settings": { - "foreground": "#0097ce" + "foreground": "#009dd7" } }, { "scope": "token.warn-token", "settings": { - "foreground": "#c27e00" + "foreground": "#ca8400" } }, { "scope": "token.error-token", "settings": { - "foreground": "#f5564d" + "foreground": "#fa5f54" } }, { "scope": "token.debug-token", "settings": { - "foreground": "#8c81dc" + "foreground": "#9287e4" } } ], "semanticHighlighting": true, "semanticTokenColors": { - "namespace": "#00a24b", - "class": "#0097ce", - "class.abstract": "#c27e00", - "enum": "#00a24b", - "interface": "#c27e00", - "struct": "#0097ce", - "typeParameter": "#00a24b", - "type": "#0097ce", - "parameter": "#8c81dc", - "variable": "#8c81dc", - "property": "#8c81dc", - "enumMember": "#00a24b", - "decorator": "#0097ce", - "event": "#0097ce", - "punct": "#8c81dc", - "punctuation": "#8c81dc", - "escapeSequence": "#f5564d", + "namespace": "#00a94f", + "class": "#009dd7", + "class.abstract": "#ca8400", + "enum": "#00a94f", + "interface": "#ca8400", + "struct": "#009dd7", + "typeParameter": "#00a94f", + "type": "#009dd7", + "parameter": "#9287e4", + "variable": "#9287e4", + "property": "#9287e4", + "enumMember": "#00a94f", + "decorator": "#009dd7", + "event": "#009dd7", + "punct": "#9287e4", + "punctuation": "#9287e4", + "escapeSequence": "#fa5f54", "function": { - "foreground": "#0097ce", + "foreground": "#009dd7", "italic": true }, "function.declaration": { - "foreground": "#8c81dc", + "foreground": "#9287e4", "italic": false, "bold": true }, "function.declaration.async": { - "foreground": "#c27e00", + "foreground": "#ca8400", "italic": false, "bold": true }, "method.declaration": { - "foreground": "#0097ce", + "foreground": "#009dd7", "italic": false, "bold": true }, "method.declaration.async": { - "foreground": "#c27e00", + "foreground": "#ca8400", "italic": false, "bold": true }, "method": { - "foreground": "#0097ce", + "foreground": "#009dd7", "italic": true }, - "macro": "#0097ce", - "label": "#8b8c96", + "macro": "#009dd7", + "label": "#ababb3", "comment": { - "foreground": "#595a67", + "foreground": "#5f606d", "italic": true }, - "string": "#00a24b", + "string": "#00a94f", "keyword": { - "foreground": "#0097ce", + "foreground": "#009dd7", "italic": true }, - "selfKeyword": "#8c81dc", - "number": "#c27e00", - "regexp": "#c27e00", - "boolean": "#c27e00", - "bool": "#c27e00", - "const": "#c27e00", - "constant": "#c27e00", - "operator": "#72737e", + "selfKeyword": "#9287e4", + "number": "#ca8400", + "regexp": "#ca8400", + "boolean": "#ca8400", + "bool": "#ca8400", + "const": "#ca8400", + "constant": "#ca8400", + "operator": "#92929b", "*.declaration": { "bold": true }, @@ -1370,10 +1370,10 @@ "enumMember.declaration": { "bold": false }, - "*.async": "#c27e00", - "unresolvedReference": "#f5564d", - "variable.defaultLibrary": "#00a24b", - "variable.builtin": "#00a24b", + "*.async": "#ca8400", + "unresolvedReference": "#fa5f54", + "variable.defaultLibrary": "#00a94f", + "variable.builtin": "#00a94f", "*.emph": { "italic": true } diff --git a/build/vscode/kleur-code-0.3.0.vsix b/build/vscode/kleur-code-0.3.0.vsix index 08bda70..0587cee 100644 Binary files a/build/vscode/kleur-code-0.3.0.vsix and b/build/vscode/kleur-code-0.3.0.vsix differ diff --git a/build/vscode/light.json b/build/vscode/light.json index ee8e326..be108fa 100644 --- a/build/vscode/light.json +++ b/build/vscode/light.json @@ -4,522 +4,522 @@ "name": "Kleur Light", "type": "dark", "colors": { - "focusBorder": "#006f9a", - "foreground": "#16161a", - "disabledForeground": "#666675", - "widget.border": "#eaebf3", + "focusBorder": "#006088", + "foreground": "#121317", + "disabledForeground": "#595967", + "widget.border": "#e7e8f0", "widget.shadow": "#00000000", - "selection.background": "#eaebf3", - "descriptionForeground": "#666675", - "errorForeground": "#c42b28", - "icon.foreground": "#006f9a", - "textBlockQuote.background": "#edeef5", - "textBlockQuote.border": "#006f9a", + "selection.background": "#e7e8f0", + "descriptionForeground": "#717282", + "errorForeground": "#af201f", + "icon.foreground": "#006088", + "textBlockQuote.background": "#ebecf4", + "textBlockQuote.border": "#006088", "textCodeBlock.background": "#eff0f8", - "textLink.activeForeground": "#675ea6", - "textLink.foreground": "#006f9a", - "textPreformat.foreground": "#006f9a", - "textSeparator.foreground": "#4a4b56", - "toolbar.hoverBackground": "#eaebf3", - "toolbar.activeBackground": "#eaebf3", - "button.background": "#006f9a", + "textLink.activeForeground": "#5a5292", + "textLink.foreground": "#006088", + "textPreformat.foreground": "#006088", + "textSeparator.foreground": "#41414c", + "toolbar.hoverBackground": "#e7e8f0", + "toolbar.activeBackground": "#e7e8f0", + "button.background": "#006088", "button.foreground": "#eff0f8", - "button.hoverBackground": "#006f9aC0", + "button.hoverBackground": "#006088C0", "button.secondaryForeground": "#eff0f8", - "button.secondaryBackground": "#675ea6", - "button.secondaryHoverBackground": "#675ea6C0", + "button.secondaryBackground": "#5a5292", + "button.secondaryHoverBackground": "#5a5292C0", "checkbox.background": "#eff0f8", - "checkbox.foreground": "#006f9a", + "checkbox.foreground": "#006088", "dropdown.background": "#eff0f8", "dropdown.listBackground": "#eff0f8", - "dropdown.foreground": "#16161a", + "dropdown.foreground": "#121317", "input.background": "#eff0f8", - "input.foreground": "#16161a", - "input.placeholderForeground": "#666675", - "inputOption.activeBackground": "#006f9a", + "input.foreground": "#121317", + "input.placeholderForeground": "#717282", + "inputOption.activeBackground": "#006088", "inputOption.activeForeground": "#eff0f8", - "inputValidation.errorBackground": "#c42b28", - "inputValidation.errorForeground": "#16161a", - "inputValidation.errorBorder": "#c42b28", - "inputValidation.infoBackground": "#006f9a", - "inputValidation.infoForeground": "#16161a", - "inputValidation.infoBorder": "#006f9a", - "inputValidation.warningBackground": "#915c00", - "inputValidation.warningForeground": "#16161a", - "inputValidation.warningBorder": "#915c00", + "inputValidation.errorBackground": "#af201f", + "inputValidation.errorForeground": "#121317", + "inputValidation.errorBorder": "#af201f", + "inputValidation.infoBackground": "#006088", + "inputValidation.infoForeground": "#121317", + "inputValidation.infoBorder": "#006088", + "inputValidation.warningBackground": "#804f00", + "inputValidation.warningForeground": "#121317", + "inputValidation.warningBorder": "#804f00", "scrollbar.shadow": "#00000000", - "scrollbarSlider.activeBackground": "#006f9a77", - "scrollbarSlider.background": "#66667533", - "scrollbarSlider.hoverBackground": "#66667577", - "badge.foreground": "#16161a", + "scrollbarSlider.activeBackground": "#00608877", + "scrollbarSlider.background": "#71728233", + "scrollbarSlider.hoverBackground": "#71728277", + "badge.foreground": "#121317", "badge.background": "#eff0f8", - "progressBar.background": "#666675", - "list.activeSelectionBackground": "#eaebf3", - "list.activeSelectionForeground": "#16161a", - "list.dropBackground": "#66667566", - "list.focusBackground": "#eaebf3", - "list.focusForeground": "#16161a", - "list.focusOutline": "#006f9a", - "list.focusAndSelectionOutline": "#006f9a", - "list.highlightForeground": "#16161a", - "list.hoverBackground": "#eaebf3", - "list.hoverForeground": "#16161a", - "list.inactiveSelectionBackground": "#eaebf3", - "list.inactiveSelectionForeground": "#16161a", - "list.inactiveFocusBackground": "#eaebf3", - "list.inactiveFocusOutline": "#666675", - "list.invalidItemForeground": "#c42b28", - "list.errorForeground": "#c42b28", - "list.warningForeground": "#915c00", + "progressBar.background": "#717282", + "list.activeSelectionBackground": "#e7e8f0", + "list.activeSelectionForeground": "#121317", + "list.dropBackground": "#71728266", + "list.focusBackground": "#e7e8f0", + "list.focusForeground": "#121317", + "list.focusOutline": "#006088", + "list.focusAndSelectionOutline": "#006088", + "list.highlightForeground": "#121317", + "list.hoverBackground": "#e7e8f0", + "list.hoverForeground": "#121317", + "list.inactiveSelectionBackground": "#e7e8f0", + "list.inactiveSelectionForeground": "#121317", + "list.inactiveFocusBackground": "#e7e8f0", + "list.inactiveFocusOutline": "#717282", + "list.invalidItemForeground": "#af201f", + "list.errorForeground": "#af201f", + "list.warningForeground": "#804f00", "listFilterWidget.background": "#eff0f8", - "listFilterWidget.noMatchesOutline": "#c42b28", + "listFilterWidget.noMatchesOutline": "#af201f", "listFilterWidget.shadow": "#00000000", - "list.filterMatchBackground": "#eaebf3", - "tree.indentGuidesStroke": "#16161a", - "activityBar.background": "#edeef5", - "activityBar.dropBorder": "#666675", - "activityBar.foreground": "#16161a", - "activityBar.inactiveForeground": "#666675", - "activityBarBadge.background": "#006f9a", + "list.filterMatchBackground": "#e7e8f0", + "tree.indentGuidesStroke": "#121317", + "activityBar.background": "#ebecf4", + "activityBar.dropBorder": "#717282", + "activityBar.foreground": "#121317", + "activityBar.inactiveForeground": "#717282", + "activityBarBadge.background": "#006088", "activityBarBadge.foreground": "#eff0f8", - "activityBar.activeBorder": "#4a4b56", - "activityBar.activeBackground": "#eaebf3", - "activityBar.activeFocusBorder": "#006f9a", - "activityBarTop.foreground": "#16161a", - "activityBarTop.activeBorder": "#006f9a", - "activityBarTop.inactiveForeground": "#666675", - "activityBarTop.dropBorder": "#666675", - "profileBadge.background": "#edeef5", - "profileBadge.foreground": "#666675", - "sideBar.background": "#edeef5", - "sideBar.foreground": "#16161a", - "sideBar.dropBackground": "#eaebf3", - "sideBarTitle.foreground": "#16161a", - "sideBarSectionHeader.background": "#edeef5", - "sideBarSectionHeader.foreground": "#16161a", - "minimap.findMatchHighlight": "#915c00", - "minimap.selectionHighlight": "#eaebf3", - "minimap.errorHighlight": "#c42b28", - "minimap.warningHighlight": "#915c00", + "activityBar.activeBorder": "#41414c", + "activityBar.activeBackground": "#e7e8f0", + "activityBar.activeFocusBorder": "#006088", + "activityBarTop.foreground": "#121317", + "activityBarTop.activeBorder": "#006088", + "activityBarTop.inactiveForeground": "#717282", + "activityBarTop.dropBorder": "#717282", + "profileBadge.background": "#ebecf4", + "profileBadge.foreground": "#717282", + "sideBar.background": "#ebecf4", + "sideBar.foreground": "#121317", + "sideBar.dropBackground": "#e7e8f0", + "sideBarTitle.foreground": "#121317", + "sideBarSectionHeader.background": "#ebecf4", + "sideBarSectionHeader.foreground": "#121317", + "minimap.findMatchHighlight": "#804f00", + "minimap.selectionHighlight": "#e7e8f0", + "minimap.errorHighlight": "#af201f", + "minimap.warningHighlight": "#804f00", "minimap.background": "#eff0f8", - "minimap.selectionOccurrenceHighlight": "#666675", - "minimapGutter.addedBackground": "#007833", - "minimapGutter.modifiedBackground": "#675ea6", - "minimapGutter.deletedBackground": "#c42b28", - "editorGroup.dropBackground": "#66667566", - "editorGroupHeader.noTabsBackground": "#edeef5", - "editorGroupHeader.tabsBackground": "#edeef5", + "minimap.selectionOccurrenceHighlight": "#717282", + "minimapGutter.addedBackground": "#00692b", + "minimapGutter.modifiedBackground": "#5a5292", + "minimapGutter.deletedBackground": "#af201f", + "editorGroup.dropBackground": "#71728266", + "editorGroupHeader.noTabsBackground": "#ebecf4", + "editorGroupHeader.tabsBackground": "#ebecf4", "editorGroup.emptyBackground": "#eff0f8", - "editorGroup.focusedEmptyBorder": "#006f9a", - "editorGroup.dropIntoPromptForeground": "#31323a", + "editorGroup.focusedEmptyBorder": "#006088", + "editorGroup.dropIntoPromptForeground": "#2c2c34", "editorGroup.dropIntoPromptBackground": "#eff0f8", - "tab.activeBackground": "#eaebf3", - "tab.unfocusedActiveBackground": "#eaebf3", - "tab.activeForeground": "#006f9a", + "tab.activeBackground": "#e7e8f0", + "tab.unfocusedActiveBackground": "#e7e8f0", + "tab.activeForeground": "#006088", "tab.border": "#00000000", - "tab.dragAndDropBorder": "#666675", - "tab.inactiveBackground": "#edeef5", - "tab.unfocusedInactiveBackground": "#edeef5", - "tab.inactiveForeground": "#4a4b56", - "tab.unfocusedActiveForeground": "#666675", - "tab.unfocusedInactiveForeground": "#666675", - "tab.hoverBackground": "#eaebf3", - "tab.unfocusedHoverBackground": "#eaebf3", - "tab.hoverForeground": "#16161a", - "tab.unfocusedHoverForeground": "#31323a", - "tab.activeModifiedBorder": "#006f9a", - "tab.inactiveModifiedBorder": "#006f9a", - "tab.unfocusedActiveModifiedBorder": "#006f9a", - "tab.unfocusedInactiveModifiedBorder": "#006f9a", + "tab.dragAndDropBorder": "#717282", + "tab.inactiveBackground": "#ebecf4", + "tab.unfocusedInactiveBackground": "#ebecf4", + "tab.inactiveForeground": "#41414c", + "tab.unfocusedActiveForeground": "#595967", + "tab.unfocusedInactiveForeground": "#595967", + "tab.hoverBackground": "#e7e8f0", + "tab.unfocusedHoverBackground": "#e7e8f0", + "tab.hoverForeground": "#121317", + "tab.unfocusedHoverForeground": "#2c2c34", + "tab.activeModifiedBorder": "#006088", + "tab.inactiveModifiedBorder": "#006088", + "tab.unfocusedActiveModifiedBorder": "#006088", + "tab.unfocusedInactiveModifiedBorder": "#006088", "editorPane.background": "#eff0f8", "editor.background": "#eff0f8", - "editor.foreground": "#16161a", - "editorLineNumber.foreground": "#666675", - "editorLineNumber.activeForeground": "#666675", - "editorCursor.foreground": "#4a4b56", - "editor.selectionBackground": "#eaebf3", - "editor.inactiveSelectionBackground": "#eaebf3", - "editor.selectionHighlightBackground": "#edeef5", - "editor.wordHighlightBackground": "#eaebf3", - "editor.wordHighlightStrongBackground": "#666675", - "editor.findMatchBackground": "#915c00", - "editor.findMatchHighlightBackground": "#915c00", - "editor.findRangeHighlightBackground": "#edeef5", - "searchEditor.findMatchBackground": "#915c00", - "editor.hoverHighlightBackground": "#eaebf3", - "editor.lineHighlightBackground": "#edeef5", - "editorLink.activeForeground": "#006f9a", - "editor.rangeHighlightBackground": "#edeef5", - "editorWhitespace.foreground": "#666675", - "editorIndentGuide.background": "#eaebf3", - "editorIndentGuide.activeBackground": "#eaebf3", - "editorInlayHint.background": "#edeef5", - "editorInlayHint.foreground": "#666675", - "editorInlayHint.typeForeground": "#666675", - "editorInlayHint.typeBackground": "#edeef5", - "editorInlayHint.parameterForeground": "#666675", - "editorInlayHint.parameterBackground": "#edeef5", - "editorRuler.foreground": "#eaebf3", - "editorCodeLens.foreground": "#eaebf3", - "editorLightBulb.foreground": "#915c00", - "editorLightBulbAutoFix.foreground": "#006f9a", - "editorBracketMatch.background": "#eaebf3", - "editorBracketHighlight.foreground1": "#675ea6", - "editorBracketHighlight.foreground2": "#006f9a", - "editorBracketHighlight.foreground3": "#00746e", - "editorBracketHighlight.foreground4": "#007833", - "editorBracketHighlight.foreground5": "#915c00", - "editorBracketHighlight.foreground6": "#6c4200", - "editorBracketHighlight.unexpectedBracket.foreground": "#c42b28", + "editor.foreground": "#121317", + "editorLineNumber.foreground": "#717282", + "editorLineNumber.activeForeground": "#595967", + "editorCursor.foreground": "#41414c", + "editor.selectionBackground": "#e7e8f0", + "editor.inactiveSelectionBackground": "#e7e8f0", + "editor.selectionHighlightBackground": "#ebecf4", + "editor.wordHighlightBackground": "#e7e8f0", + "editor.wordHighlightStrongBackground": "#717282", + "editor.findMatchBackground": "#804f00", + "editor.findMatchHighlightBackground": "#804f00", + "editor.findRangeHighlightBackground": "#ebecf4", + "searchEditor.findMatchBackground": "#804f00", + "editor.hoverHighlightBackground": "#e7e8f0", + "editor.lineHighlightBackground": "#ebecf4", + "editorLink.activeForeground": "#006088", + "editor.rangeHighlightBackground": "#ebecf4", + "editorWhitespace.foreground": "#717282", + "editorIndentGuide.background": "#e7e8f0", + "editorIndentGuide.activeBackground": "#e7e8f0", + "editorInlayHint.background": "#ebecf4", + "editorInlayHint.foreground": "#717282", + "editorInlayHint.typeForeground": "#717282", + "editorInlayHint.typeBackground": "#ebecf4", + "editorInlayHint.parameterForeground": "#717282", + "editorInlayHint.parameterBackground": "#ebecf4", + "editorRuler.foreground": "#e7e8f0", + "editorCodeLens.foreground": "#e7e8f0", + "editorLightBulb.foreground": "#804f00", + "editorLightBulbAutoFix.foreground": "#006088", + "editorBracketMatch.background": "#e7e8f0", + "editorBracketHighlight.foreground1": "#5a5292", + "editorBracketHighlight.foreground2": "#006088", + "editorBracketHighlight.foreground3": "#006560", + "editorBracketHighlight.foreground4": "#00692b", + "editorBracketHighlight.foreground5": "#804f00", + "editorBracketHighlight.foreground6": "#5f3900", + "editorBracketHighlight.unexpectedBracket.foreground": "#af201f", "editorOverviewRuler.border": "#00000000", - "editorOverviewRuler.findMatchForeground": "#915c00", - "editorOverviewRuler.rangeHighlightForeground": "#666675", - "editorOverviewRuler.selectionHighlightForeground": "#eaebf3", - "editorOverviewRuler.wordHighlightForeground": "#16161a", - "editorOverviewRuler.wordHighlightStrongForeground": "#006f9a", - "editorOverviewRuler.modifiedForeground": "#675ea6", - "editorOverviewRuler.addedForeground": "#007833", - "editorOverviewRuler.deletedForeground": "#c42b28", - "editorOverviewRuler.errorForeground": "#c42b28", - "editorOverviewRuler.warningForeground": "#915c00", - "editorOverviewRuler.infoForeground": "#006f9a", - "editorOverviewRuler.bracketMatchForeground": "#31323a", - "editorError.foreground": "#c42b28", - "editorWarning.foreground": "#915c00", - "editorInfo.foreground": "#006f9a", - "editorHint.foreground": "#006f9a", - "problemsErrorIcon.foreground": "#c42b28", - "problemsWarningIcon.foreground": "#915c00", - "problemsInfoIcon.foreground": "#675ea6", + "editorOverviewRuler.findMatchForeground": "#804f00", + "editorOverviewRuler.rangeHighlightForeground": "#717282", + "editorOverviewRuler.selectionHighlightForeground": "#e7e8f0", + "editorOverviewRuler.wordHighlightForeground": "#121317", + "editorOverviewRuler.wordHighlightStrongForeground": "#006088", + "editorOverviewRuler.modifiedForeground": "#5a5292", + "editorOverviewRuler.addedForeground": "#00692b", + "editorOverviewRuler.deletedForeground": "#af201f", + "editorOverviewRuler.errorForeground": "#af201f", + "editorOverviewRuler.warningForeground": "#804f00", + "editorOverviewRuler.infoForeground": "#006088", + "editorOverviewRuler.bracketMatchForeground": "#2c2c34", + "editorError.foreground": "#af201f", + "editorWarning.foreground": "#804f00", + "editorInfo.foreground": "#006088", + "editorHint.foreground": "#006088", + "problemsErrorIcon.foreground": "#af201f", + "problemsWarningIcon.foreground": "#804f00", + "problemsInfoIcon.foreground": "#5a5292", "editorGutter.background": "#eff0f8", - "editorGutter.modifiedBackground": "#675ea6", - "editorGutter.addedBackground": "#007833", - "editorGutter.deletedBackground": "#c42b28", - "editorGutter.commentRangeForeground": "#666675", - "editorGutter.foldingControlForeground": "#4a4b56", - "diffEditor.insertedTextBackground": "#00783360", - "diffEditor.removedTextBackground": "#c42b2860", - "diffEditor.border": "#eaebf3", - "diffEditor.diagonalFill": "#eaebf3", - "diffEditor.insertedLineBackground": "#00783330", - "diffEditor.removedLineBackground": "#c42b2830", - "diffEditorGutter.insertedLineBackground": "#00783330", - "diffEditorGutter.removedLineBackground": "#c42b2830", - "diffEditorOverview.insertedForeground": "#00783360", - "diffEditorOverview.removedForeground": "#c42b2860", + "editorGutter.modifiedBackground": "#5a5292", + "editorGutter.addedBackground": "#00692b", + "editorGutter.deletedBackground": "#af201f", + "editorGutter.commentRangeForeground": "#595967", + "editorGutter.foldingControlForeground": "#41414c", + "diffEditor.insertedTextBackground": "#00692b60", + "diffEditor.removedTextBackground": "#af201f60", + "diffEditor.border": "#e7e8f0", + "diffEditor.diagonalFill": "#e7e8f0", + "diffEditor.insertedLineBackground": "#00692b30", + "diffEditor.removedLineBackground": "#af201f30", + "diffEditorGutter.insertedLineBackground": "#00692b30", + "diffEditorGutter.removedLineBackground": "#af201f30", + "diffEditorOverview.insertedForeground": "#00692b60", + "diffEditorOverview.removedForeground": "#af201f60", "diffEditor.unchangedRegionShadow": "#00000000", - "chat.requestBorder": "#eaebf3", - "chat.requestBackground": "#edeef5", - "chat.slashCommandBackground": "#006f9a", + "chat.requestBorder": "#e7e8f0", + "chat.requestBackground": "#ebecf4", + "chat.slashCommandBackground": "#006088", "chat.slashCommandForeground": "#eff0f8", - "chat.avatarBackground": "#006f9a", + "chat.avatarBackground": "#006088", "chat.avatarForeground": "#eff0f8", - "inlineChat.background": "#edeef5", - "inlineChat.border": "#eaebf3", + "inlineChat.background": "#ebecf4", + "inlineChat.border": "#e7e8f0", "inlineChat.shadow": "#00000000", - "inlineChat.regionHighlight": "#edeef5", - "inlineChatInput.border": "#eaebf3", - "inlineChatInput.focusBorder": "#006f9a", - "inlineChatInput.placeholderForeground": "#666675", + "inlineChat.regionHighlight": "#ebecf4", + "inlineChatInput.border": "#e7e8f0", + "inlineChatInput.focusBorder": "#006088", + "inlineChatInput.placeholderForeground": "#717282", "inlineChatInput.background": "#eff0f8", - "inlineChatDiff.inserted": "#00783360", - "inlineChatDiff.removed": "#c42b2860", - "editorWidget.foreground": "#16161a", + "inlineChatDiff.inserted": "#00692b60", + "inlineChatDiff.removed": "#af201f60", + "editorWidget.foreground": "#121317", "editorWidget.background": "#eff0f8", - "editorWidget.border": "#eaebf3", - "editorWidget.resizeBorder": "#006f9a", - "editorSuggestWidget.background": "#edeef5", - "editorSuggestWidget.border": "#eaebf3", - "editorSuggestWidget.foreground": "#16161a", - "editorSuggestWidget.focusHighlightForeground": "#006f9a", - "editorSuggestWidget.highlightForeground": "#006f9a", - "editorSuggestWidget.selectedBackground": "#eaebf3", - "editorSuggestWidget.selectedForeground": "#16161a", - "editorSuggestWidget.selectedIconForeground": "#16161a", - "editorHoverWidget.foreground": "#16161a", - "editorHoverWidget.background": "#edeef5", - "editorHoverWidget.border": "#eaebf3", - "editorHoverWidget.highlightForeground": "#006f9a", - "editorHoverWidget.statusBarBackground": "#edeef5", + "editorWidget.border": "#e7e8f0", + "editorWidget.resizeBorder": "#006088", + "editorSuggestWidget.background": "#ebecf4", + "editorSuggestWidget.border": "#e7e8f0", + "editorSuggestWidget.foreground": "#121317", + "editorSuggestWidget.focusHighlightForeground": "#006088", + "editorSuggestWidget.highlightForeground": "#006088", + "editorSuggestWidget.selectedBackground": "#e7e8f0", + "editorSuggestWidget.selectedForeground": "#121317", + "editorSuggestWidget.selectedIconForeground": "#121317", + "editorHoverWidget.foreground": "#121317", + "editorHoverWidget.background": "#ebecf4", + "editorHoverWidget.border": "#e7e8f0", + "editorHoverWidget.highlightForeground": "#006088", + "editorHoverWidget.statusBarBackground": "#ebecf4", "editorGhostText.background": "#00000000", - "editorGhostText.foreground": "#666675", + "editorGhostText.foreground": "#717282", "editorStickyScroll.background": "#eff0f8", - "editorStickyScroll.border": "#eaebf3", + "editorStickyScroll.border": "#e7e8f0", "editorStickyScroll.shadow": "#00000000", - "editorStickyScrollHover.background": "#edeef5", - "debugExceptionWidget.background": "#edeef5", - "editorMarkerNavigation.background": "#edeef5", - "editorMarkerNavigationError.background": "#c42b28", - "editorMarkerNavigationWarning.background": "#915c00", - "editorMarkerNavigationInfo.background": "#006f9a", - "editorMarkerNavigationError.headerBackground": "#c42b2820", - "editorMarkerNavigationWarning.headerBackground": "#915c0020", - "editorMarkerNavigationInfo.headerBackground": "#675ea620", - "peekViewEditor.background": "#edeef5", - "peekViewEditorGutter.background": "#edeef5", - "peekViewEditor.matchHighlightBackground": "#915c00", + "editorStickyScrollHover.background": "#ebecf4", + "debugExceptionWidget.background": "#ebecf4", + "editorMarkerNavigation.background": "#ebecf4", + "editorMarkerNavigationError.background": "#af201f", + "editorMarkerNavigationWarning.background": "#804f00", + "editorMarkerNavigationInfo.background": "#006088", + "editorMarkerNavigationError.headerBackground": "#af201f20", + "editorMarkerNavigationWarning.headerBackground": "#804f0020", + "editorMarkerNavigationInfo.headerBackground": "#5a529220", + "peekViewEditor.background": "#ebecf4", + "peekViewEditorGutter.background": "#ebecf4", + "peekViewEditor.matchHighlightBackground": "#804f00", "peekViewResult.background": "#eff0f8", - "peekViewResult.fileForeground": "#16161a", - "peekViewResult.lineForeground": "#666675", - "peekViewResult.matchHighlightBackground": "#915c00", - "peekViewResult.selectionBackground": "#eaebf3", - "peekViewResult.selectionForeground": "#16161a", - "peekViewTitle.background": "#eaebf3", - "peekViewTitleDescription.foreground": "#666675", - "peekViewTitleLabel.foreground": "#16161a", - "merge.currentHeaderBackground": "#006f9a40", - "merge.currentContentBackground": "#006f9a40", - "merge.incomingHeaderBackground": "#00783360", - "merge.incomingContentBackground": "#00783360", - "editorOverviewRuler.currentContentForeground": "#006f9a", - "editorOverviewRuler.incomingContentForeground": "#007833", - "editorOverviewRuler.commonContentForeground": "#915c00", - "mergeEditor.conflict.unhandledFocused.border": "#006f9a", - "mergeEditor.conflict.handledFocused.border": "#006f9a", - "panel.background": "#edeef5", + "peekViewResult.fileForeground": "#121317", + "peekViewResult.lineForeground": "#717282", + "peekViewResult.matchHighlightBackground": "#804f00", + "peekViewResult.selectionBackground": "#e7e8f0", + "peekViewResult.selectionForeground": "#121317", + "peekViewTitle.background": "#e7e8f0", + "peekViewTitleDescription.foreground": "#717282", + "peekViewTitleLabel.foreground": "#121317", + "merge.currentHeaderBackground": "#00608840", + "merge.currentContentBackground": "#00608840", + "merge.incomingHeaderBackground": "#00692b60", + "merge.incomingContentBackground": "#00692b60", + "editorOverviewRuler.currentContentForeground": "#006088", + "editorOverviewRuler.incomingContentForeground": "#00692b", + "editorOverviewRuler.commonContentForeground": "#804f00", + "mergeEditor.conflict.unhandledFocused.border": "#006088", + "mergeEditor.conflict.handledFocused.border": "#006088", + "panel.background": "#ebecf4", "panel.border": "#00000000", - "panel.dropBorder": "#edeef5", - "panelTitle.activeForeground": "#16161a", - "panelTitle.inactiveForeground": "#666675", - "statusBar.background": "#edeef5", - "statusBar.foreground": "#31323a", - "statusBar.debuggingBackground": "#915c00", + "panel.dropBorder": "#ebecf4", + "panelTitle.activeForeground": "#121317", + "panelTitle.inactiveForeground": "#717282", + "statusBar.background": "#ebecf4", + "statusBar.foreground": "#2c2c34", + "statusBar.debuggingBackground": "#804f00", "statusBar.debuggingForeground": "#eff0f8", - "statusBar.noFolderForeground": "#4a4b56", - "statusBar.noFolderBackground": "#edeef5", - "statusBarItem.activeBackground": "#eaebf3", - "statusBarItem.hoverForeground": "#16161a", - "statusBarItem.hoverBackground": "#eaebf3", + "statusBar.noFolderForeground": "#41414c", + "statusBar.noFolderBackground": "#ebecf4", + "statusBarItem.activeBackground": "#e7e8f0", + "statusBarItem.hoverForeground": "#121317", + "statusBarItem.hoverBackground": "#e7e8f0", "statusBarItem.prominentForeground": "#eff0f8", - "statusBarItem.prominentBackground": "#675ea6", + "statusBarItem.prominentBackground": "#5a5292", "statusBarItem.prominentHoverForeground": "#eff0f8", - "statusBarItem.prominentHoverBackground": "#675ea6C0", - "statusBarItem.remoteBackground": "#edeef5", - "statusBarItem.remoteForeground": "#16161a", - "statusBarItem.remoteHoverBackground": "#eaebf3", - "statusBarItem.remoteHoverForeground": "#16161a", - "statusBarItem.errorBackground": "#c42b28", + "statusBarItem.prominentHoverBackground": "#5a5292C0", + "statusBarItem.remoteBackground": "#ebecf4", + "statusBarItem.remoteForeground": "#121317", + "statusBarItem.remoteHoverBackground": "#e7e8f0", + "statusBarItem.remoteHoverForeground": "#121317", + "statusBarItem.errorBackground": "#af201f", "statusBarItem.errorForeground": "#eff0f8", - "statusBarItem.errorHoverBackground": "#c42b28C0", + "statusBarItem.errorHoverBackground": "#af201fC0", "statusBarItem.errorHoverForeground": "#eff0f8", - "statusBarItem.warningBackground": "#915c00", + "statusBarItem.warningBackground": "#804f00", "statusBarItem.warningForeground": "#eff0f8", - "statusBarItem.warningHoverBackground": "#915c00C0", + "statusBarItem.warningHoverBackground": "#804f00C0", "statusBarItem.warningHoverForeground": "#eff0f8", - "statusBarItem.compactHoverBackground": "#eaebf3", - "statusBarItem.focusBorder": "#006f9a", - "statusBar.focusBorder": "#006f9a", - "statusBarItem.offlineBackground": "#915c00", + "statusBarItem.compactHoverBackground": "#e7e8f0", + "statusBarItem.focusBorder": "#006088", + "statusBar.focusBorder": "#006088", + "statusBarItem.offlineBackground": "#804f00", "statusBarItem.offlineForeground": "#eff0f8", "statusBarItem.offlineHoverForeground": "#eff0f8", - "statusBarItem.offlineHoverBackground": "#915c00C0", + "statusBarItem.offlineHoverBackground": "#804f00C0", "titleBar.activeBackground": "#eff0f8", - "titleBar.activeForeground": "#16161a", - "titleBar.inactiveBackground": "#edeef5", - "titleBar.inactiveForeground": "#666675", - "menubar.selectionForeground": "#16161a", - "menubar.selectionBackground": "#edeef5", - "menu.foreground": "#16161a", - "menu.background": "#edeef5", - "menu.selectionForeground": "#16161a", - "menu.selectionBackground": "#eaebf3", - "menu.separatorBackground": "#eaebf3", - "menu.border": "#eaebf3", - "commandCenter.foreground": "#16161a", - "commandCenter.activeForeground": "#16161a", + "titleBar.activeForeground": "#121317", + "titleBar.inactiveBackground": "#ebecf4", + "titleBar.inactiveForeground": "#717282", + "menubar.selectionForeground": "#121317", + "menubar.selectionBackground": "#ebecf4", + "menu.foreground": "#121317", + "menu.background": "#ebecf4", + "menu.selectionForeground": "#121317", + "menu.selectionBackground": "#e7e8f0", + "menu.separatorBackground": "#e7e8f0", + "menu.border": "#e7e8f0", + "commandCenter.foreground": "#121317", + "commandCenter.activeForeground": "#121317", "commandCenter.background": "#eff0f8", - "commandCenter.activeBackground": "#edeef5", - "notificationCenterHeader.foreground": "#16161a", - "notificationCenterHeader.background": "#edeef5", - "notifications.foreground": "#16161a", - "notifications.background": "#eaebf3", - "notificationLink.foreground": "#006f9a", - "notificationsErrorIcon.foreground": "#c42b28", - "notificationsWarningIcon.foreground": "#915c00", - "notificationsInfoIcon.foreground": "#006f9a", - "banner.background": "#eaebf3", - "banner.foreground": "#16161a", - "banner.iconForeground": "#006f9a", + "commandCenter.activeBackground": "#ebecf4", + "notificationCenterHeader.foreground": "#121317", + "notificationCenterHeader.background": "#ebecf4", + "notifications.foreground": "#121317", + "notifications.background": "#e7e8f0", + "notificationLink.foreground": "#006088", + "notificationsErrorIcon.foreground": "#af201f", + "notificationsWarningIcon.foreground": "#804f00", + "notificationsInfoIcon.foreground": "#006088", + "banner.background": "#e7e8f0", + "banner.foreground": "#121317", + "banner.iconForeground": "#006088", "extensionButton.prominentForeground": "#eff0f8", - "extensionButton.prominentBackground": "#007833", - "extensionButton.prominentHoverBackground": "#007833C0", - "extensionButton.background": "#006f9a", + "extensionButton.prominentBackground": "#00692b", + "extensionButton.prominentHoverBackground": "#00692bC0", + "extensionButton.background": "#006088", "extensionButton.foreground": "#eff0f8", - "extensionButton.hoverBackground": "#006f9aC0", + "extensionButton.hoverBackground": "#006088C0", "extensionButton.separator": "#00000000", - "extensionBadge.remoteBackground": "#915c00", - "extensionBadge.remoteForeground": "#16161a", - "extensionIcon.starForeground": "#915c00", - "extensionIcon.verifiedForeground": "#006f9a", - "extensionIcon.preReleaseForeground": "#915c00", - "pickerGroup.border": "#eaebf3", - "pickerGroup.foreground": "#666675", - "quickInput.background": "#edeef5", - "quickInput.foreground": "#16161a", - "quickInputList.focusBackground": "#eaebf3", - "quickInputList.focusForeground": "#16161a", - "quickInputList.focusIconForeground": "#16161a", - "quickInputTitle.background": "#edeef5", - "keybindingLabel.background": "#eaebf3", - "keybindingLabel.foreground": "#16161a", - "keybindingLabel.bottomBorder": "#eaebf3", - "keybindingTable.headerBackground": "#eaebf3", - "keybindingTable.rowsBackground": "#edeef5", + "extensionBadge.remoteBackground": "#804f00", + "extensionBadge.remoteForeground": "#121317", + "extensionIcon.starForeground": "#804f00", + "extensionIcon.verifiedForeground": "#006088", + "extensionIcon.preReleaseForeground": "#804f00", + "pickerGroup.border": "#e7e8f0", + "pickerGroup.foreground": "#717282", + "quickInput.background": "#ebecf4", + "quickInput.foreground": "#121317", + "quickInputList.focusBackground": "#e7e8f0", + "quickInputList.focusForeground": "#121317", + "quickInputList.focusIconForeground": "#121317", + "quickInputTitle.background": "#ebecf4", + "keybindingLabel.background": "#e7e8f0", + "keybindingLabel.foreground": "#121317", + "keybindingLabel.bottomBorder": "#e7e8f0", + "keybindingTable.headerBackground": "#e7e8f0", + "keybindingTable.rowsBackground": "#ebecf4", "terminal.background": "#eff0f8", - "terminal.foreground": "#16161a", + "terminal.foreground": "#121317", "terminal.ansiBlack": "#eff0f8", - "terminal.ansiBlue": "#006f9a", - "terminal.ansiBrightBlack": "#666675", - "terminal.ansiBrightBlue": "#005174", - "terminal.ansiBrightCyan": "#005551", - "terminal.ansiBrightGreen": "#005823", - "terminal.ansiBrightMagenta": "#4c447d", - "terminal.ansiBrightRed": "#961516", - "terminal.ansiBrightWhite": "#16161a", - "terminal.ansiBrightYellow": "#6c4200", - "terminal.ansiCyan": "#00746e", - "terminal.ansiGreen": "#007833", - "terminal.ansiMagenta": "#675ea6", - "terminal.ansiRed": "#c42b28", - "terminal.ansiWhite": "#16161a", - "terminal.ansiYellow": "#915c00", - "terminalCursor.foreground": "#4a4b56", + "terminal.ansiBlue": "#006088", + "terminal.ansiBrightBlack": "#717282", + "terminal.ansiBrightBlue": "#004765", + "terminal.ansiBrightCyan": "#004a46", + "terminal.ansiBrightGreen": "#004d1d", + "terminal.ansiBrightMagenta": "#423b6e", + "terminal.ansiBrightRed": "#860f11", + "terminal.ansiBrightWhite": "#121317", + "terminal.ansiBrightYellow": "#5f3900", + "terminal.ansiCyan": "#006560", + "terminal.ansiGreen": "#00692b", + "terminal.ansiMagenta": "#5a5292", + "terminal.ansiRed": "#af201f", + "terminal.ansiWhite": "#121317", + "terminal.ansiYellow": "#804f00", + "terminalCursor.foreground": "#41414c", "terminalOverviewRuler.cursorForeground": "#ff0000", "terminalOverviewRuler.findMatchForeground": "#ff0000", - "debugToolBar.background": "#edeef5", - "debugView.stateLabelForeground": "#16161a", - "debugView.stateLabelBackground": "#006f9a", - "debugView.valueChangedHighlight": "#006f9a", - "debugTokenExpression.name": "#675ea6", - "debugTokenExpression.value": "#16161a", - "debugTokenExpression.string": "#007833", - "debugTokenExpression.boolean": "#915c00", - "debugTokenExpression.number": "#915c00", - "debugTokenExpression.error": "#c42b28", - "testing.iconFailed": "#c42b28", - "testing.iconErrored": "#915c00", - "testing.iconPassed": "#007833", - "testing.runAction": "#666675", - "testing.iconQueued": "#915c00", - "testing.iconUnset": "#666675", - "testing.iconSkipped": "#675ea6", - "testing.peekHeaderBackground": "#edeef5", - "testing.message.error.decorationForeground": "#16161a", - "testing.message.error.lineBackground": "#c42b2820", - "testing.message.info.decorationForeground": "#16161a", - "testing.message.info.lineBackground": "#006f9a20", + "debugToolBar.background": "#ebecf4", + "debugView.stateLabelForeground": "#121317", + "debugView.stateLabelBackground": "#006088", + "debugView.valueChangedHighlight": "#006088", + "debugTokenExpression.name": "#5a5292", + "debugTokenExpression.value": "#121317", + "debugTokenExpression.string": "#00692b", + "debugTokenExpression.boolean": "#804f00", + "debugTokenExpression.number": "#804f00", + "debugTokenExpression.error": "#af201f", + "testing.iconFailed": "#af201f", + "testing.iconErrored": "#804f00", + "testing.iconPassed": "#00692b", + "testing.runAction": "#595967", + "testing.iconQueued": "#804f00", + "testing.iconUnset": "#595967", + "testing.iconSkipped": "#5a5292", + "testing.peekHeaderBackground": "#ebecf4", + "testing.message.error.decorationForeground": "#121317", + "testing.message.error.lineBackground": "#af201f20", + "testing.message.info.decorationForeground": "#121317", + "testing.message.info.lineBackground": "#00608820", "welcomePage.background": "#eff0f8", - "welcomePage.progress.background": "#666675", - "welcomePage.progress.foreground": "#006f9a", - "welcomePage.tileBackground": "#edeef5", - "welcomePage.tileHoverBackground": "#eaebf3", + "welcomePage.progress.background": "#717282", + "welcomePage.progress.foreground": "#006088", + "welcomePage.tileBackground": "#ebecf4", + "welcomePage.tileHoverBackground": "#e7e8f0", "walkThrough.embeddedEditorBackground": "#eff0f8", - "gitDecoration.addedResourceForeground": "#007833", - "gitDecoration.modifiedResourceForeground": "#675ea6", - "gitDecoration.deletedResourceForeground": "#c42b28", - "gitDecoration.renamedResourceForeground": "#00746e", - "gitDecoration.stageModifiedResourceForeground": "#675ea6", - "gitDecoration.stageDeletedResourceForeground": "#c42b28", - "gitDecoration.untrackedResourceForeground": "#915c00", - "gitDecoration.ignoredResourceForeground": "#666675", - "gitDecoration.conflictingResourceForeground": "#915c00", - "gitDecoration.submoduleResourceForeground": "#915c00", - "settings.headerForeground": "#16161a", - "settings.modifiedItemIndicator": "#006f9a", - "settings.dropdownBackground": "#edeef5", - "settings.dropdownForeground": "#16161a", - "settings.checkboxBackground": "#edeef5", - "settings.checkboxForeground": "#16161a", - "settings.rowHoverBackground": "#eaebf3", - "settings.textInputBackground": "#edeef5", - "settings.textInputForeground": "#16161a", - "settings.numberInputBackground": "#edeef5", - "settings.numberInputForeground": "#16161a", - "settings.focusedRowBackground": "#eaebf3", - "settings.focusedRowBorder": "#006f9a", - "settings.headerBorder": "#16161a", - "settings.sashBorder": "#16161a", - "breadcrumb.foreground": "#4a4b56", - "breadcrumb.background": "#edeef5", - "breadcrumb.focusForeground": "#31323a", - "breadcrumb.activeSelectionForeground": "#16161a", - "breadcrumbPicker.background": "#edeef5", - "editor.snippetTabstopHighlightBackground": "#eaebf3", - "editor.snippetFinalTabstopHighlightBackground": "#666675", - "symbolIcon.arrayForeground": "#16161a", - "symbolIcon.booleanForeground": "#915c00", - "symbolIcon.classForeground": "#915c00", - "symbolIcon.colorForeground": "#16161a", - "symbolIcon.constantForeground": "#915c00", - "symbolIcon.constructorForeground": "#006f9a", - "symbolIcon.enumeratorForeground": "#915c00", - "symbolIcon.enumeratorMemberForeground": "#006f9a", - "symbolIcon.eventForeground": "#915c00", - "symbolIcon.fieldForeground": "#c42b28", - "symbolIcon.fileForeground": "#16161a", - "symbolIcon.folderForeground": "#16161a", - "symbolIcon.functionForeground": "#006f9a", - "symbolIcon.interfaceForeground": "#006f9a", - "symbolIcon.keyForeground": "#16161a", - "symbolIcon.keywordForeground": "#675ea6", - "symbolIcon.methodForeground": "#006f9a", - "symbolIcon.moduleForeground": "#16161a", - "symbolIcon.namespaceForeground": "#16161a", - "symbolIcon.numberForeground": "#915c00", - "symbolIcon.objectForeground": "#16161a", - "symbolIcon.operatorForeground": "#16161a", - "symbolIcon.packageForeground": "#16161a", - "symbolIcon.propertyForeground": "#16161a", - "symbolIcon.referenceForeground": "#16161a", - "symbolIcon.snippetForeground": "#16161a", - "symbolIcon.stringForeground": "#007833", - "symbolIcon.structForeground": "#915c00", - "symbolIcon.textForeground": "#16161a", - "symbolIcon.typeParameterForeground": "#16161a", - "symbolIcon.unitForeground": "#16161a", - "symbolIcon.variableForeground": "#c42b28", - "debugIcon.breakpointForeground": "#c42b28", - "debugIcon.breakpointDisabledForeground": "#666675", - "debugIcon.breakpointUnverifiedForeground": "#eaebf3", - "debugIcon.breakpointCurrentStackframeForeground": "#915c00", - "debugIcon.breakpointStackframeForeground": "#915c00", - "debugIcon.startForeground": "#007833", - "debugIcon.pauseForeground": "#006f9a", - "debugIcon.stopForeground": "#c42b28", - "debugIcon.disconnectForeground": "#c42b28", - "debugIcon.restartForeground": "#007833", - "debugIcon.stepOverForeground": "#006f9a", - "debugIcon.stepIntoForeground": "#00746e", - "debugIcon.stepOutForeground": "#675ea6", - "debugIcon.continueForeground": "#007833", - "debugIcon.stepBackForeground": "#915c00", - "debugConsole.infoForeground": "#16161a", - "debugConsole.warningForeground": "#915c00", - "debugConsole.errorForeground": "#c42b28", - "debugConsole.sourceForeground": "#16161a", - "debugConsoleInputIcon.foreground": "#16161a", + "gitDecoration.addedResourceForeground": "#00692b", + "gitDecoration.modifiedResourceForeground": "#5a5292", + "gitDecoration.deletedResourceForeground": "#af201f", + "gitDecoration.renamedResourceForeground": "#006560", + "gitDecoration.stageModifiedResourceForeground": "#5a5292", + "gitDecoration.stageDeletedResourceForeground": "#af201f", + "gitDecoration.untrackedResourceForeground": "#804f00", + "gitDecoration.ignoredResourceForeground": "#717282", + "gitDecoration.conflictingResourceForeground": "#804f00", + "gitDecoration.submoduleResourceForeground": "#804f00", + "settings.headerForeground": "#121317", + "settings.modifiedItemIndicator": "#006088", + "settings.dropdownBackground": "#ebecf4", + "settings.dropdownForeground": "#121317", + "settings.checkboxBackground": "#ebecf4", + "settings.checkboxForeground": "#121317", + "settings.rowHoverBackground": "#e7e8f0", + "settings.textInputBackground": "#ebecf4", + "settings.textInputForeground": "#121317", + "settings.numberInputBackground": "#ebecf4", + "settings.numberInputForeground": "#121317", + "settings.focusedRowBackground": "#e7e8f0", + "settings.focusedRowBorder": "#006088", + "settings.headerBorder": "#121317", + "settings.sashBorder": "#121317", + "breadcrumb.foreground": "#41414c", + "breadcrumb.background": "#ebecf4", + "breadcrumb.focusForeground": "#2c2c34", + "breadcrumb.activeSelectionForeground": "#121317", + "breadcrumbPicker.background": "#ebecf4", + "editor.snippetTabstopHighlightBackground": "#e7e8f0", + "editor.snippetFinalTabstopHighlightBackground": "#717282", + "symbolIcon.arrayForeground": "#121317", + "symbolIcon.booleanForeground": "#804f00", + "symbolIcon.classForeground": "#804f00", + "symbolIcon.colorForeground": "#121317", + "symbolIcon.constantForeground": "#804f00", + "symbolIcon.constructorForeground": "#006088", + "symbolIcon.enumeratorForeground": "#804f00", + "symbolIcon.enumeratorMemberForeground": "#006088", + "symbolIcon.eventForeground": "#804f00", + "symbolIcon.fieldForeground": "#af201f", + "symbolIcon.fileForeground": "#121317", + "symbolIcon.folderForeground": "#121317", + "symbolIcon.functionForeground": "#006088", + "symbolIcon.interfaceForeground": "#006088", + "symbolIcon.keyForeground": "#121317", + "symbolIcon.keywordForeground": "#5a5292", + "symbolIcon.methodForeground": "#006088", + "symbolIcon.moduleForeground": "#121317", + "symbolIcon.namespaceForeground": "#121317", + "symbolIcon.numberForeground": "#804f00", + "symbolIcon.objectForeground": "#121317", + "symbolIcon.operatorForeground": "#121317", + "symbolIcon.packageForeground": "#121317", + "symbolIcon.propertyForeground": "#121317", + "symbolIcon.referenceForeground": "#121317", + "symbolIcon.snippetForeground": "#121317", + "symbolIcon.stringForeground": "#00692b", + "symbolIcon.structForeground": "#804f00", + "symbolIcon.textForeground": "#121317", + "symbolIcon.typeParameterForeground": "#121317", + "symbolIcon.unitForeground": "#121317", + "symbolIcon.variableForeground": "#af201f", + "debugIcon.breakpointForeground": "#af201f", + "debugIcon.breakpointDisabledForeground": "#595967", + "debugIcon.breakpointUnverifiedForeground": "#e7e8f0", + "debugIcon.breakpointCurrentStackframeForeground": "#804f00", + "debugIcon.breakpointStackframeForeground": "#804f00", + "debugIcon.startForeground": "#00692b", + "debugIcon.pauseForeground": "#006088", + "debugIcon.stopForeground": "#af201f", + "debugIcon.disconnectForeground": "#af201f", + "debugIcon.restartForeground": "#00692b", + "debugIcon.stepOverForeground": "#006088", + "debugIcon.stepIntoForeground": "#006560", + "debugIcon.stepOutForeground": "#5a5292", + "debugIcon.continueForeground": "#00692b", + "debugIcon.stepBackForeground": "#804f00", + "debugConsole.infoForeground": "#121317", + "debugConsole.warningForeground": "#804f00", + "debugConsole.errorForeground": "#af201f", + "debugConsole.sourceForeground": "#121317", + "debugConsoleInputIcon.foreground": "#121317", "notebook.editorBackground": "#eff0f8", - "notebook.cellBorderColor": "#666675", - "notebook.cellHoverBackground": "#edeef5", - "notebook.cellToolbarSeparator": "#eaebf3", + "notebook.cellBorderColor": "#717282", + "notebook.cellHoverBackground": "#ebecf4", + "notebook.cellToolbarSeparator": "#e7e8f0", "notebook.cellEditorBackground": "#eff0f8", - "notebook.focusedCellBackground": "#eaebf3", - "notebook.focusedCellBorder": "#006f9a", - "notebook.focusedEditorBorder": "#006f9a", - "notebook.inactiveFocusedCellBorder": "#666675", - "notebook.selectedCellBackground": "#eaebf3", - "notebookStatusErrorIcon.foreground": "#c42b28", - "notebookStatusRunningIcon.foreground": "#006f9a", - "notebookStatusSuccessIcon.foreground": "#007833", - "charts.foreground": "#16161a", - "charts.lines": "#16161a", - "charts.red": "#c42b28", - "charts.blue": "#006f9a", + "notebook.focusedCellBackground": "#e7e8f0", + "notebook.focusedCellBorder": "#006088", + "notebook.focusedEditorBorder": "#006088", + "notebook.inactiveFocusedCellBorder": "#717282", + "notebook.selectedCellBackground": "#e7e8f0", + "notebookStatusErrorIcon.foreground": "#af201f", + "notebookStatusRunningIcon.foreground": "#006088", + "notebookStatusSuccessIcon.foreground": "#00692b", + "charts.foreground": "#121317", + "charts.lines": "#121317", + "charts.red": "#af201f", + "charts.blue": "#006088", "charts.yellow": "#", - "charts.orange": "#915c00", - "charts.green": "#007833", - "charts.purple": "#675ea6", - "ports.iconRunningProcessForeground": "#915c00", + "charts.orange": "#804f00", + "charts.green": "#00692b", + "charts.purple": "#5a5292", + "ports.iconRunningProcessForeground": "#804f00", }, "tokenColors": [ { @@ -530,7 +530,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#666675" + "foreground": "#717282" } }, { @@ -543,7 +543,7 @@ "variable.parameter" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -552,7 +552,7 @@ "variable.other.object.property" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -561,7 +561,7 @@ "constant.other.color" ], "settings": { - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -571,7 +571,7 @@ "invalid.illegal" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -603,7 +603,7 @@ "storage.modifier" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -613,7 +613,7 @@ "keyword.control.flow", ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -624,7 +624,7 @@ "keyword.control.as" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -634,7 +634,7 @@ "storage.type.primitive" ], "settings": { - "foreground": "#00746e" + "foreground": "#006560" } }, { @@ -644,7 +644,7 @@ "meta.type.annotation" ], "settings": { - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -654,7 +654,7 @@ "meta.function-call" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -673,7 +673,7 @@ "keyword.other.substitution" ], "settings": { - "foreground": "#4a4b56" + "foreground": "#41414c" } }, { @@ -683,7 +683,7 @@ "variable.interpolation" ], "settings": { - "foreground": "#915c00" + "foreground": "#804f00" } }, { @@ -694,7 +694,7 @@ "markup.deleted.git_gutter" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -707,7 +707,7 @@ "keyword.other.special-method" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -716,7 +716,7 @@ "meta.block variable.other" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -726,7 +726,7 @@ "string.other.link" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -740,7 +740,7 @@ "keyword.other.unit" ], "settings": { - "foreground": "#915c00" + "foreground": "#804f00" } }, { @@ -756,7 +756,7 @@ ], "settings": { "fontStyle": "", - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -772,7 +772,7 @@ "support.type.sys-types" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -781,7 +781,7 @@ "meta.object-literal.key", ], "settings": { - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -792,7 +792,7 @@ "storage.modifier.import" ], "settings": { - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -801,7 +801,7 @@ "entity.name.variable.field" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -810,7 +810,7 @@ "support.type" ], "settings": { - "foreground": "#00746e" + "foreground": "#006560" } }, { @@ -824,7 +824,7 @@ "source.postcss support.type.property-name" ], "settings": { - "foreground": "#00746e" + "foreground": "#006560" } }, { @@ -835,7 +835,7 @@ "variable.other.class.js" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -845,7 +845,7 @@ ], "settings": { "fontStyle": "italic bold", - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -855,7 +855,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -865,7 +865,7 @@ "variable.function.constructor" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -874,7 +874,7 @@ "entity.other.attribute-name" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -885,7 +885,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#915c00" + "foreground": "#804f00" } }, { @@ -894,7 +894,7 @@ "entity.other.attribute-name.class" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -903,7 +903,7 @@ "source.sass keyword.control" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -912,7 +912,7 @@ "markup.inserted" ], "settings": { - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -921,7 +921,7 @@ "markup.deleted" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -930,7 +930,7 @@ "markup.changed" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -939,7 +939,7 @@ "string.regexp" ], "settings": { - "foreground": "#007833" + "foreground": "#00692b" } }, { @@ -948,7 +948,7 @@ "constant.character.escape" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -970,7 +970,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -980,7 +980,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -989,7 +989,7 @@ "source.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -998,7 +998,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1007,7 +1007,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1016,7 +1016,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1025,7 +1025,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1034,7 +1034,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1043,7 +1043,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1052,7 +1052,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1061,7 +1061,7 @@ "source.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json meta.structure.dictionary.value.json meta.structure.dictionary.json support.type.property-name.json" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1071,7 +1071,7 @@ "punctuation.definition.list_item.markdown" ], "settings": { - "foreground": "#4a4b56" + "foreground": "#41414c" } }, { @@ -1080,7 +1080,7 @@ "text.html.markdown markup.inline.raw.markdown" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -1089,7 +1089,7 @@ "text.html.markdown markup.inline.raw.markdown punctuation.definition.raw.markdown" ], "settings": { - "foreground": "#00746e" + "foreground": "#006560" } }, { @@ -1098,7 +1098,7 @@ "text.html.markdown meta.dummy.line-break" ], "settings": { - "foreground": "#666675" + "foreground": "#717282" } }, { @@ -1109,7 +1109,7 @@ "markup.heading.markdown punctuation.definition.heading.markdown" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1119,7 +1119,7 @@ ], "settings": { "fontStyle": "italic", - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -1139,7 +1139,7 @@ ], "settings": { "fontStyle": "bold", - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -1154,7 +1154,7 @@ ], "settings": { "fontStyle": "bold", - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -1163,7 +1163,7 @@ "markup.quote punctuation.definition.blockquote.markdown" ], "settings": { - "foreground": "#00746e" + "foreground": "#006560" } }, { @@ -1181,7 +1181,7 @@ "string.other.link.title.markdown" ], "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { @@ -1190,7 +1190,7 @@ "string.other.link.description.title.markdown" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -1199,7 +1199,7 @@ "constant.other.reference.link.markdown" ], "settings": { - "foreground": "#915c00" + "foreground": "#804f00" } }, { @@ -1208,7 +1208,7 @@ "markup.raw.block" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -1236,7 +1236,7 @@ "variable.language.fenced.markdown" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { @@ -1245,7 +1245,7 @@ "variable.language.fenced.markdown" ], "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { @@ -1255,7 +1255,7 @@ ], "settings": { "fontStyle": "bold", - "foreground": "#00746e" + "foreground": "#006560" } }, { @@ -1264,100 +1264,100 @@ "markup.table" ], "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } }, { "scope": "token.info-token", "settings": { - "foreground": "#006f9a" + "foreground": "#006088" } }, { "scope": "token.warn-token", "settings": { - "foreground": "#915c00" + "foreground": "#804f00" } }, { "scope": "token.error-token", "settings": { - "foreground": "#c42b28" + "foreground": "#af201f" } }, { "scope": "token.debug-token", "settings": { - "foreground": "#675ea6" + "foreground": "#5a5292" } } ], "semanticHighlighting": true, "semanticTokenColors": { - "namespace": "#007833", - "class": "#006f9a", - "class.abstract": "#915c00", - "enum": "#007833", - "interface": "#915c00", - "struct": "#006f9a", - "typeParameter": "#007833", - "type": "#006f9a", - "parameter": "#675ea6", - "variable": "#675ea6", - "property": "#675ea6", - "enumMember": "#007833", - "decorator": "#006f9a", - "event": "#006f9a", - "punct": "#675ea6", - "punctuation": "#675ea6", - "escapeSequence": "#c42b28", + "namespace": "#00692b", + "class": "#006088", + "class.abstract": "#804f00", + "enum": "#00692b", + "interface": "#804f00", + "struct": "#006088", + "typeParameter": "#00692b", + "type": "#006088", + "parameter": "#5a5292", + "variable": "#5a5292", + "property": "#5a5292", + "enumMember": "#00692b", + "decorator": "#006088", + "event": "#006088", + "punct": "#5a5292", + "punctuation": "#5a5292", + "escapeSequence": "#af201f", "function": { - "foreground": "#006f9a", + "foreground": "#006088", "italic": true }, "function.declaration": { - "foreground": "#675ea6", + "foreground": "#5a5292", "italic": false, "bold": true }, "function.declaration.async": { - "foreground": "#915c00", + "foreground": "#804f00", "italic": false, "bold": true }, "method.declaration": { - "foreground": "#006f9a", + "foreground": "#006088", "italic": false, "bold": true }, "method.declaration.async": { - "foreground": "#915c00", + "foreground": "#804f00", "italic": false, "bold": true }, "method": { - "foreground": "#006f9a", + "foreground": "#006088", "italic": true }, - "macro": "#006f9a", - "label": "#31323a", + "macro": "#006088", + "label": "#2c2c34", "comment": { - "foreground": "#666675", + "foreground": "#717282", "italic": true }, - "string": "#007833", + "string": "#00692b", "keyword": { - "foreground": "#006f9a", + "foreground": "#006088", "italic": true }, - "selfKeyword": "#675ea6", - "number": "#915c00", - "regexp": "#915c00", - "boolean": "#915c00", - "bool": "#915c00", - "const": "#915c00", - "constant": "#915c00", - "operator": "#4a4b56", + "selfKeyword": "#5a5292", + "number": "#804f00", + "regexp": "#804f00", + "boolean": "#804f00", + "bool": "#804f00", + "const": "#804f00", + "constant": "#804f00", + "operator": "#41414c", "*.declaration": { "bold": true }, @@ -1370,10 +1370,10 @@ "enumMember.declaration": { "bold": false }, - "*.async": "#915c00", - "unresolvedReference": "#c42b28", - "variable.defaultLibrary": "#007833", - "variable.builtin": "#007833", + "*.async": "#804f00", + "unresolvedReference": "#af201f", + "variable.defaultLibrary": "#00692b", + "variable.builtin": "#00692b", "*.emph": { "italic": true } diff --git a/build/zed.json b/build/zed.json index a0dc21e..a2f5a3d 100644 --- a/build/zed.json +++ b/build/zed.json @@ -11,225 +11,225 @@ "accents": [], "border": "#00000000", "border.variant": "#00000000", - "border.focused": "#8c81dc", + "border.focused": "#9287e4", "border.selected": "#00000000", "border.transparent": "#00000000", "border.disabled": "#00000000", - "elevated_surface.background": "#141423", - "surface.background": "#090917", + "elevated_surface.background": "#1b1b2a", + "surface.background": "#0b0c19", "background": "#060613", - "element.background": "#8c81dc", - "element.hover": "#141423", - "element.selected": "#595a67", - "drop_target.background": "#595a6766", - "ghost_element.hover": "#141423", - "ghost_element.selected": "#595a67", - "text": "#a6a6ae", - "text.muted": "#72737e", - "status_bar.background": "#090917", - "title_bar.background": "#090917", - "toolbar.background": "#090917", - "tab_bar.background": "#090917", + "element.background": "#9287e4", + "element.hover": "#1b1b2a", + "element.selected": "#767882", + "drop_target.background": "#5f606d66", + "ghost_element.hover": "#1b1b2a", + "ghost_element.selected": "#5f606d", + "text": "#c6c6cb", + "text.muted": "#92929b", + "status_bar.background": "#0b0c19", + "title_bar.background": "#0b0c19", + "toolbar.background": "#0b0c19", + "tab_bar.background": "#0b0c19", "tab.inactive_background": "#060613", - "tab.active_background": "#141423", - "panel.background": "#090917", - "scrollbar.thumb.background": "#14142333", - "scrollbar.thumb.hover_background": "#14142377", - "scrollbar.thumb.border": "#14142333", - "scrollbar.track.background": "#090917", + "tab.active_background": "#1b1b2a", + "panel.background": "#0b0c19", + "scrollbar.thumb.background": "#1b1b2a33", + "scrollbar.thumb.hover_background": "#1b1b2a77", + "scrollbar.thumb.border": "#1b1b2a33", + "scrollbar.track.background": "#0b0c19", "scrollbar.track.border": "#00000000", - "editor.foreground": "#a6a6ae", + "editor.foreground": "#c6c6cb", "editor.background": "#060613", "editor.gutter.background": "#060613", - "editor.active_line.background": "#090917", - "editor.highlighted_line.background": "#090917", - "editor.line_number": "#72737e", - "editor.active_line_number": "#a6a6ae", + "editor.active_line.background": "#0b0c19", + "editor.highlighted_line.background": "#0b0c19", + "editor.line_number": "#92929b", + "editor.active_line_number": "#c6c6cb", "editor.wrap_guide": "#00000000", "editor.active_wrap_guide": "#00000000", "terminal.background": "#060613", "terminal.ansi.black": "#060613", - "terminal.ansi.bright_black": "#090917", - "terminal.ansi.red": "#f5564d", - "terminal.ansi.bright_red": "#ffaea2", - "terminal.ansi.green": "#00a24b", - "terminal.ansi.bright_green": "#29de78", - "terminal.ansi.yellow": "#c27e00", - "terminal.ansi.bright_yellow": "#ffb432", - "terminal.ansi.blue": "#0097ce", - "terminal.ansi.bright_blue": "#3dd1ff", - "terminal.ansi.magenta": "#8c81dc", - "terminal.ansi.bright_magenta": "#c3baff", - "terminal.ansi.cyan": "#009d96", - "terminal.ansi.bright_cyan": "#00d9cf", - "terminal.ansi.white": "#a6a6ae", - "terminal.ansi.bright_white": "#8c81dc", - "link_text.hover": "#009d96", - "conflict": "#f5564d", - "created": "#00a24b", - "deleted": "#f5564d", - "error": "#f5564d", - "hidden": "#72737e", - "hint": "#72737e", - "ignored": "#72737e", - "info": "#0097ce", - "modified": "#c27e00", - "warning": "#c27e00", + "terminal.ansi.bright_black": "#0b0c19", + "terminal.ansi.red": "#fa5f54", + "terminal.ansi.bright_red": "#ffb4a9", + "terminal.ansi.green": "#00a94f", + "terminal.ansi.bright_green": "#34e27c", + "terminal.ansi.yellow": "#ca8400", + "terminal.ansi.bright_yellow": "#ffba40", + "terminal.ansi.blue": "#009dd7", + "terminal.ansi.bright_blue": "#4bd6ff", + "terminal.ansi.magenta": "#9287e4", + "terminal.ansi.bright_magenta": "#c8bfff", + "terminal.ansi.cyan": "#00a49c", + "terminal.ansi.bright_cyan": "#14ddd3", + "terminal.ansi.white": "#c6c6cb", + "terminal.ansi.bright_white": "#9287e4", + "link_text.hover": "#00a49c", + "conflict": "#fa5f54", + "created": "#00a94f", + "deleted": "#fa5f54", + "error": "#fa5f54", + "hidden": "#92929b", + "hint": "#92929b", + "ignored": "#92929b", + "info": "#009dd7", + "modified": "#ca8400", + "warning": "#ca8400", "players": [], "syntax": { "namespace": { - "color": "#00a24b" + "color": "#00a94f" }, "class": { - "color": "#0097ce" + "color": "#009dd7" }, "class.abstract": { - "color": "#c27e00" + "color": "#ca8400" }, "enum": { - "color": "#00a24b" + "color": "#00a94f" }, "interface": { - "color": "#c27e00" + "color": "#ca8400" }, "struct": { - "color": "#0097ce" + "color": "#009dd7" }, "typeParameter": { - "color": "#00a24b" + "color": "#00a94f" }, "type": { - "color": "#0097ce" + "color": "#009dd7" }, "parameter": { - "color": "#8c81dc" + "color": "#9287e4" }, "variable": { - "color": "#8c81dc" + "color": "#9287e4" }, "variable.builtin": { - "color": "#00a24b" + "color": "#00a94f" }, "property": { - "color": "#8c81dc" + "color": "#9287e4" }, "enumMember": { - "color": "#00a24b" + "color": "#00a94f" }, "decorator": { - "color": "#0097ce" + "color": "#009dd7" }, "event": { - "color": "#0097ce" + "color": "#009dd7" }, "punct": { - "color": "#f5564d" + "color": "#fa5f54" }, "punctuation": { - "color": "#f5564d" + "color": "#fa5f54" }, "punctuation.bracket": { - "color": "#8c81dc" + "color": "#9287e4" }, "escapeSequence": { - "color": "#f5564d" + "color": "#fa5f54" }, "function": { - "color": "#0097ce", + "color": "#009dd7", "font_style": "italic" }, "method": { - "color": "#0097ce", + "color": "#009dd7", "font_style": "italic" }, "macro": { - "color": "#0097ce" + "color": "#009dd7" }, "label": { - "color": "#8b8c96" + "color": "#ababb3" }, "comment": { - "color": "#595a67", + "color": "#5f606d", "font_style": "italic" }, - "string": { "color": "#00a24b" }, + "string": { "color": "#00a94f" }, "keyword": { - "color": "#8c81dc", + "color": "#9287e4", "font_style": "italic" }, "keyword.control": { - "color": "#8c81dc", + "color": "#9287e4", "font_style": "italic" }, "number": { - "color": "#c27e00" + "color": "#ca8400" }, "string.regex": { - "color": "#c27e00" + "color": "#ca8400" }, "boolean": { - "color": "#c27e00" + "color": "#ca8400" }, "bool": { - "color": "#c27e00" + "color": "#ca8400" }, "const": { - "color": "#c27e00" + "color": "#ca8400" }, "constant": { - "color": "#c27e00" + "color": "#ca8400" }, "operator": { - "color": "#8c81dc" + "color": "#9287e4" }, "function.declaration": { - "color": "#8c81dc", + "color": "#9287e4", "font_weight": 700 }, "enum.declaration": { - "color": "#00a24b", + "color": "#00a94f", "font_weight": 700 }, "class.declaration": { - "color": "#0097ce", + "color": "#009dd7", "font_weight": 700 }, "method.declaration": { - "color": "#0097ce", + "color": "#009dd7", "font_weight": 700 }, "trait.declaration": { - "color": "#c27e00", + "color": "#ca8400", "font_weight": 700 }, "struct.declaration": { - "color": "#0097ce", + "color": "#009dd7", "font_weight": 700 }, "function.async": { - "color": "#c27e00" + "color": "#ca8400" }, "unresolvedReference": { - "color": "#f5564d" + "color": "#fa5f54" }, "namespace.defaultLibrary": { - "color": "#00a24b" + "color": "#00a94f" }, "variable.defaultLibrary": { - "color": "#00a24b" + "color": "#00a94f" }, "namespace.builtin": { - "color": "#00a24b" + "color": "#00a94f" }, "variable.builtin": { - "color": "#00a24b" + "color": "#00a94f" }, "emphasis": { - "color": "#8c81dc", + "color": "#9287e4", "font_style": "italic" }, "emphasis.strong": { - "color": "#8c81dc", + "color": "#9287e4", "font_style": "italic", "font_weight": 700 } @@ -245,225 +245,225 @@ "accents": [], "border": "#00000000", "border.variant": "#00000000", - "border.focused": "#006f9a", + "border.focused": "#006088", "border.selected": "#00000000", "border.transparent": "#00000000", "border.disabled": "#00000000", - "elevated_surface.background": "#eaebf3", - "surface.background": "#edeef5", + "elevated_surface.background": "#e7e8f0", + "surface.background": "#ebecf4", "background": "#eff0f8", - "element.background": "#006f9a", - "element.hover": "#eaebf3", - "element.selected": "#666675", - "drop_target.background": "#66667566", - "ghost_element.hover": "#eaebf3", - "ghost_element.selected": "#666675", - "text": "#16161a", - "text.muted": "#4a4b56", - "status_bar.background": "#edeef5", - "title_bar.background": "#edeef5", - "toolbar.background": "#edeef5", - "tab_bar.background": "#edeef5", + "element.background": "#006088", + "element.hover": "#e7e8f0", + "element.selected": "#595967", + "drop_target.background": "#71728266", + "ghost_element.hover": "#e7e8f0", + "ghost_element.selected": "#717282", + "text": "#121317", + "text.muted": "#41414c", + "status_bar.background": "#ebecf4", + "title_bar.background": "#ebecf4", + "toolbar.background": "#ebecf4", + "tab_bar.background": "#ebecf4", "tab.inactive_background": "#eff0f8", - "tab.active_background": "#eaebf3", - "panel.background": "#edeef5", - "scrollbar.thumb.background": "#eaebf333", - "scrollbar.thumb.hover_background": "#eaebf377", - "scrollbar.thumb.border": "#eaebf333", - "scrollbar.track.background": "#edeef5", + "tab.active_background": "#e7e8f0", + "panel.background": "#ebecf4", + "scrollbar.thumb.background": "#e7e8f033", + "scrollbar.thumb.hover_background": "#e7e8f077", + "scrollbar.thumb.border": "#e7e8f033", + "scrollbar.track.background": "#ebecf4", "scrollbar.track.border": "#00000000", - "editor.foreground": "#16161a", + "editor.foreground": "#121317", "editor.background": "#eff0f8", "editor.gutter.background": "#eff0f8", - "editor.active_line.background": "#edeef5", - "editor.highlighted_line.background": "#edeef5", - "editor.line_number": "#4a4b56", - "editor.active_line_number": "#16161a", + "editor.active_line.background": "#ebecf4", + "editor.highlighted_line.background": "#ebecf4", + "editor.line_number": "#41414c", + "editor.active_line_number": "#121317", "editor.wrap_guide": "#00000000", "editor.active_wrap_guide": "#00000000", "terminal.background": "#eff0f8", "terminal.ansi.black": "#eff0f8", - "terminal.ansi.bright_black": "#edeef5", - "terminal.ansi.red": "#c42b28", - "terminal.ansi.bright_red": "#961516", - "terminal.ansi.green": "#007833", - "terminal.ansi.bright_green": "#005823", - "terminal.ansi.yellow": "#915c00", - "terminal.ansi.bright_yellow": "#6c4200", - "terminal.ansi.blue": "#006f9a", - "terminal.ansi.bright_blue": "#005174", - "terminal.ansi.magenta": "#675ea6", - "terminal.ansi.bright_magenta": "#4c447d", - "terminal.ansi.cyan": "#00746e", - "terminal.ansi.bright_cyan": "#005551", - "terminal.ansi.white": "#16161a", - "terminal.ansi.bright_white": "#006f9a", - "link_text.hover": "#00746e", - "conflict": "#c42b28", - "created": "#007833", - "deleted": "#c42b28", - "error": "#c42b28", - "hidden": "#4a4b56", - "hint": "#4a4b56", - "ignored": "#4a4b56", - "info": "#006f9a", - "modified": "#915c00", - "warning": "#915c00", + "terminal.ansi.bright_black": "#ebecf4", + "terminal.ansi.red": "#af201f", + "terminal.ansi.bright_red": "#860f11", + "terminal.ansi.green": "#00692b", + "terminal.ansi.bright_green": "#004d1d", + "terminal.ansi.yellow": "#804f00", + "terminal.ansi.bright_yellow": "#5f3900", + "terminal.ansi.blue": "#006088", + "terminal.ansi.bright_blue": "#004765", + "terminal.ansi.magenta": "#5a5292", + "terminal.ansi.bright_magenta": "#423b6e", + "terminal.ansi.cyan": "#006560", + "terminal.ansi.bright_cyan": "#004a46", + "terminal.ansi.white": "#121317", + "terminal.ansi.bright_white": "#006088", + "link_text.hover": "#006560", + "conflict": "#af201f", + "created": "#00692b", + "deleted": "#af201f", + "error": "#af201f", + "hidden": "#41414c", + "hint": "#41414c", + "ignored": "#41414c", + "info": "#006088", + "modified": "#804f00", + "warning": "#804f00", "players": [], "syntax": { "namespace": { - "color": "#007833" + "color": "#00692b" }, "class": { - "color": "#006f9a" + "color": "#006088" }, "class.abstract": { - "color": "#915c00" + "color": "#804f00" }, "enum": { - "color": "#007833" + "color": "#00692b" }, "interface": { - "color": "#915c00" + "color": "#804f00" }, "struct": { - "color": "#006f9a" + "color": "#006088" }, "typeParameter": { - "color": "#007833" + "color": "#00692b" }, "type": { - "color": "#006f9a" + "color": "#006088" }, "parameter": { - "color": "#675ea6" + "color": "#5a5292" }, "variable": { - "color": "#675ea6" + "color": "#5a5292" }, "variable.builtin": { - "color": "#007833" + "color": "#00692b" }, "property": { - "color": "#675ea6" + "color": "#5a5292" }, "enumMember": { - "color": "#007833" + "color": "#00692b" }, "decorator": { - "color": "#006f9a" + "color": "#006088" }, "event": { - "color": "#006f9a" + "color": "#006088" }, "punct": { - "color": "#c42b28" + "color": "#af201f" }, "punctuation": { - "color": "#c42b28" + "color": "#af201f" }, "punctuation.bracket": { - "color": "#006f9a" + "color": "#006088" }, "escapeSequence": { - "color": "#c42b28" + "color": "#af201f" }, "function": { - "color": "#006f9a", + "color": "#006088", "font_style": "italic" }, "method": { - "color": "#006f9a", + "color": "#006088", "font_style": "italic" }, "macro": { - "color": "#006f9a" + "color": "#006088" }, "label": { - "color": "#31323a" + "color": "#2c2c34" }, "comment": { - "color": "#666675", + "color": "#717282", "font_style": "italic" }, - "string": { "color": "#007833" }, + "string": { "color": "#00692b" }, "keyword": { - "color": "#675ea6", + "color": "#5a5292", "font_style": "italic" }, "keyword.control": { - "color": "#675ea6", + "color": "#5a5292", "font_style": "italic" }, "number": { - "color": "#915c00" + "color": "#804f00" }, "string.regex": { - "color": "#915c00" + "color": "#804f00" }, "boolean": { - "color": "#915c00" + "color": "#804f00" }, "bool": { - "color": "#915c00" + "color": "#804f00" }, "const": { - "color": "#915c00" + "color": "#804f00" }, "constant": { - "color": "#915c00" + "color": "#804f00" }, "operator": { - "color": "#675ea6" + "color": "#5a5292" }, "function.declaration": { - "color": "#675ea6", + "color": "#5a5292", "font_weight": 700 }, "enum.declaration": { - "color": "#007833", + "color": "#00692b", "font_weight": 700 }, "class.declaration": { - "color": "#006f9a", + "color": "#006088", "font_weight": 700 }, "method.declaration": { - "color": "#006f9a", + "color": "#006088", "font_weight": 700 }, "trait.declaration": { - "color": "#915c00", + "color": "#804f00", "font_weight": 700 }, "struct.declaration": { - "color": "#006f9a", + "color": "#006088", "font_weight": 700 }, "function.async": { - "color": "#915c00" + "color": "#804f00" }, "unresolvedReference": { - "color": "#c42b28" + "color": "#af201f" }, "namespace.defaultLibrary": { - "color": "#007833" + "color": "#00692b" }, "variable.defaultLibrary": { - "color": "#007833" + "color": "#00692b" }, "namespace.builtin": { - "color": "#007833" + "color": "#00692b" }, "variable.builtin": { - "color": "#007833" + "color": "#00692b" }, "emphasis": { - "color": "#006f9a", + "color": "#006088", "font_style": "italic" }, "emphasis.strong": { - "color": "#006f9a", + "color": "#006088", "font_style": "italic", "font_weight": 700 } diff --git a/exporters/base24.ts b/exporters/base24.ts index 6754f99..3fe9fe6 100644 --- a/exporters/base24.ts +++ b/exporters/base24.ts @@ -31,10 +31,10 @@ export const toBase24 = ( base01: surface, base02: overlay, base03: base[300], - base04: base[300], - base05: base[400], - base06: base[500], - base07: base[600], + base04: base[400], + base05: base[500], + base06: base[600], + base07: base[700], base08: red[baseShade], base09: orange[baseShade], base0A: orange[baseShade], diff --git a/exporters/gtk.ts b/exporters/gtk.ts new file mode 100644 index 0000000..88fa54b --- /dev/null +++ b/exporters/gtk.ts @@ -0,0 +1,7 @@ +import { Theme } from "../palettes.ts"; +import { toMustache } from "./mustache.ts"; + +export const toGtkTheme = async (theme: Theme) => { + const template = await Deno.readTextFile("templates/gtk.mustache"); + return toMustache(theme, template); +}; diff --git a/exporters/mustache.ts b/exporters/mustache.ts index ded3033..04dfd8b 100644 --- a/exporters/mustache.ts +++ b/exporters/mustache.ts @@ -5,6 +5,8 @@ import { objectEntries } from "../lib.ts"; import { BackgroundColors, Theme } from "../palettes.ts"; import { toBase24 } from "./base24.ts"; import { convertTheme, themeToColors } from "./outputConversion.ts"; +// @ts-types="npm:@types/chroma-js@2" +import chroma from "chroma"; export const toMustache = ( theme: Theme, @@ -15,9 +17,10 @@ export const toMustache = ( convertTheme(theme, "HEX"), (color) => color.hex(), ); + const { scheme: _, ...base24 } = toBase24(theme); const hexObject = { ...toMustacheList(theme, hexTheme), - ...toBase24(theme), + ...base24, }; const hex: Record = fromObjectEntries( objectEntries(hexObject).map(( @@ -25,6 +28,15 @@ export const toMustache = ( ) => [`${key}-hex`, value.startsWith("#") ? value.slice(1) : value]), ); + const hexDecimal: Record = objectEntries(hexObject) + .reduce((acc, [key, color]) => { + const [r, g, b] = chroma(color).rgb(); + acc[`${key}-dec-r`] = r.toString(); + acc[`${key}-dec-g`] = g.toString(); + acc[`${key}-dec-b`] = b.toString(); + return acc; + }, {} as Record); + // preferred over hex if available, as it's more accurate const lchTheme = themeToColors(convertTheme(theme, "LCH"), (color) => { const [l, c, h] = color.lch(); @@ -42,6 +54,7 @@ export const toMustache = ( "scheme-author": "Kleur Contributors", polarity: theme.polarity, ...hex, + ...hexDecimal, ...lch, ...extra, }; diff --git a/flake.lock b/flake.lock index fd63a9b..5ffa75b 100644 --- a/flake.lock +++ b/flake.lock @@ -54,11 +54,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1720906138, - "narHash": "sha256-tEY8vHDE0psT5qH1RERdZmYGVcMi4yf4WLrBuJ04EBQ=", + "lastModified": 1720955038, + "narHash": "sha256-GaliJqfFwyYxReFywxAa8orCO+EnDq2NK2F+5aSc8vo=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "d55afb5fc2e24e0852c9da179fbe2a74a2687697", + "rev": "aa247c0c90ecf4ae7a032c54fdc21b91ca274062", "type": "github" }, "original": { diff --git a/generate.ts b/generate.ts index 146e63b..c63d434 100644 --- a/generate.ts +++ b/generate.ts @@ -29,7 +29,7 @@ export const convertPaletteToColors = ( name, // @ts-expect-error this works in chroma-js colorKeys: [color.hex()], - ratios: [1.45, 2.06, 2.95, 4.27, 6.05, 8.37, 11.34, 14.89], + ratios: [1.2, 2.26, 3.24, 4.57, 6.55, 8.87, 11.84, 15.29], colorspace: "OKLCH", smooth: true, output: "OKLCH", @@ -41,7 +41,7 @@ export const convertPaletteToColors = ( name, // @ts-expect-error this works in chroma-js colorKeys: [color.hex()], - ratios: [1.45, 2.06, 2.95, 4.27, 6.05, 8.37, 11.34, 14.89], + ratios: [1.2, 2.06, 2.95, 4.27, 6.05, 8.37, 11.34, 14.89], colorspace: "OKLCH", smooth: true, output: "OKLCH", diff --git a/mod.ts b/mod.ts index e31abd4..dbd2d84 100644 --- a/mod.ts +++ b/mod.ts @@ -20,8 +20,8 @@ export const dark = colorsToTheme( }, (background) => ({ background, - surface: background.set("oklch.l", 0.15), - overlay: background.set("oklch.l", 0.2), + surface: background.set("oklch.l", 0.16), + overlay: background.set("oklch.l", 0.23), }), ); @@ -33,19 +33,19 @@ const lightColors = convertPaletteToColors(palettes.light, { export const light = colorsToTheme( { name: "Light", - baseShade: 300, - brightShade: 400, + baseShade: 400, + brightShade: 500, polarity: "light", }, lightColors, { lightness: 95, - contrast: 2, + contrast: 1.4, saturation: 100, }, (background) => ({ background, - surface: background.darken(0.05), - overlay: background.darken(0.1), + surface: background.darken(0.08), + overlay: background.darken(0.16), }), ); diff --git a/templates/gtk.mustache b/templates/gtk.mustache new file mode 100644 index 0000000..bbea62a --- /dev/null +++ b/templates/gtk.mustache @@ -0,0 +1,89 @@ +/** for gtk 3 and 4 **/ +@define-color accent_color #{{primary-hex}}; +@define-color accent_bg_color #{{primary-100-hex}}; +@define-color accent_fg_color #{{primary-hex}}; +@define-color destructive_color #{{red-hex}}; +@define-color destructive_bg_color #{{red-100-hex}}; +@define-color destructive_fg_color #{{red-hex}}; +@define-color success_color #{{green-hex}}; +@define-color success_bg_color #{{green-100-hex}}; +@define-color success_fg_color #{{green-hex}}; +@define-color warning_color #{{orange-hex}}; +@define-color warning_bg_color #{{orange-100-hex}}; +@define-color warning_fg_color #{{orange-hex}}; +@define-color error_color #{{red-hex}}; +@define-color error_bg_color #{{red-100-hex}}; +@define-color error_fg_color #{{red-hex}}; +@define-color window_bg_color #{{background-hex}}; +@define-color window_fg_color #{{base07-hex}}; +@define-color view_bg_color #{{background-hex}}; +@define-color view_fg_color #{{base-800-hex}}; +@define-color headerbar_bg_color #{{surface-hex}}; +@define-color headerbar_fg_color #{{base07-hex}}; +@define-color headerbar_border_color rgba({{surface-dec-r}}, {{surface-dec-g}}, {{surface-dec-b}}, 0.7); +@define-color headerbar_backdrop_color @window_bg_color; +@define-color headerbar_shade_color rgba(0, 0, 0, 0.07); +@define-color headerbar_darker_shade_color rgba(0, 0, 0, 0.07); +@define-color sidebar_bg_color #{{surface-hex}}; +@define-color sidebar_fg_color #{{base07-hex}}; +@define-color sidebar_backdrop_color @window_bg_color; +@define-color sidebar_shade_color rgba(0, 0, 0, 0.07); +@define-color secondary_sidebar_bg_color @sidebar_bg_color; +@define-color secondary_sidebar_fg_color @sidebar_fg_color; +@define-color secondary_sidebar_backdrop_color @sidebar_backdrop_color; +@define-color secondary_sidebar_shade_color @sidebar_shade_color; +@define-color card_bg_color #{{surface-hex}}; +@define-color card_fg_color #{{base07-hex}}; +@define-color card_shade_color rgba(0, 0, 0, 0.07); +@define-color dialog_bg_color #{{surface-hex}}; +@define-color dialog_fg_color #{{base07-hex}}; +@define-color popover_bg_color #{{surface-hex}}; +@define-color popover_fg_color #{{base07-hex}}; +@define-color popover_shade_color rgba(0, 0, 0, 0.07); +@define-color shade_color rgba(0, 0, 0, 0.07); +@define-color scrollbar_outline_color #{{overlay-hex}}; +@define-color blue_1 #{{blue-200-hex}}; +@define-color blue_2 #{{blue-300-hex}}; +@define-color blue_3 #{{blue-400-hex}}; +@define-color blue_4 #{{blue-500-hex}}; +@define-color blue_5 #{{blue-600-hex}}; +@define-color green_1 #{{green-200-hex}}; +@define-color green_2 #{{green-300-hex}}; +@define-color green_3 #{{green-400-hex}}; +@define-color green_4 #{{green-500-hex}}; +@define-color green_5 #{{green-600-hex}}; +@define-color yellow_1 #{{yellow-200-hex}}; +@define-color yellow_2 #{{yellow-300-hex}}; +@define-color yellow_3 #{{yellow-300-hex}}; +@define-color yellow_4 #{{yellow-400-hex}}; +@define-color yellow_5 #{{yellow-500-hex}}; +@define-color orange_1 #{{orange-200-hex}}; +@define-color orange_2 #{{orange-300-hex}}; +@define-color orange_3 #{{orange-400-hex}}; +@define-color orange_4 #{{orange-500-hex}}; +@define-color orange_5 #{{orange-600-hex}}; +@define-color red_1 #{{red-200-hex}}; +@define-color red_2 #{{red-300-hex}}; +@define-color red_3 #{{red-400-hex}}; +@define-color red_4 #{{red-500-hex}}; +@define-color red_5 #{{red-600-hex}}; +@define-color purple_1 #{{purple-200-hex}}; +@define-color purple_2 #{{purple-300-hex}}; +@define-color purple_3 #{{purple-300-hex}}; +@define-color purple_4 #{{purple-400-hex}}; +@define-color purple_5 #{{purple-500-hex}}; +@define-color brown_1 #{{base0F-hex}}; +@define-color brown_2 #{{base0F-hex}}; +@define-color brown_3 #{{base0F-hex}}; +@define-color brown_4 #{{base0F-hex}}; +@define-color brown_5 #{{base0F-hex}}; +@define-color light_1 #{{overlay-hex}}; +@define-color light_2 #{{overlay-hex}}; +@define-color light_3 #{{overlay-hex}}; +@define-color light_4 #{{overlay-hex}}; +@define-color light_5 #{{overlay-hex}}; +@define-color dark_1 #{{surface-hex}}; +@define-color dark_2 #{{surface-hex}}; +@define-color dark_3 #{{surface-hex}}; +@define-color dark_4 #{{surface-hex}}; +@define-color dark_5 #{{surface-hex}};