mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
feat: simplified themes module
This commit is contained in:
parent
b0fdd1d958
commit
a5ec879db0
119 changed files with 2045 additions and 4624 deletions
|
@ -1,337 +1,30 @@
|
|||
let
|
||||
currentTheme = gruvbox-dark;
|
||||
# Ayu
|
||||
ayu-dark = "ayu-dark";
|
||||
ayu-light = "ayu-light";
|
||||
ayu-mirage = "ayu-mirage";
|
||||
# Catppuccin
|
||||
currentTheme = catppuccin-mocha;
|
||||
|
||||
catppuccin-frappe = "catppuccin-frappe";
|
||||
catppuccin-latte = "catppuccin-latte";
|
||||
catppuccin-macchiato = "catppuccin-macchiato";
|
||||
catppuccin-mocha = "catppuccin-mocha";
|
||||
# Dracula
|
||||
dracula = "dracula";
|
||||
# Gruvbox
|
||||
gruvbox-dark = "gruvbox-dark";
|
||||
gruvbox-light = "gruvbox-light";
|
||||
# Houston
|
||||
houston = "houston";
|
||||
# Kanagawa
|
||||
kanagawa-dragon = "kanagawa-dragon";
|
||||
kanagawa-lotus = "kanagawa-lotus";
|
||||
kanagawa-wave = "kanagawa-wave";
|
||||
# Laserwave
|
||||
laserwave = "laserwave";
|
||||
#Lunar
|
||||
lunar = "lunar";
|
||||
# Material
|
||||
material-darker = "material-darker";
|
||||
material-deep-ocean = "material-deep-ocean";
|
||||
material-forest = "material-forest";
|
||||
material-lighter = "material-lighter";
|
||||
material-oceanic = "material-oceanic";
|
||||
material-palenight = "material-palenight";
|
||||
material-sandy-beach = "material-sandy-beach";
|
||||
material-sky-blue = "material-sky-blue";
|
||||
material-space = "material-space";
|
||||
material-volcano = "material-volcano";
|
||||
# Monokai
|
||||
monokai = "monokai";
|
||||
# Night Owl
|
||||
night-owl = "night-owl";
|
||||
# Nord
|
||||
nord = "nord";
|
||||
#Ocean Next
|
||||
ocean-next = "ocean-next";
|
||||
# One Dark
|
||||
one-dark = "one-dark";
|
||||
# Plastic
|
||||
plastic = "plastic";
|
||||
# Poimandres
|
||||
poimandres-base = "poimandres-base";
|
||||
poimandres-storm = "poimandres-storm";
|
||||
# Rosepine
|
||||
rosepine-base = "rosepine";
|
||||
rosepine-moon = "rosepine-moon";
|
||||
rosepine-dawn = "rosepine-dawn";
|
||||
# Tokyo Night
|
||||
tokyo-night-night = "tokyo-night-night";
|
||||
tokyo-night-storm = "tokyo-night-storm";
|
||||
tokyo-night-day = "tokyo-night-day";
|
||||
# Solorized
|
||||
solorized-dark = "solorized-dark";
|
||||
solorized-light = "solorized-light";
|
||||
# Synthwave 84
|
||||
synthwave-84 = "synthwave-84";
|
||||
# Vesper
|
||||
vesper = "vesper";
|
||||
# Wasp
|
||||
wasp-dark = "wasp-dark";
|
||||
wasp-light = "wasp-light";
|
||||
|
||||
errorMessage = "Unknown theme: ${currentTheme}";
|
||||
|
||||
mkThemeMap =
|
||||
themes: themeColours:
|
||||
if currentTheme == builtins.head themes then
|
||||
builtins.head themeColours
|
||||
else if themes == [ ] then
|
||||
throw errorMessage
|
||||
else
|
||||
mkThemeMap (builtins.tail themes) (builtins.tail themeColours);
|
||||
|
||||
mapColour =
|
||||
# Ayu
|
||||
ayu-darkColour: ayu-lightColour: ayu-mirageColour:
|
||||
# Catppuccin
|
||||
catppuccin-frappeColour: catppuccin-latteColour: catppuccin-macchiatoColour: catppuccin-mochaColour:
|
||||
# Dracula
|
||||
draculaColour:
|
||||
# Gruvbox
|
||||
gruvbox-darkColour: gruvbox-lightColour:
|
||||
# Houston
|
||||
houstonColour:
|
||||
# Kanagawa
|
||||
kanagawa-dragonColour: kanagawa-lotusColour: kanagawa-waveColour:
|
||||
# Laserwave
|
||||
laserwaveColour:
|
||||
# Lunar
|
||||
lunarColour:
|
||||
# Material
|
||||
material-darkerColour: material-deep-oceanColour: material-forestColour: material-lighterColour: material-oceanicColour: material-palenightColour: material-sandy-beachColour: material-sky-blueColour: material-spaceColour: material-volcanoColour:
|
||||
# Monokai
|
||||
monokaiColour:
|
||||
# Night Owl
|
||||
night-owlColour:
|
||||
# Nord
|
||||
nordColour:
|
||||
# Ocean Next
|
||||
ocean-nextColour:
|
||||
# One Dark
|
||||
one-darkColour:
|
||||
# Plastic
|
||||
plasticColour:
|
||||
# Poimandres
|
||||
poimandres-baseColour: poimandres-stormColour:
|
||||
# Rosepine
|
||||
rosepine-baseColour: rosepine-dawnColour: rosepine-moonColour:
|
||||
# Solorized
|
||||
solorized-darkColour: solorized-lightColour:
|
||||
# Synthwave 84
|
||||
synthwave-84Colour:
|
||||
# Tokyo Night
|
||||
tokyo-night-dayColour: tokyo-night-nightColour: tokyo-night-stormColour:
|
||||
# Vesper
|
||||
vesperColour:
|
||||
# Wasp
|
||||
wasp-darkColour: wasp-lightColour:
|
||||
mkThemeMap
|
||||
[
|
||||
# Ayu
|
||||
ayu-dark
|
||||
ayu-light
|
||||
ayu-mirage
|
||||
# Catppuccin
|
||||
catppuccin-frappe
|
||||
catppuccin-latte
|
||||
catppuccin-macchiato
|
||||
catppuccin-mocha
|
||||
# Dracula
|
||||
dracula
|
||||
# Gruvbox
|
||||
gruvbox-dark
|
||||
gruvbox-light
|
||||
# Houston
|
||||
houston
|
||||
# Kanagawa
|
||||
kanagawa-dragon
|
||||
kanagawa-lotus
|
||||
kanagawa-wave
|
||||
# Laserwave
|
||||
laserwave
|
||||
# Lunar
|
||||
lunar
|
||||
# Material
|
||||
material-darker
|
||||
material-deep-ocean
|
||||
material-forest
|
||||
material-lighter
|
||||
material-oceanic
|
||||
material-palenight
|
||||
material-sandy-beach
|
||||
material-sky-blue
|
||||
material-space
|
||||
material-volcano
|
||||
# Monokai
|
||||
monokai
|
||||
# Night Owl
|
||||
night-owl
|
||||
# Nord
|
||||
nord
|
||||
# Ocean Next
|
||||
ocean-next
|
||||
# One Dark
|
||||
one-dark
|
||||
# Plastic
|
||||
plastic
|
||||
# Poimandres
|
||||
poimandres-base
|
||||
poimandres-storm
|
||||
# Rosepine
|
||||
rosepine-base
|
||||
rosepine-dawn
|
||||
rosepine-moon
|
||||
# Solorized
|
||||
solorized-dark
|
||||
solorized-light
|
||||
# Synthwave 84
|
||||
synthwave-84
|
||||
# Tokyo Night
|
||||
tokyo-night-day
|
||||
tokyo-night-night
|
||||
tokyo-night-storm
|
||||
# Vesper
|
||||
vesper
|
||||
# Wasp
|
||||
wasp-dark
|
||||
wasp-light
|
||||
]
|
||||
[
|
||||
# Ayu
|
||||
ayu-darkColour
|
||||
ayu-lightColour
|
||||
ayu-mirageColour
|
||||
# Catppuccin
|
||||
catppuccin-frappeColour
|
||||
catppuccin-latteColour
|
||||
catppuccin-macchiatoColour
|
||||
catppuccin-mochaColour
|
||||
# Dracula
|
||||
draculaColour
|
||||
# Gruvbox
|
||||
gruvbox-darkColour
|
||||
gruvbox-lightColour
|
||||
# Houston
|
||||
houstonColour
|
||||
# Kanagawa
|
||||
kanagawa-dragonColour
|
||||
kanagawa-lotusColour
|
||||
kanagawa-waveColour
|
||||
# Laserwave
|
||||
laserwaveColour
|
||||
# Lunar
|
||||
lunarColour
|
||||
# Material
|
||||
material-darkerColour
|
||||
material-deep-oceanColour
|
||||
material-forestColour
|
||||
material-lighterColour
|
||||
material-oceanicColour
|
||||
material-palenightColour
|
||||
material-sandy-beachColour
|
||||
material-sky-blueColour
|
||||
material-spaceColour
|
||||
material-volcanoColour
|
||||
# Monokai
|
||||
monokaiColour
|
||||
# Night Owl
|
||||
night-owlColour
|
||||
# Nord
|
||||
nordColour
|
||||
# Ocean Next
|
||||
ocean-nextColour
|
||||
# One Dark
|
||||
one-darkColour
|
||||
# Plastic
|
||||
plasticColour
|
||||
# Poimandres
|
||||
poimandres-baseColour
|
||||
poimandres-stormColour
|
||||
# Rosepine
|
||||
rosepine-baseColour
|
||||
rosepine-dawnColour
|
||||
rosepine-moonColour
|
||||
# Solorized
|
||||
solorized-darkColour
|
||||
solorized-lightColour
|
||||
# Synthwave 84
|
||||
synthwave-84Colour
|
||||
# Tokyo Night
|
||||
tokyo-night-dayColour
|
||||
tokyo-night-nightColour
|
||||
tokyo-night-stormColour
|
||||
# Vesper
|
||||
vesperColour
|
||||
# Wasp
|
||||
wasp-darkColour
|
||||
wasp-lightColour
|
||||
];
|
||||
in
|
||||
{
|
||||
themes = {
|
||||
currentTheme = currentTheme;
|
||||
font = "MonaspiceRn Nerd Font";
|
||||
schemes =
|
||||
font = {
|
||||
name = "MonaspiceRn Nerd Font";
|
||||
};
|
||||
palettes =
|
||||
let
|
||||
schemePath = ./schemes;
|
||||
ayuPath = /ayu;
|
||||
palettePath = ./palettes;
|
||||
catppuccinPath = /catppuccin;
|
||||
gruvboxPath = /gruvbox;
|
||||
kanagawaPath = /kanagawa;
|
||||
materialPath = /material;
|
||||
poimandresPath = /poimandres;
|
||||
rosepinePath = /rosepine;
|
||||
toyko-nightPath = /tokyo-night;
|
||||
solarizedPath = /solarized;
|
||||
waspPath = /wasp;
|
||||
in
|
||||
{
|
||||
${ayu-dark} = import (schemePath + ayuPath + /dark);
|
||||
${ayu-light} = import (schemePath + ayuPath + /light);
|
||||
${ayu-mirage} = import (schemePath + ayuPath + /mirage);
|
||||
${catppuccin-frappe} = import (schemePath + catppuccinPath + /frappe);
|
||||
${catppuccin-latte} = import (schemePath + catppuccinPath + /latte);
|
||||
${catppuccin-macchiato} = import (schemePath + catppuccinPath + /macchiato);
|
||||
${catppuccin-mocha} = import (schemePath + catppuccinPath + /mocha);
|
||||
${dracula} = import (schemePath + /dracula);
|
||||
${gruvbox-dark} = import (schemePath + gruvboxPath + /dark);
|
||||
${gruvbox-light} = import (schemePath + gruvboxPath + /light);
|
||||
${houston} = import (schemePath + /houston);
|
||||
${kanagawa-dragon} = import (schemePath + kanagawaPath + /dragon);
|
||||
${kanagawa-lotus} = import (schemePath + kanagawaPath + /lotus);
|
||||
${kanagawa-wave} = import (schemePath + kanagawaPath + /wave);
|
||||
${laserwave} = import (schemePath + /laserwave);
|
||||
${lunar} = import (schemePath + /lunar);
|
||||
${material-darker} = import (schemePath + materialPath + /darker);
|
||||
${material-lighter} = import (schemePath + materialPath + /lighter);
|
||||
${material-oceanic} = import (schemePath + materialPath + /oceanic);
|
||||
${material-palenight} = import (schemePath + materialPath + /palenight);
|
||||
${material-deep-ocean} = import (schemePath + materialPath + /deep-ocean);
|
||||
${material-forest} = import (schemePath + materialPath + /forest);
|
||||
${material-sky-blue} = import (schemePath + materialPath + /sky-blue);
|
||||
${material-sandy-beach} = import (schemePath + materialPath + /sandy-beach);
|
||||
${material-volcano} = import (schemePath + materialPath + /volcano);
|
||||
${material-space} = import (schemePath + materialPath + /space);
|
||||
${monokai} = import (schemePath + /monokai);
|
||||
${night-owl} = import (schemePath + /night-owl);
|
||||
${nord} = import (schemePath + /nord);
|
||||
${ocean-next} = import (schemePath + /ocean-next);
|
||||
${one-dark} = import (schemePath + /one-dark);
|
||||
${poimandres-base} = import (schemePath + poimandresPath + /base);
|
||||
${poimandres-storm} = import (schemePath + poimandresPath + /storm);
|
||||
${rosepine-base} = import (schemePath + rosepinePath + /base);
|
||||
${rosepine-dawn} = import (schemePath + rosepinePath + /dawn);
|
||||
${rosepine-moon} = import (schemePath + rosepinePath + /moon);
|
||||
${tokyo-night-night} = import (schemePath + toyko-nightPath + /night);
|
||||
${tokyo-night-storm} = import (schemePath + toyko-nightPath + /storm);
|
||||
${tokyo-night-day} = import (schemePath + toyko-nightPath + /day);
|
||||
${solorized-dark} = import (schemePath + solarizedPath + /dark);
|
||||
${solorized-light} = import (schemePath + solarizedPath + /light);
|
||||
${synthwave-84} = import (schemePath + /synthwave-84);
|
||||
${vesper} = import (schemePath + /vesper);
|
||||
${wasp-dark} = import (schemePath + waspPath + /dark);
|
||||
${wasp-light} = import (schemePath + waspPath + /light);
|
||||
${catppuccin-frappe} = import (palettePath + catppuccinPath + /frappe);
|
||||
${catppuccin-latte} = import (palettePath + catppuccinPath + /latte);
|
||||
${catppuccin-macchiato} = import (palettePath + catppuccinPath + /macchiato);
|
||||
${catppuccin-mocha} = import (palettePath + catppuccinPath + /mocha);
|
||||
${dracula} = import (palettePath + /dracula);
|
||||
};
|
||||
elements = import ./elements { inherit mapColour; };
|
||||
};
|
||||
}
|
||||
|
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour, ... }:
|
||||
{
|
||||
background0 =
|
||||
mapColour "editor_bg" # ayu dark
|
||||
"editor_bg" # ayu light
|
||||
"editor_bg" # ayu mirage
|
||||
"crust" # catppuccin-frappe
|
||||
"crust" # catppuccin-latte
|
||||
"crust" # catppuccin-macchiato
|
||||
"crust" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background_hard" # gruvbox dark
|
||||
"background_hard" # gruvbox light
|
||||
"purple0" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"highlight0" # rosepine base
|
||||
"highlight0" # rosepine dawn
|
||||
"highlight0" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
background1 =
|
||||
mapColour "editor_bg" # ayu dark
|
||||
"editor_bg" # ayu light
|
||||
"editor_bg" # ayu mirage
|
||||
"base" # catppuccin-frappe
|
||||
"base" # catppuccin-latte
|
||||
"base" # catppuccin-macchiato
|
||||
"base" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background0" # gruvbox dark
|
||||
"background0" # gruvbox light
|
||||
"purple1" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"base" # rosepine base
|
||||
"base" # rosepine dawn
|
||||
"base" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
background2 =
|
||||
mapColour "editor_bg" # ayu dark
|
||||
"editor_bg" # ayu light
|
||||
"editor_bg" # ayu mirage
|
||||
"mantle" # catppuccin-frappe
|
||||
"mantle" # catppuccin-latte
|
||||
"mantle" # catppuccin-macchiato
|
||||
"mantle" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background1" # gruvbox dark
|
||||
"background1" # gruvbox light
|
||||
"purple2" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"surface" # rosepine base
|
||||
"surface" # rosepine dawn
|
||||
"surface" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
character =
|
||||
mapColour "special" # ayu dark
|
||||
"special" # ayu light
|
||||
"special" # ayu mirage
|
||||
"teal" # catppuccin-frappe
|
||||
"teal" # catppuccin-latte
|
||||
"teal" # catppuccin-macchiato
|
||||
"teal" # catppuccin-mocha
|
||||
"comment" # dracula
|
||||
"foreground0" # gruvbox dark
|
||||
"foreground0" # gruvbox light
|
||||
"gray5" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"foam" # rosepine base
|
||||
"foam" # rosepine dawn
|
||||
"foam" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
constant =
|
||||
mapColour "cosntant" # ayu dark
|
||||
"cosntant" # ayu light
|
||||
"cosntant" # ayu mirage
|
||||
"peach" # catppuccin-frappe
|
||||
"peach" # catppuccin-latte
|
||||
"peach" # catppuccin-macchiato
|
||||
"peach" # catppuccin-mocha
|
||||
"orange" # dracula
|
||||
"purpleBright" # gruvbox dark
|
||||
"purpleBright" # gruvbox light
|
||||
"peach" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"gold" # rosepine base
|
||||
"gold" # rosepine dawn
|
||||
"gold" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
constructor =
|
||||
mapColour "constant" # ayu dark
|
||||
"constant" # ayu light
|
||||
"constant" # ayu mirage
|
||||
"sapphire" # catppuccin-frappe
|
||||
"sapphire" # catppuccin-latte
|
||||
"sapphire" # catppuccin-macchiato
|
||||
"sapphire" # catppuccin-mocha
|
||||
"cyan" # dracula
|
||||
"purpleBright" # gruvbox dark
|
||||
"purpleBright" # gruvbox light
|
||||
"blue5" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"foam" # rosepine base
|
||||
"foam" # rosepine dawn
|
||||
"foam" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
# themes/elements/default.nix
|
||||
{mapColour, ...}: let
|
||||
importElement = name: import (./. + "/${name}") {inherit mapColour;};
|
||||
elementList = [
|
||||
"background0"
|
||||
"background1"
|
||||
"background2"
|
||||
"character"
|
||||
"constant"
|
||||
"constructor"
|
||||
"error"
|
||||
"function"
|
||||
"keyword"
|
||||
"label"
|
||||
"link"
|
||||
"noError"
|
||||
"operator"
|
||||
"overlay0"
|
||||
"overlay1"
|
||||
"overlay2"
|
||||
"parameter"
|
||||
"selection"
|
||||
"subtext0"
|
||||
"subtext1"
|
||||
"surface0"
|
||||
"surface1"
|
||||
"surface2"
|
||||
"text"
|
||||
"warning"
|
||||
];
|
||||
in
|
||||
builtins.foldl' (acc: name: acc // (importElement name)) {} elementList
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
error =
|
||||
mapColour "error" # ayu dark
|
||||
"error" # ayu light
|
||||
"error" # ayu mirage
|
||||
"red" # catppuccin-frappe
|
||||
"red" # catppuccin-latte
|
||||
"red" # catppuccin-macchiato
|
||||
"red" # catppuccin-mocha
|
||||
"red" # dracula
|
||||
"red" # gruvbox dark
|
||||
"red" # gruvbox light
|
||||
"red0" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"love" # rosepine base
|
||||
"love" # rosepine dawn
|
||||
"love" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
function =
|
||||
mapColour "func" # ayu dark
|
||||
"func" # ayu light
|
||||
"func" # ayu mirage
|
||||
"blue" # catppuccin-frappe
|
||||
"blue" # catppuccin-latte
|
||||
"blue" # catppuccin-macchiato
|
||||
"blue" # catppuccin-mocha
|
||||
"comment" # dracula
|
||||
"greenBright" # gruvbox dark
|
||||
"greenBright" # gruvbox light
|
||||
"blue5" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"pine" # rosepine base
|
||||
"pine" # rosepine dawn
|
||||
"pine" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
keyword =
|
||||
mapColour "keyword" # ayu dark
|
||||
"keyword" # ayu light
|
||||
"keyword" # ayu mirage
|
||||
"mauve" # catppuccin-frappe
|
||||
"mauve" # catppuccin-latte
|
||||
"mauve" # catppuccin-macchiato
|
||||
"mauve" # catppuccin-mocha
|
||||
"purple" # dracula
|
||||
"aqua" # gruvbox dark
|
||||
"aqua" # gruvbox light
|
||||
"blue6" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"iris" # rosepine base
|
||||
"iris" # rosepine dawn
|
||||
"iris" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
label =
|
||||
mapColour "tag" # ayu dark
|
||||
"tag" # ayu light
|
||||
"tag" # ayu mirage
|
||||
"rosewater" # catppuccin-frappe
|
||||
"rosewater" # catppuccin-latte
|
||||
"rosewater" # catppuccin-macchiato
|
||||
"rosewater" # catppuccin-mocha
|
||||
"pink" # dracula
|
||||
"blue" # gruvbox dark
|
||||
"blue" # gruvbox light
|
||||
"purple2" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"rose" # rosepine base
|
||||
"rose" # rosepine dawn
|
||||
"rose" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
link =
|
||||
mapColour "string" # ayu dark
|
||||
"string" # ayu light
|
||||
"string" # ayu mirage
|
||||
"lavender" # catppuccin-frappe
|
||||
"lavender" # catppuccin-latte
|
||||
"lavender" # catppuccin-macchiato
|
||||
"lavender" # catppuccin-mocha
|
||||
"cyan" # dracula
|
||||
"orange" # gruvbox dark
|
||||
"orange" # gruvbox light
|
||||
"blue6" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"iris" # rosepine base
|
||||
"iris" # rosepine dawn
|
||||
"iris" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
noError =
|
||||
mapColour "regex" # ayu dark
|
||||
"regex" # ayu light
|
||||
"regex" # ayu mirage
|
||||
"green" # catppuccin-frappe
|
||||
"green" # catppuccin-latte
|
||||
"green" # catppuccin-macchiato
|
||||
"green" # catppuccin-mocha
|
||||
"green" # dracula
|
||||
"green" # gruvbox dark
|
||||
"green" # gruvbox light
|
||||
"green0" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"pine" # rosepine base
|
||||
"pine" # rosepine dawn
|
||||
"pine" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
operator =
|
||||
mapColour "operator" # ayu dark
|
||||
"operator" # ayu light
|
||||
"operator" # ayu mirage
|
||||
"sky" # catppuccin-frappe
|
||||
"sky" # catppuccin-latte
|
||||
"sky" # catppuccin-macchiato
|
||||
"sky" # catppuccin-mocha
|
||||
"cyan" # dracula
|
||||
"redBright" # gruvbox dark
|
||||
"redBright" # gruvbox light
|
||||
"grayBlue" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"foam" # rosefoam base
|
||||
"foam" # rosefoam dawn
|
||||
"foam" # rosefoam moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
overlay0 =
|
||||
mapColour "ui_selection" # ayu dark
|
||||
"ui_selection_active" # ayu light
|
||||
"ui_selection_active" # ayu mirage
|
||||
"overlay0" # catppuccin-frappe
|
||||
"overlay0" # catppuccin-latte
|
||||
"overlay0" # catppuccin-macchiato
|
||||
"overlay0" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background2" # gruvbox dark
|
||||
"background2" # gruvbox light
|
||||
"purple3" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"muted" # rosepine base
|
||||
"muted" # rosepine dawn
|
||||
"muted" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
overlay1 =
|
||||
mapColour "ui_selection" # ayu dark
|
||||
"ui_selection_active" # ayu light
|
||||
"ui_selection_active" # ayu mirage
|
||||
"overlay1" # catppuccin-latte
|
||||
"overlay1" # catppuccin-frappe
|
||||
"overlay1" # catppuccin-macchiato
|
||||
"overlay1" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background3" # gruvbox dark
|
||||
"background3" # gruvbox light
|
||||
"purple4" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"subtle" # rosepine base
|
||||
"subtle" # rosepine dawn
|
||||
"subtle" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
overlay2 =
|
||||
mapColour "ui_selection" # ayu dark
|
||||
"ui_selection_active" # ayu light
|
||||
"ui_selection_active" # ayu mirage
|
||||
"overlay2" # catppuccin-latte
|
||||
"overlay2" # catppuccin-frappe
|
||||
"overlay2" # catppuccin-macchiato
|
||||
"overlay2" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background4" # gruvbox dark
|
||||
"background4" # gruvbox light
|
||||
"purple3" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"subtle" # rosepine base
|
||||
"subtle" # rosepine dawn
|
||||
"subtle" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
parameter =
|
||||
mapColour "entity" # ayu dark
|
||||
"entity" # ayu light
|
||||
"entity" # ayu mirage
|
||||
"maroon" # catppuccin-frappe
|
||||
"maroon" # catppuccin-latte
|
||||
"maroon" # catppuccin-macchiato
|
||||
"maroon" # catppuccin-mocha
|
||||
"orange" # dracula
|
||||
"gray" # gruvbox dark
|
||||
"gray" # gruvbox light
|
||||
"peach" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"love" # roselove base
|
||||
"love" # roselove dawn
|
||||
"love" # roselove moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
regex =
|
||||
mapColour "regex" # ayu dark
|
||||
"regex" # ayu light
|
||||
"regex" # ayu mirage
|
||||
"pink" # catppuccin-frappe
|
||||
"pink" # catppuccin-latte
|
||||
"pink" # catppuccin-macchiato
|
||||
"pink" # catppuccin-mocha
|
||||
"purple" # dracula
|
||||
"aqua" # gruvbox dark
|
||||
"aqua" # gruvbox light
|
||||
"blue6" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"love" # roselove base
|
||||
"love" # roselove dawn
|
||||
"love" # roselove moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
selection =
|
||||
mapColour "editor_selection" # ayu dark
|
||||
"editor_selection" # ayu light
|
||||
"editor_selection" # ayu mirage
|
||||
"flamingo" # catppuccin-latte
|
||||
"flamingo" # catppuccin-frappe
|
||||
"flamingo" # catppuccin-macchiato
|
||||
"flamingo" # catppuccin-mocha
|
||||
"pink" # dracula
|
||||
"yellow" # gruvbox dark
|
||||
"yellow" # gruvbox light
|
||||
"purple2" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"rose" # roserose base
|
||||
"rose" # roserose dawn
|
||||
"rose" # roserose moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
subtext0 =
|
||||
mapColour "editor_fg" # ayu dark
|
||||
"editor_fg" # ayu light
|
||||
"editor_fg" # ayu mirage
|
||||
"subtext0" # catppuccin-frappe
|
||||
"subtext0" # catppuccin-latte
|
||||
"subtext0" # catppuccin-macchiato
|
||||
"subtext0" # catppuccin-mocha
|
||||
"foreground" # dracula
|
||||
"foreground1" # gruvbox dark
|
||||
"foreground1" # gruvbox light
|
||||
"grey0" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"muted" # rosepine base
|
||||
"muted" # rosepine dawn
|
||||
"muted" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
subtext1 =
|
||||
mapColour "editor_fg" # ayu dark
|
||||
"editor_fg" # ayu light
|
||||
"editor_fg" # ayu mirage
|
||||
"subtext1" # catppuccin-frappe
|
||||
"subtext1" # catppuccin-latte
|
||||
"subtext1" # catppuccin-macchiato
|
||||
"subtext1" # catppuccin-mocha
|
||||
"foreground" # dracula
|
||||
"foreground3" # gruvbox dark
|
||||
"foreground3" # gruvbox light
|
||||
"grey1" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"subtle" # rosepine base
|
||||
"subtle" # rosepine dawn
|
||||
"subtle" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
surface0 =
|
||||
mapColour "ui_fg" # ayu dark
|
||||
"ui_fg" # ayu light
|
||||
"ui_fg" # ayu mirage
|
||||
"surface0" # catppuccin-frappe
|
||||
"surface0" # catppuccin-latte
|
||||
"surface0" # catppuccin-macchiato
|
||||
"surface0" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background3" # gruvbox dark
|
||||
"background3" # gruvbox light
|
||||
"purple3" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"highlight0" # rosepine base
|
||||
"highlight0" # rosepine dawn
|
||||
"highlight0" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
surface1 =
|
||||
mapColour "ui_fg" # ayu dark
|
||||
"ui_fg" # ayu light
|
||||
"ui_fg" # ayu mirage
|
||||
"surface1" # catppuccin-frappe
|
||||
"surface1" # catppuccin-latte
|
||||
"surface1" # catppuccin-macchiato
|
||||
"surface1" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background4" # gruvbox dark
|
||||
"background4" # gruvbox light
|
||||
"purple4" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"highlight1" # rosepine base
|
||||
"highlight1" # rosepine dawn
|
||||
"highlight1" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
surface2 =
|
||||
mapColour "ui_fg" # ayu dark
|
||||
"ui_fg" # ayu light
|
||||
"ui_fg" # ayu mirage
|
||||
"surface2" # catppuccin-frappe
|
||||
"surface2" # catppuccin-latte
|
||||
"surface2" # catppuccin-macchiato
|
||||
"surface2" # catppuccin-mocha
|
||||
"background" # dracula
|
||||
"background_soft" # gruvbox dark
|
||||
"background_soft" # gruvbox light
|
||||
"purple5" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"highlight2" # rosepine base
|
||||
"highlight2" # rosepine dawn
|
||||
"highlight2" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
text =
|
||||
mapColour "editor_fg" # ayu dark
|
||||
"editor_fg" # ayu light
|
||||
"editor_fg" # ayu mirage
|
||||
"text" # catppuccin-frappe
|
||||
"text" # catppuccin-latte
|
||||
"text" # catppuccin-macchiato
|
||||
"text" # catppuccin-mocha
|
||||
"foreground" # dracula
|
||||
"foreground0" # gruvbox dark
|
||||
"foreground0" # gruvbox light
|
||||
"white2" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"text" # rosepine base
|
||||
"text" # rosepine dawn
|
||||
"text" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
|
@ -1,50 +0,0 @@
|
|||
{ mapColour }:
|
||||
{
|
||||
warning =
|
||||
mapColour "accent" # ayu dark
|
||||
"accent" # ayu light
|
||||
"accent" # ayu mirage
|
||||
"yellow" # catppuccin-frappe
|
||||
"yellow" # catppuccin-latte
|
||||
"yellow" # catppuccin-macchiato
|
||||
"yellow" # catppuccin-mocha
|
||||
"yellow" # dracula
|
||||
"orange" # gruvbox dark
|
||||
"orange" # gruvbox light
|
||||
"orange0" # houston
|
||||
"" # kanagawa dragon
|
||||
"" # kanagawa lotus
|
||||
"" # kanagawa wave
|
||||
"" # laserwave
|
||||
"" # lunar
|
||||
"" # material darker
|
||||
"" # material deep ocean
|
||||
"" # material forest
|
||||
"" # material lighter
|
||||
"" # material oceanic
|
||||
"" # material palenight
|
||||
"" # material sandy beach
|
||||
"" # material sky blue
|
||||
"" # material space
|
||||
"" # material volcano
|
||||
"" # monokai
|
||||
"" # night owl
|
||||
"" # nord
|
||||
"" # ocean next
|
||||
"" # one dark
|
||||
"" # plastic
|
||||
"" # poimandres base
|
||||
"" # poimandres storm
|
||||
"gold" # rosepine base
|
||||
"gold" # rosepine dawn
|
||||
"gold" # rosepine moon
|
||||
"" # solarized dark
|
||||
"" # solarized light
|
||||
"" # synthwave 84
|
||||
"" # tokyo night day
|
||||
"" # tokyo night night
|
||||
"" # tokyo night storm
|
||||
"" # vesper
|
||||
"" # wasp dark
|
||||
""; # wasp light
|
||||
}
|
29
config/themes/palettes/catppuccin/frappe/default.nix
Executable file
29
config/themes/palettes/catppuccin/frappe/default.nix
Executable file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base00 = "303446"; # base
|
||||
base01 = "292c3c"; # mantle
|
||||
base02 = "414559"; # surface0
|
||||
base03 = "51576d"; # surface1
|
||||
base04 = "626880"; # surface2
|
||||
base05 = "c6d0f5"; # text
|
||||
base06 = "f2d5cf"; # rosewater label
|
||||
base07 = "babbf1"; # lavender
|
||||
base08 = "e78284"; # red
|
||||
base09 = "ef9f76"; # peach
|
||||
base0A = "e5c890"; # yellow
|
||||
base0B = "a6d189"; # green
|
||||
base0C = "81c8be"; # teal character
|
||||
base0D = "8caaee"; # blue function
|
||||
base0E = "ca9ee6"; # mauve
|
||||
base0F = "eebebe"; # flamingo
|
||||
base10 = "292c3c"; # mantle - darker background
|
||||
base11 = "232634"; # crust - darkest background
|
||||
base12 = "ea999c"; # maroon - bright red parameter
|
||||
base13 = "f2d5cf"; # rosewater - bright yellow
|
||||
base14 = "a6d189"; # green - bright green
|
||||
base15 = "99d1db"; # sky - bright cyan operator
|
||||
base16 = "85c1dc"; # sapphire - bright blue constructor
|
||||
base17 = "f4b8e4"; # pink - bright purple
|
||||
};
|
||||
}
|
29
config/themes/palettes/catppuccin/latte/default.nix
Executable file
29
config/themes/palettes/catppuccin/latte/default.nix
Executable file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base00 = "eff1f5"; # base
|
||||
base01 = "e6e9ef"; # mantle
|
||||
base02 = "ccd0da"; # surface0
|
||||
base03 = "bcc0cc"; # surface1
|
||||
base04 = "acb0be"; # surface2
|
||||
base05 = "4c4f69"; # text
|
||||
base06 = "dc8a78"; # rosewater
|
||||
base07 = "7287fd"; # lavender
|
||||
base08 = "d20f39"; # red
|
||||
base09 = "fe640b"; # peach
|
||||
base0A = "df8e1d"; # yellow
|
||||
base0B = "40a02b"; # green
|
||||
base0C = "179299"; # teal
|
||||
base0D = "1e66f5"; # blue
|
||||
base0E = "8839ef"; # mauve
|
||||
base0F = "dd7878"; # flamingo
|
||||
base10 = "e6e9ef"; # mantle - darker background
|
||||
base11 = "dce0e8"; # crust - darkest background
|
||||
base12 = "e64553"; # maroon - bright red
|
||||
base13 = "dc8a78"; # rosewater - bright yellow
|
||||
base14 = "40a02b"; # green - bright green
|
||||
base15 = "04a5e5"; # sky - bright cyan
|
||||
base16 = "209fb5"; # sapphire - bright blue
|
||||
base17 = "ea76cb"; # pink - bright purple
|
||||
};
|
||||
}
|
29
config/themes/palettes/catppuccin/macchiato/default.nix
Executable file
29
config/themes/palettes/catppuccin/macchiato/default.nix
Executable file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base00 = "24273a"; # base
|
||||
base01 = "1e2030"; # mantle
|
||||
base02 = "363a4f"; # surface0
|
||||
base03 = "494d64"; # surface1
|
||||
base04 = "5b6078"; # surface2
|
||||
base05 = "cad3f5"; # text
|
||||
base06 = "f4dbd6"; # rosewater
|
||||
base07 = "b7bdf8"; # lavender
|
||||
base08 = "ed8796"; # red
|
||||
base09 = "f5a97f"; # peach
|
||||
base0A = "eed49f"; # yellow
|
||||
base0B = "a6da95"; # green
|
||||
base0C = "8bd5ca"; # teal
|
||||
base0D = "8aadf4"; # blue
|
||||
base0E = "c6a0f6"; # mauve
|
||||
base0F = "f0c6c6"; # flamingo
|
||||
base10 = "1e2030"; # mantle - darker background
|
||||
base11 = "181926"; # crust - darkest background
|
||||
base12 = "ee99a0"; # maroon - bright red
|
||||
base13 = "f4dbd6"; # rosewater - bright yellow
|
||||
base14 = "a6da95"; # green - bright green
|
||||
base15 = "91d7e3"; # sky - bright cyan
|
||||
base16 = "7dc4e4"; # sapphire - bright blue
|
||||
base17 = "f5bde6"; # pink - bright purple
|
||||
};
|
||||
}
|
29
config/themes/palettes/catppuccin/mocha/default.nix
Executable file
29
config/themes/palettes/catppuccin/mocha/default.nix
Executable file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base00 = "1e1e2e"; # base
|
||||
base01 = "181825"; # mantle
|
||||
base02 = "313244"; # surface0
|
||||
base03 = "45475a"; # surface1
|
||||
base04 = "585b70"; # surface2
|
||||
base05 = "cdd6f4"; # text
|
||||
base06 = "f5e0dc"; # rosewater
|
||||
base07 = "b4befe"; # lavender
|
||||
base08 = "f38ba8"; # red
|
||||
base09 = "fab387"; # peach
|
||||
base0A = "f9e2af"; # yellow
|
||||
base0B = "a6e3a1"; # green
|
||||
base0C = "94e2d5"; # teal
|
||||
base0D = "89b4fa"; # blue
|
||||
base0E = "cba6f7"; # mauve
|
||||
base0F = "f2cdcd"; # flamingo
|
||||
base10 = "181825"; # mantle - darker background
|
||||
base11 = "11111b"; # crust - darkest background
|
||||
base12 = "eba0ac"; # maroon - bright red
|
||||
base13 = "f5e0dc"; # rosewater - bright yellow
|
||||
base14 = "a6e3a1"; # green - bright green
|
||||
base15 = "89dceb"; # sky - bright cyan
|
||||
base16 = "74c7ec"; # sapphire - bright blue
|
||||
base17 = "f5c2e7"; # pink - bright purple
|
||||
};
|
||||
}
|
29
config/themes/palettes/dracula/default.nix
Normal file
29
config/themes/palettes/dracula/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base00 = "282a36";
|
||||
base01 = "363447";
|
||||
base02 = "44475a";
|
||||
base03 = "6272a4";
|
||||
base04 = "9ea8c7";
|
||||
base05 = "f8f8f2";
|
||||
base06 = "f0f1f4";
|
||||
base07 = "ffffff";
|
||||
base08 = "ff5555";
|
||||
base09 = "ffb86c";
|
||||
base0A = "f1fa8c";
|
||||
base0B = "50fa7b";
|
||||
base0C = "8be9fd";
|
||||
base0D = "80bfff";
|
||||
base0E = "ff79c6";
|
||||
base0F = "bd93f9";
|
||||
base10 = "1e2029";
|
||||
base11 = "16171d";
|
||||
base12 = "f28c8c";
|
||||
base13 = "eef5a3";
|
||||
base14 = "a3f5b8";
|
||||
base15 = "baedf7";
|
||||
base16 = "a3ccf5";
|
||||
base17 = "f5a3d2";
|
||||
};
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
tag = "39BAE6";
|
||||
func = "FFB454";
|
||||
entity = "59C2FF";
|
||||
string = "AAD94C";
|
||||
regex = "95E6CB";
|
||||
markup = "F07178";
|
||||
keyword = "FF8F40";
|
||||
special = "E6B673";
|
||||
comment = "ACB6BF";
|
||||
constant = "D2A6FF";
|
||||
operator = "F29668";
|
||||
added = "7FD962";
|
||||
modified = "73B8FF";
|
||||
removed = "F26D78";
|
||||
editor_fg = "BFBDB6";
|
||||
editor_bg = "0D1017";
|
||||
editor_line = "131721";
|
||||
editor_selection = "409FFF";
|
||||
editor_match = "6C5980";
|
||||
editor_indent = "6C7380";
|
||||
ui_fg = "565B66";
|
||||
ui_bg = "0B0E14";
|
||||
ui_line = "11151C";
|
||||
ui_selection = "475266";
|
||||
ui_panel_bg = "0F131A";
|
||||
ui_panel_shadow = "000000";
|
||||
accent = "E6B450";
|
||||
error = "D95757";
|
||||
};
|
||||
}
|
|
@ -1,32 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
tag = "55B4D4";
|
||||
func = "F2AE49";
|
||||
entity = "399EE6";
|
||||
string = "86B300";
|
||||
regex = "4CBF99";
|
||||
markup = "F07171";
|
||||
keyword = "FA8D3E";
|
||||
special = "E6BA7E";
|
||||
comment = "787B80";
|
||||
constant = "A37ACC";
|
||||
operator = "ED9366";
|
||||
added = "6CBF43";
|
||||
modified = "478ACC";
|
||||
removed = "FF7383";
|
||||
editor_fg = "5C6166";
|
||||
editor_bg = "FCFCFC";
|
||||
editor_selection = "035BD6";
|
||||
editor_match = "9F40FF";
|
||||
ui_fg = "8A9199";
|
||||
ui_bg = "F8F9FA";
|
||||
ui_line = "6B7D8F";
|
||||
ui_selection_active = "56728F";
|
||||
ui_selection_normal = "6B7D8F";
|
||||
ui_panel_bg = "F3F4F5";
|
||||
ui_panel_shadow = "000000";
|
||||
accent = "FFAA33";
|
||||
error = "E65050";
|
||||
};
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
tag = "5CCFE6";
|
||||
func = "FFD173";
|
||||
entity = "73D0FF";
|
||||
string = "D5FF80";
|
||||
regex = "95E6CB";
|
||||
markup = "F28779";
|
||||
keyword = "FFAD66";
|
||||
special = "FFDFB3";
|
||||
comment = "B8CFE6";
|
||||
constant = "DFBFFF";
|
||||
operator = "F29E74";
|
||||
added = "87D96C";
|
||||
modified = "80BFFF";
|
||||
removed = "F27983";
|
||||
editor_fg = "CCCAC2";
|
||||
editor_bg = "242936";
|
||||
editor_line = "1A1F29";
|
||||
editor_selection = "409FFF";
|
||||
editor_match = "695380";
|
||||
editor_indent = "8A9199";
|
||||
ui_fg = "707A8C";
|
||||
ui_bg = "1F2430";
|
||||
ui_line = "171B24";
|
||||
ui_selection_active = "637599";
|
||||
ui_selection_normal = "69758C";
|
||||
ui_panel_bg = "1C212B";
|
||||
ui_panel_shadow = "12151C";
|
||||
accent = "FFCC66";
|
||||
error = "FF6666";
|
||||
};
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
rosewater = "f2d5cf";
|
||||
flamingo = "eebebe";
|
||||
pink = "f4b8e4";
|
||||
mauve = "ca9ee6";
|
||||
red = "e78284";
|
||||
maroon = "ea999c";
|
||||
peach = "ef9f76";
|
||||
yellow = "e5c890";
|
||||
green = "a6d189";
|
||||
teal = "81c8be";
|
||||
sky = "99d1db";
|
||||
sapphire = "85c1dc";
|
||||
blue = "8caaee";
|
||||
lavender = "babbf1";
|
||||
text = "c6d0f5";
|
||||
subtext1 = "b5bfe2";
|
||||
subtext0 = "a5adce";
|
||||
overlay2 = "949cbb";
|
||||
overlay1 = "838ba7";
|
||||
overlay0 = "737994";
|
||||
surface2 = "626880";
|
||||
surface1 = "51576d";
|
||||
surface0 = "414559";
|
||||
base = "303446";
|
||||
mantle = "292c3c";
|
||||
crust = "232634";
|
||||
};
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
rosewater = "dc8a78";
|
||||
flamingo = "dd7878";
|
||||
pink = "ea76cb";
|
||||
mauve = "8839ef";
|
||||
red = "d20f39";
|
||||
maroon = "e64553";
|
||||
peach = "fe640b";
|
||||
yellow = "df8e1d";
|
||||
green = "40a02b";
|
||||
teal = "179299";
|
||||
sky = "04a5e5";
|
||||
sapphire = "209fb5";
|
||||
blue = "1e66f5";
|
||||
lavender = "7287fd";
|
||||
text = "4c4f69";
|
||||
subtext1 = "5c5f77";
|
||||
subtext0 = "6c6f85";
|
||||
overlay2 = "7c7f93";
|
||||
overlay1 = "8c8fa1";
|
||||
overlay0 = "9ca0b0";
|
||||
surface2 = "acb0be";
|
||||
surface1 = "bcc0cc";
|
||||
surface0 = "ccd0da";
|
||||
base = "eff1f5";
|
||||
mantle = "e6e9ef";
|
||||
crust = "dce0e8";
|
||||
};
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
rosewater = "f4dbd6";
|
||||
flamingo = "f0c6c6";
|
||||
pink = "f5bde6";
|
||||
mauve = "c6a0f6";
|
||||
red = "ed8796";
|
||||
maroon = "ee99a0";
|
||||
peach = "f5a97f";
|
||||
yellow = "eed49f";
|
||||
green = "a6da95";
|
||||
teal = "8bd5ca";
|
||||
sky = "91d7e3";
|
||||
sapphire = "7dc4e4";
|
||||
blue = "8aadf4";
|
||||
lavender = "b7bdf8";
|
||||
text = "cad3f5";
|
||||
subtext1 = "b8c0e0";
|
||||
subtext0 = "a5adcb";
|
||||
overlay2 = "939ab7";
|
||||
overlay1 = "8087a2";
|
||||
overlay0 = "6e738d";
|
||||
surface2 = "5b6078";
|
||||
surface1 = "494d64";
|
||||
surface0 = "363a4f";
|
||||
base = "24273a";
|
||||
mantle = "1e2030";
|
||||
crust = "181926";
|
||||
};
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
rosewater = "f5e0dc";
|
||||
flamingo = "f2cdcd";
|
||||
pink = "f5c2e7";
|
||||
mauve = "cba6f7";
|
||||
red = "f38ba8";
|
||||
maroon = "eba0ac";
|
||||
peach = "fab387";
|
||||
yellow = "f9e2af";
|
||||
green = "a6e3a1";
|
||||
teal = "94e2d5";
|
||||
sky = "89dceb";
|
||||
sapphire = "74c7ec";
|
||||
blue = "89b4fa";
|
||||
lavender = "b4befe";
|
||||
text = "cdd6f4";
|
||||
subtext1 = "bac2de";
|
||||
subtext0 = "a6adc8";
|
||||
overlay2 = "9399b2";
|
||||
overlay1 = "7f849c";
|
||||
overlay0 = "6c7086";
|
||||
surface2 = "585b70";
|
||||
surface1 = "45475a";
|
||||
surface0 = "313244";
|
||||
base = "1e1e2e";
|
||||
mantle = "181825";
|
||||
crust = "11111b";
|
||||
};
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background = "282a36";
|
||||
currentLine = "44475a";
|
||||
selection = "44475a";
|
||||
foreground = "f8f8f2";
|
||||
comment = "6272a4";
|
||||
cyan = "8be9fd";
|
||||
green = "50fa7b";
|
||||
orange = "ffb86c";
|
||||
pink = "ff79c6";
|
||||
purple = "bd93f9";
|
||||
red = "ff5555";
|
||||
yellow = "f1fa8c";
|
||||
};
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background0 = "282828";
|
||||
background1 = "3c3836";
|
||||
background2 = "504945";
|
||||
background3 = "665c54";
|
||||
background4 = "7c6f64";
|
||||
background_hard = "1d2021";
|
||||
background_soft = "32302f";
|
||||
foreground0 = "fbf1c7";
|
||||
foreground1 = "ebdbb2";
|
||||
foreground2 = "d5c4a1";
|
||||
foreground3 = "bdae93";
|
||||
foreground4 = "a89984";
|
||||
gray = "928374";
|
||||
grayBright = "a89984";
|
||||
red = "cc241d";
|
||||
redBright = "fb4934";
|
||||
green = "98971a";
|
||||
greenBright = "b8bb26";
|
||||
yellow = "d79921";
|
||||
yellowBright = "fabd2f";
|
||||
blue = "458588";
|
||||
blueBright = "83a598";
|
||||
purple = "b16286";
|
||||
purpleBright = "d3869b";
|
||||
aqua = "689d6a";
|
||||
aquaBright = "8ec07c";
|
||||
orange = "d65d0e";
|
||||
orangeBright = "fe8019";
|
||||
};
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background0 = "fbf1c7";
|
||||
background1 = "ebdbb2";
|
||||
background2 = "d5c4a1";
|
||||
background3 = "bdae93";
|
||||
background4 = "a89984";
|
||||
background_hard = "f9f5d7";
|
||||
background_soft = "f2e5bc";
|
||||
foreground0 = "282828";
|
||||
foreground1 = "3c3836";
|
||||
foreground2 = "504945";
|
||||
foreground3 = "665c54";
|
||||
foreground4 = "7c6f64";
|
||||
gray = "7c6f64";
|
||||
grayBright = "928374";
|
||||
red = "9d0006";
|
||||
redBright = "cc241d";
|
||||
green = "79740e";
|
||||
greenBright = "98971a";
|
||||
yellow = "b57614";
|
||||
yellowBright = "d79921";
|
||||
blue = "076678";
|
||||
blueBright = "458588";
|
||||
purple = "8f3f71";
|
||||
purpleBright = "b16286";
|
||||
aqua = "427b58";
|
||||
aquaBright = "689d6a";
|
||||
orange = "af3a03";
|
||||
orangeBright = "d65d0e";
|
||||
};
|
||||
}
|
|
@ -1,46 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
blue0 = "000000";
|
||||
blue1 = "17191e";
|
||||
blue2 = "343841";
|
||||
blue3 = "495f77";
|
||||
blue4 = "004972b8";
|
||||
blue5 = "00daef";
|
||||
blue6 = "54b9ff";
|
||||
blue7 = "007acc";
|
||||
blue8 = "2d4860";
|
||||
purple0 = "17191e";
|
||||
purple1 = "2a2d34";
|
||||
purple2 = "4bf3c8";
|
||||
purple3 = "ad5dca";
|
||||
purple4 = "b2434300";
|
||||
purple5 = "dc3657";
|
||||
red0 = "dc3657";
|
||||
red1 = "f4587e";
|
||||
red2 = "ea5c0055";
|
||||
red3 = "f06788";
|
||||
red4 = "c74e39";
|
||||
red5 = "ff8551";
|
||||
green0 = "2d4860";
|
||||
green1 = "23d18b";
|
||||
green2 = "24c0cf";
|
||||
yellow0 = "fbc23b";
|
||||
yellow1 = "ee931e";
|
||||
gray0 = "cccccc";
|
||||
gray1 = "bfc1c9";
|
||||
gray2 = "858b98";
|
||||
gray3 = "80808059";
|
||||
gray4 = "a9904000";
|
||||
gray5 = "aeafad";
|
||||
black0 = "000000";
|
||||
black1 = "ffffff";
|
||||
orange0 = "dc3657";
|
||||
orange1 = "fbc23b";
|
||||
white0 = "ffffff0b";
|
||||
white1 = "ffffff25";
|
||||
white2 = "ffffff1f";
|
||||
peach = "ffd493";
|
||||
grayBlue = "eef0f9";
|
||||
};
|
||||
}
|
|
@ -1,49 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
dragonBlack0 = "0d0c0c";
|
||||
dragonBlack1 = "12120f";
|
||||
dragonBlack2 = "1D1C19";
|
||||
dragonBlack3 = "181616";
|
||||
dragonBlack4 = "282727";
|
||||
dragonBlack5 = "393836";
|
||||
dragonBlack6 = "625e5a";
|
||||
dragonWhite = "c5c9c5";
|
||||
dragonGreen = "87a987";
|
||||
dragonGreen2 = "8a9a7b";
|
||||
dragonPink = "a292a3";
|
||||
dragonOrange = "b6927b";
|
||||
dragonOrange2 = "b98d7b";
|
||||
dragonGray = "a6a69c";
|
||||
dragonGray2 = "9e9b93";
|
||||
dragonGray3 = "7a8382";
|
||||
dragonBlue2 = "8ba4b0";
|
||||
dragonViolet = "8992a7";
|
||||
dragonRed = "c4746e";
|
||||
dragonAqua = "8ea4a2";
|
||||
dragonAsh = "737c73";
|
||||
dragonTeal = "949fb5";
|
||||
dragonYellow = "c4b28a";
|
||||
waveBlue1 = "#223249";
|
||||
waveBlue2 = "#2D4F67";
|
||||
oldWhite = "#C8C093";
|
||||
fujiWhite = "#DCD7BA";
|
||||
sumiInk6 = "#54546D";
|
||||
katanaGray = "#717C7C";
|
||||
samuraiRed = "#E82424";
|
||||
springGreen = "#98BB6C";
|
||||
roninYellow = "#FF9E3B";
|
||||
dragonBlue = "#658594";
|
||||
waveAqua1 = "#6A9589";
|
||||
winterGreen = "#2B3328";
|
||||
winterYellow = "#49443C";
|
||||
winterRed = "#43242B";
|
||||
winterBlue = "#252535";
|
||||
autumnGreen = "#76946A";
|
||||
autumnRed = "#C34043";
|
||||
autumnYellow = "#DCA561";
|
||||
carpYellow = "#E6C384";
|
||||
springBlue = "#7FB4CA";
|
||||
springViolet1 = "#938AA9";
|
||||
};
|
||||
}
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
lotusInk1 = "545464";
|
||||
lotusInk2 = "43436c";
|
||||
lotusGray = "dcd7ba";
|
||||
lotusGray2 = "716e61";
|
||||
lotusGray3 = "8a8980";
|
||||
lotusWhite0 = "d5cea3";
|
||||
lotusWhite1 = "dcd5ac";
|
||||
lotusWhite2 = "e5ddb0";
|
||||
lotusWhite3 = "f2ecbc";
|
||||
lotusWhite4 = "e7dba0";
|
||||
lotusWhite5 = "e4d794";
|
||||
lotusViolet1 = "a09cac";
|
||||
lotusViolet2 = "766b90";
|
||||
lotusViolet3 = "c9cbd1";
|
||||
lotusViolet4 = "624c83";
|
||||
lotusBlue1 = "c7d7e0";
|
||||
lotusBlue2 = "b5cbd2";
|
||||
lotusBlue3 = "9fb5c9";
|
||||
lotusBlue4 = "4d699b";
|
||||
lotusBlue5 = "5d57a3";
|
||||
lotusGreen = "6f894e";
|
||||
lotusGreen2 = "6e915f";
|
||||
lotusGreen3 = "b7d0ae";
|
||||
lotusPink = "b35b79";
|
||||
lotusOrange = "cc6d00";
|
||||
lotusOrange2 = "e98a00";
|
||||
lotusYellow = "77713f";
|
||||
lotusYellow2 = "836f4a";
|
||||
lotusYellow3 = "de9800";
|
||||
lotusYellow4 = "f9d791";
|
||||
lotusRed = "c84053";
|
||||
lotusRed2 = "d7474b";
|
||||
lotusRed3 = "e82424";
|
||||
lotusRed4 = "d9a594";
|
||||
lotusAqua = "597b75";
|
||||
lotusAqua2 = "5e857a";
|
||||
lotusTeal1 = "4e8ca2";
|
||||
lotusTeal2 = "6693bf";
|
||||
lotusTeal3 = "5a7785";
|
||||
lotusCyan = "d7e3d8";
|
||||
};
|
||||
}
|
|
@ -1,45 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
sumiInk0 = "#16161D";
|
||||
sumiInk1 = "#181820";
|
||||
sumiInk2 = "#1a1a22";
|
||||
sumiInk3 = "#1F1F28";
|
||||
sumiInk4 = "#2A2A37";
|
||||
sumiInk5 = "#363646";
|
||||
sumiInk6 = "#54546D";
|
||||
waveBlue1 = "#223249";
|
||||
waveBlue2 = "#2D4F67";
|
||||
winterGreen = "#2B3328";
|
||||
winterYellow = "#49443C";
|
||||
winterRed = "#43242B";
|
||||
winterBlue = "#252535";
|
||||
autumnGreen = "#76946A";
|
||||
autumnRed = "#C34043";
|
||||
autumnYellow = "#DCA561";
|
||||
samuraiRed = "#E82424";
|
||||
roninYellow = "#FF9E3B";
|
||||
waveAqua1 = "#6A9589";
|
||||
dragonBlue = "#658594";
|
||||
oldWhite = "#C8C093";
|
||||
fujiWhite = "#DCD7BA";
|
||||
fujiGray = "#727169";
|
||||
oniViolet = "#957FB8";
|
||||
oniViolet2 = "#b8b4d0";
|
||||
crystalBlue = "#7E9CD8";
|
||||
springViolet1 = "#938AA9";
|
||||
springViolet2 = "#9CABCA";
|
||||
springBlue = "#7FB4CA";
|
||||
lightBlue = "#A3D4D5";
|
||||
waveAqua2 = "#7AA89F";
|
||||
springGreen = "#98BB6C";
|
||||
boatYellow1 = "#938056";
|
||||
boatYellow2 = "#C0A36E";
|
||||
carpYellow = "#E6C384";
|
||||
sakuraPink = "#D27E99";
|
||||
waveRed = "#E46876";
|
||||
peachRed = "#FF5D62";
|
||||
surimiOrange = "#FFA066";
|
||||
katanaGray = "#717C7C";
|
||||
};
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
keywords = "40b4c4";
|
||||
functions = "eb64B9";
|
||||
strings = "b4dce7";
|
||||
numbers = "b381c5";
|
||||
operators = "74dfc4";
|
||||
comments = "91889b";
|
||||
punctuation = "7b6995";
|
||||
builtins = "ffe261";
|
||||
variables = "ffffff";
|
||||
background = "27212e";
|
||||
};
|
||||
}
|
|
@ -1,71 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
white0 = "ffffff";
|
||||
white1 = "fbfbfb";
|
||||
white2 = "ffffff1f";
|
||||
white3 = "ffffff80";
|
||||
white4 = "ffffff00";
|
||||
black0 = "000000";
|
||||
black1 = "100230";
|
||||
black2 = "0d0421";
|
||||
black3 = "00000033";
|
||||
black4 = "00000000";
|
||||
grey0 = "bfbfbf";
|
||||
grey1 = "adadad";
|
||||
grey2 = "cccccc";
|
||||
grey3 = "d4d4d4";
|
||||
grey4 = "e7e7e7";
|
||||
grey5 = "e8be00";
|
||||
grey6 = "808080";
|
||||
grey7 = "7d42de";
|
||||
grey8 = "646464b3";
|
||||
grey9 = "7f7f7f4d";
|
||||
purple0 = "4c00c7";
|
||||
purple1 = "7e57bc";
|
||||
purple2 = "4a1d94";
|
||||
purple3 = "634c96";
|
||||
purple4 = "8753dd";
|
||||
purple5 = "ab93e0";
|
||||
purple6 = "9580e2";
|
||||
purple7 = "bfa0f2";
|
||||
purple8 = "aa84ff";
|
||||
purple9 = "8468b2";
|
||||
blue0 = "0b0121";
|
||||
blue1 = "0d047d";
|
||||
blue2 = "395F8F";
|
||||
blue3 = "4490BF00";
|
||||
blue4 = "3f2871";
|
||||
blue5 = "6190ba";
|
||||
blue6 = "5fb1f9";
|
||||
blue7 = "8db9e2";
|
||||
blue8 = "367366";
|
||||
blue9 = "264f7840";
|
||||
red0 = "be1100";
|
||||
red1 = "ff000c";
|
||||
red2 = "f48771";
|
||||
red3 = "ff7c3b";
|
||||
red4 = "ff7b61";
|
||||
red5 = "ff9900";
|
||||
red6 = "ff000033";
|
||||
green0 = "45e07b";
|
||||
green1 = "5a5a5a";
|
||||
green2 = "73c991";
|
||||
green3 = "61b95544";
|
||||
green4 = "0064001a";
|
||||
green5 = "264f784d";
|
||||
brown0 = "794bc4";
|
||||
brown1 = "794bc42e";
|
||||
brown2 = "baa545";
|
||||
orange0 = "cca700";
|
||||
orange1 = "e2c08d";
|
||||
orange2 = "c74e39";
|
||||
yellow0 = "e8be00";
|
||||
yellow1 = "b3b3ff";
|
||||
cyan0 = "264f784d";
|
||||
cyan1 = "7f7f7f4d";
|
||||
cyan2 = "264f7840";
|
||||
pink0 = "b68bff";
|
||||
pink1 = "7e57bc";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "B0BEC5";
|
||||
text = "727272";
|
||||
background-selection = "404040";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "2A2A2A";
|
||||
disabled = "474747";
|
||||
contrast = "1A1A1A";
|
||||
active = "323232";
|
||||
border = "292929";
|
||||
highlight = "3F3F3F";
|
||||
tree = "323232C0";
|
||||
notifications = "1A1A1A";
|
||||
accent = "FF9800";
|
||||
excluded-files = "323232";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "616161";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "616161";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "212121";
|
||||
background1 = "292929";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "8F93A2";
|
||||
text = "4B526D";
|
||||
background-selection = "717CB480";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "191A21";
|
||||
disabled = "464B5D";
|
||||
contrast = "090B10";
|
||||
active = "1A1C25";
|
||||
border = "0F111A";
|
||||
highlight = "1F2233";
|
||||
tree = "717CB430";
|
||||
notifications = "090B10";
|
||||
accent = "84ffff";
|
||||
excluded-files = "292D3E";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "717CB4";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "717CB4";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "0F111A";
|
||||
background1 = "181A1F";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "B2C2B0";
|
||||
text = "49694D";
|
||||
background-selection = "1E611E";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "003535";
|
||||
disabled = "005454";
|
||||
contrast = "002020";
|
||||
active = "104110";
|
||||
border = "003838";
|
||||
highlight = "003F3F";
|
||||
tree = "32CD3250";
|
||||
notifications = "002020";
|
||||
accent = "FFCC80";
|
||||
excluded-files = "113711";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "005454";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "005454";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "002626";
|
||||
background1 = "002E2E";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "546E7A";
|
||||
text = "94A7B0";
|
||||
background-selection = "80CBC440";
|
||||
foreground-selection = "546e7a";
|
||||
buttons = "F3F4F5";
|
||||
disabled = "D2D4D5";
|
||||
contrast = "EEEEEE";
|
||||
active = "E7E7E8";
|
||||
border = "d3e1e8";
|
||||
highlight = "E7E7E8";
|
||||
tree = "80CBC440";
|
||||
notifications = "eae8e8";
|
||||
accent = "00BCD4";
|
||||
excluded-files = "CCD7DA50";
|
||||
green = "91b859";
|
||||
yellow = "f6a434";
|
||||
blue = "6182b8";
|
||||
red = "e53935";
|
||||
purple = "7c4dff";
|
||||
orange = "f76d47";
|
||||
cyan = "39adb5";
|
||||
gray = "AABFC9";
|
||||
black = "272727";
|
||||
error = "e53935";
|
||||
comments = "AABFC9";
|
||||
variables = "272727";
|
||||
links = "39ADB5";
|
||||
functions = "6182B8";
|
||||
keywords = "7C4DFF";
|
||||
tags = "E53935";
|
||||
strings = "91B859";
|
||||
operators = "39ADB5";
|
||||
attributes = "F6A434";
|
||||
numbers = "F76D47";
|
||||
parameters = "F76D47";
|
||||
background0 = "FAFAFA";
|
||||
background1 = "FFFFFF";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "B0BEC5";
|
||||
text = "607D8B";
|
||||
background-selection = "546E7A";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "2E3C43";
|
||||
disabled = "415967";
|
||||
contrast = "1E272C";
|
||||
active = "314549";
|
||||
border = "2A373E";
|
||||
highlight = "425B67";
|
||||
tree = "546E7A70";
|
||||
notifications = "1E272C";
|
||||
accent = "009688";
|
||||
excluded-files = "2E3C43";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "546e7a";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "546e7a";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "263238";
|
||||
background1 = "32424A";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "A6ACCD";
|
||||
text = "676E95";
|
||||
background-selection = "717CB470";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "303348";
|
||||
disabled = "515772";
|
||||
contrast = "202331";
|
||||
active = "414863";
|
||||
border = "2b2a3e";
|
||||
highlight = "444267";
|
||||
tree = "676E95";
|
||||
notifications = "202331";
|
||||
accent = "ab47bc";
|
||||
excluded-files = "2f2e43";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "676E95";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "676E95";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "292D3E";
|
||||
background1 = "34324a";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "546E7A";
|
||||
text = "888477";
|
||||
background-selection = "e7c496";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "f6d7b0";
|
||||
disabled = "B8B6A5";
|
||||
contrast = "FFF3DB";
|
||||
active = "fef8ec";
|
||||
border = "f2edde";
|
||||
highlight = "fbf1df";
|
||||
tree = "e7c49680";
|
||||
notifications = "f6d7b0";
|
||||
accent = "53c7f0";
|
||||
excluded-files = "f2e7ca";
|
||||
green = "91b859";
|
||||
yellow = "f6a434";
|
||||
blue = "6182b8";
|
||||
red = "e53935";
|
||||
purple = "7c4dff";
|
||||
orange = "f76d47";
|
||||
cyan = "39adb5";
|
||||
gray = "888477";
|
||||
black = "272727";
|
||||
error = "e53935";
|
||||
comments = "888477";
|
||||
variables = "272727";
|
||||
links = "39ADB5";
|
||||
functions = "6182B8";
|
||||
keywords = "7C4DFF";
|
||||
tags = "E53935";
|
||||
strings = "91B859";
|
||||
operators = "39ADB5";
|
||||
attributes = "F6A434";
|
||||
numbers = "F76D47";
|
||||
parameters = "F76D47";
|
||||
background0 = "FFF8ED";
|
||||
background1 = "f6edda";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "005761";
|
||||
text = "01579B";
|
||||
background-selection = "ade2eb";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "c9eef2";
|
||||
disabled = "e7f2f3";
|
||||
contrast = "E4F2F2";
|
||||
active = "caedf2";
|
||||
border = "d0edf1";
|
||||
highlight = "d1eafa";
|
||||
tree = "b6e1e780";
|
||||
notifications = "e0eff1";
|
||||
accent = "00c6e0";
|
||||
excluded-files = "c1def0";
|
||||
green = "91b859";
|
||||
yellow = "f6a434";
|
||||
blue = "6182b8";
|
||||
red = "e53935";
|
||||
purple = "7c4dff";
|
||||
orange = "f76d47";
|
||||
cyan = "39adb5";
|
||||
gray = "01579B";
|
||||
black = "272727";
|
||||
error = "e53935";
|
||||
comments = "01579B";
|
||||
variables = "272727";
|
||||
links = "39ADB5";
|
||||
functions = "6182B8";
|
||||
keywords = "7C4DFF";
|
||||
tags = "E53935";
|
||||
strings = "91B859";
|
||||
operators = "39ADB5";
|
||||
attributes = "F6A434";
|
||||
numbers = "F76D47";
|
||||
parameters = "F76D47";
|
||||
background0 = "F5F5F5";
|
||||
background1 = "e7f2f3";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "efeff1";
|
||||
text = "959DAA";
|
||||
background-selection = "383f56";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "313852";
|
||||
disabled = "5A6270";
|
||||
contrast = "060F2F";
|
||||
active = "303c6a";
|
||||
border = "313852";
|
||||
highlight = "383f56";
|
||||
tree = "31385270";
|
||||
notifications = "080f30";
|
||||
accent = "ad9bf6";
|
||||
excluded-files = "2f1d76";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "959DAA";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "959DAA";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "1B2240";
|
||||
background1 = "292f4d";
|
||||
};
|
||||
}
|
|
@ -1,42 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
foreground = "ffeaea";
|
||||
text = "ffd0aa";
|
||||
background-selection = "750000";
|
||||
foreground-selection = "FFFFFF";
|
||||
buttons = "700000";
|
||||
disabled = "7f3c3c";
|
||||
contrast = "300000";
|
||||
active = "440000";
|
||||
border = "400000";
|
||||
highlight = "550000";
|
||||
tree = "77000050";
|
||||
notifications = "300a0a";
|
||||
accent = "00bcd4";
|
||||
excluded-files = "662222";
|
||||
green = "c3e88d";
|
||||
yellow = "ffcb6b";
|
||||
blue = "82aaff";
|
||||
red = "f07178";
|
||||
purple = "c792ea";
|
||||
orange = "f78c6c";
|
||||
cyan = "89ddff";
|
||||
gray = "7F6451";
|
||||
white = "eeffff";
|
||||
error = "ff5370";
|
||||
comments = "7F6451";
|
||||
variables = "eeffff";
|
||||
links = "80cbc4";
|
||||
functions = "82aaff";
|
||||
keywords = "c792ea";
|
||||
tags = "f07178";
|
||||
strings = "c3e88d";
|
||||
operators = "89ddff";
|
||||
attributes = "ffcb6b";
|
||||
numbers = "f78c6c";
|
||||
parameters = "f78c6c";
|
||||
background0 = "390000";
|
||||
background1 = "330000";
|
||||
};
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background = "2e2e2e";
|
||||
comments = "797979";
|
||||
white = "d6d6d6";
|
||||
yellow = "e5b567";
|
||||
green = "b4d273";
|
||||
orange = "e87d3e";
|
||||
purple = "9e86c8";
|
||||
pink = "b05279";
|
||||
blue = "6c99bb";
|
||||
};
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background = "011627";
|
||||
foreground = "D6DEEB";
|
||||
cursor = "80A4C2";
|
||||
selection0 = "1D3B53";
|
||||
selection1 = "7E57C25A";
|
||||
highlight = "5F7E97";
|
||||
comment = "637777";
|
||||
constant = "FF6363";
|
||||
numbers = "F78C6C";
|
||||
keywords = "C792EA";
|
||||
functions = "82AAFF";
|
||||
strings = "ECC48DFF";
|
||||
support = "ADDB67";
|
||||
variables = "7FDBCA";
|
||||
invalid = "FF2C83";
|
||||
};
|
||||
}
|
|
@ -1,21 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
nord0 = "2e3440";
|
||||
nord1 = "3b4252";
|
||||
nord2 = "434c5e";
|
||||
nord3 = "4c566a";
|
||||
nord4 = "d8dee9";
|
||||
nord5 = "e5e9f0";
|
||||
nord6 = "eceff4";
|
||||
nord7 = "8fbcbb";
|
||||
nord8 = "88c0d0";
|
||||
nord9 = "81a1c1";
|
||||
nord10 = "5e81ac";
|
||||
nord11 = "bf616a";
|
||||
nord12 = "d08770";
|
||||
nord13 = "ebcb8b";
|
||||
nord14 = "a3be8c";
|
||||
nord15 = "b48ead";
|
||||
};
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base00 = "1b2b34";
|
||||
base01 = "343d46";
|
||||
base02 = "4f5b66";
|
||||
base03 = "65737e";
|
||||
base04 = "a7adba";
|
||||
base05 = "c0c5ce";
|
||||
base06 = "cdd3de";
|
||||
base07 = "d8dee9";
|
||||
red = "ec5f67";
|
||||
orange = "f99157";
|
||||
yellow = "fac863";
|
||||
green = "99c794";
|
||||
cyan = "62b3b2";
|
||||
blue = "6699cc";
|
||||
purple = "c594c5";
|
||||
brown = "ab7967";
|
||||
white = "ffffff";
|
||||
};
|
||||
}
|
|
@ -1,13 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background = "282c34";
|
||||
red = "e06c75";
|
||||
green = "98c379";
|
||||
yellow = "e5c07b";
|
||||
blue = "61afef";
|
||||
pink = "c678dd";
|
||||
teal = "56b6c2";
|
||||
gray = "abb2bf";
|
||||
};
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
blue0 = "1085FF";
|
||||
blue1 = "61AFEF";
|
||||
blue2 = "56B6C2";
|
||||
black0 = "21252B";
|
||||
black1 = "0D1117";
|
||||
black2 = "181A1F";
|
||||
gray0 = "C6CCD7";
|
||||
gray1 = "A9B2C3";
|
||||
gray2 = "5F6672";
|
||||
gray3 = "A9B2C31A";
|
||||
gray4 = "E9D16C";
|
||||
red0 = "E06C75";
|
||||
red1 = "D74E42";
|
||||
red2 = "E48189";
|
||||
green0 = "98C379";
|
||||
green1 = "CBF6AC0D";
|
||||
yellow0 = "E5C07B";
|
||||
yellow1 = "FF9FA80D";
|
||||
yellow2 = "FF9FA81A";
|
||||
purple0 = "B57EDC";
|
||||
white0 = "ffffff";
|
||||
};
|
||||
}
|
|
@ -1,30 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
primary-background = "1b1e28";
|
||||
primary-foreground = "a6accd";
|
||||
search-matches-foreground = "1b1e28";
|
||||
search-matches-background = "add7ff";
|
||||
search-focused-match-foreground = "1b1e28";
|
||||
search-focused-match-background = "add7ff";
|
||||
search-bar-foreground = "1b1e28";
|
||||
search-bar-background = "add7ff";
|
||||
selection-background = "303340";
|
||||
normal-black = "1b1e28";
|
||||
normal-red = "d0679d";
|
||||
normal-green = "5de4c7";
|
||||
normal-yellow = "fffac2";
|
||||
normal-blue = "89ddff";
|
||||
normal-magenta = "fcc5e9";
|
||||
normal-cyan = "add7ff";
|
||||
normal-white = "ffffff";
|
||||
bright-black = "a6accd";
|
||||
bright-red = "d0679d";
|
||||
bright-green = "5de4c7";
|
||||
bright-yellow = "fffac2";
|
||||
bright-blue = "add7ff";
|
||||
bright-magenta = "fae4fc";
|
||||
bright-cyan = "89ddff";
|
||||
bright-white = "ffffff";
|
||||
};
|
||||
}
|
|
@ -1,28 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
primary-background = "252b37";
|
||||
primary-foreground = "a6accd";
|
||||
search-matches-foreground = "1b1e28";
|
||||
search-matches-background = "add7ff";
|
||||
search-focused-match-foreground = "1b1e28";
|
||||
search-focused-match-background = "add7ff";
|
||||
selection-background = "303340";
|
||||
normal-black = "252b37";
|
||||
normal-red = "d0679d";
|
||||
normal-green = "5de4c7";
|
||||
normal-yellow = "fffac2";
|
||||
normal-blue = "89ddff";
|
||||
normal-magenta = "fae4fc";
|
||||
normal-cyan = "add7ff";
|
||||
normal-white = "ffffff";
|
||||
bright-black = "a6accd";
|
||||
bright-red = "d0679d";
|
||||
bright-green = "5de4c7";
|
||||
bright-yellow = "fffac2";
|
||||
bright-blue = "add7ff";
|
||||
bright-cyan = "89ddff";
|
||||
bright-magenta = "fcc5e9";
|
||||
bright-white = "ffffff";
|
||||
};
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base = "191724";
|
||||
surface = "1f1d2e";
|
||||
overlay = "26233a";
|
||||
muted = "6e6a86";
|
||||
subtle = "908caa";
|
||||
text = "e0def4";
|
||||
love = "eb6f92";
|
||||
gold = "f6c177";
|
||||
rose = "ebbcba";
|
||||
pine = "31748f";
|
||||
foam = "9ccfd8";
|
||||
iris = "c4a7e7";
|
||||
highlight0 = "21202e";
|
||||
highlight1 = "403d52";
|
||||
highlight2 = "524f67";
|
||||
};
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base = "faf4ed";
|
||||
surface = "fffaf3";
|
||||
overlay = "f2e9e1";
|
||||
muted = "9893a5";
|
||||
subtle = "797593";
|
||||
text = "575279";
|
||||
love = "b4637a";
|
||||
gold = "ea9d34";
|
||||
rose = "d7827e";
|
||||
pine = "286983";
|
||||
foam = "56949f";
|
||||
iris = "907aa9";
|
||||
highlight0 = "f4ede8";
|
||||
highlight1 = "dfdad9";
|
||||
highlight2 = "cecacd";
|
||||
};
|
||||
}
|
|
@ -1,20 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
base = "232136";
|
||||
surface = "2a273f";
|
||||
overlay = "393552";
|
||||
muted = "6e6a86";
|
||||
subtle = "908caa";
|
||||
text = "e0def4";
|
||||
love = "eb6f92";
|
||||
gold = "f6c177";
|
||||
rose = "ea9a97";
|
||||
pine = "3e8fb0";
|
||||
foam = "9ccfd8";
|
||||
iris = "c4a7e7";
|
||||
highlight0 = "2a283e";
|
||||
highlight1 = "44415a";
|
||||
highlight2 = "56526e";
|
||||
};
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
yellow = "b58900";
|
||||
orange = "cb4b16";
|
||||
red = "dc322f";
|
||||
magenta = "d33682";
|
||||
violet = "6c71c4";
|
||||
blue = "268bd2";
|
||||
cyan = "2aa198";
|
||||
green = "859900";
|
||||
base00 = "657b83";
|
||||
base01 = "586e75";
|
||||
base02 = "073642";
|
||||
base03 = "002b36";
|
||||
};
|
||||
}
|
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
yellow = "b58900";
|
||||
orange = "cb4b16";
|
||||
red = "dc322f";
|
||||
magenta = "d33682";
|
||||
violet = "6c71c4";
|
||||
blue = "268bd2";
|
||||
cyan = "2aa198";
|
||||
green = "859900";
|
||||
base0 = "839496";
|
||||
base1 = "93a1a1";
|
||||
base2 = "eee8d5";
|
||||
base3 = "fdf6e3";
|
||||
};
|
||||
}
|
|
@ -1,33 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
blue0 = "1f212b";
|
||||
blue1 = "495495";
|
||||
blue2 = "614D85";
|
||||
blue3 = "7059AB";
|
||||
blue4 = "72f1b8";
|
||||
blue5 = "03edf9";
|
||||
blue6 = "09f7a0";
|
||||
purple0 = "2a2139";
|
||||
purple1 = "34294f66";
|
||||
purple2 = "37294d99";
|
||||
purple3 = "241b2f";
|
||||
purple4 = "463465";
|
||||
purple5 = "880088";
|
||||
purple6 = "A148AB";
|
||||
purple7 = "b893ce";
|
||||
red0 = "fe4450";
|
||||
red1 = "f97e72";
|
||||
red2 = "ff7edb";
|
||||
gray0 = "232530";
|
||||
gray1 = "444251";
|
||||
gray2 = "262335";
|
||||
yellow0 = "fede5d";
|
||||
yellow1 = "f3e70f";
|
||||
gold0 = "D18616";
|
||||
white0 = "ffffff";
|
||||
white1 = "ffffff7c";
|
||||
white2 = "ffffff59";
|
||||
black0 = "08080f";
|
||||
};
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
keyword = "8c4351";
|
||||
integer = "965027";
|
||||
parameter0 = "8f5e15";
|
||||
parameter1 = "634f30";
|
||||
string0 = "385f0d";
|
||||
string1 = "33635c";
|
||||
property = "33635c";
|
||||
builtin = "006c86";
|
||||
object = "0f4b6e";
|
||||
function = "2959aa";
|
||||
control = "5a3e8e";
|
||||
variable = "343b58";
|
||||
markdown = "40434f";
|
||||
comments = "6c6e75";
|
||||
terminal = "343B58";
|
||||
foreground = "343b58";
|
||||
background = "e6e7ed";
|
||||
};
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
keyword = "f7768e";
|
||||
integer = "ff9e64";
|
||||
parameter0 = "e0af68";
|
||||
parameter1 = "cfc9c2";
|
||||
string0 = "9ece6a";
|
||||
property = "73daca";
|
||||
string1 = "b4f9f8";
|
||||
builtin = "2ac3de";
|
||||
object = "7dcfff";
|
||||
function = "7aa2f7";
|
||||
control = "bb9af7";
|
||||
variable = "c0caf5";
|
||||
markdown = "9aa5ce";
|
||||
comments = "565f89";
|
||||
terminal = "414868";
|
||||
foreground = "a9b1d6";
|
||||
background = "1a1b26";
|
||||
};
|
||||
}
|
|
@ -1,22 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
keyword = "f7768e";
|
||||
integer = "ff9e64";
|
||||
parameter0 = "e0af68";
|
||||
parameter1 = "cfc9c2";
|
||||
string0 = "9ece6a";
|
||||
property = "73daca";
|
||||
string1 = "b4f9f8";
|
||||
builtin = "2ac3de";
|
||||
object = "7dcfff";
|
||||
function = "7aa2f7";
|
||||
control = "bb9af7";
|
||||
variable = "c0caf5";
|
||||
markdown = "9aa5ce";
|
||||
comments = "565f89";
|
||||
terminal = "414868";
|
||||
foreground = "a9b1d6";
|
||||
background = "24283b";
|
||||
};
|
||||
}
|
|
@ -1,27 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
black0 = "000";
|
||||
black1 = "101010";
|
||||
black2 = "161616";
|
||||
black3 = "232323";
|
||||
black4 = "282828";
|
||||
black5 = "343434";
|
||||
black6 = "34343480";
|
||||
black7 = "505050";
|
||||
black8 = "666";
|
||||
white0 = "FFF";
|
||||
white1 = "FFFFFF25";
|
||||
red0 = "FF8080";
|
||||
red1 = "FF7300";
|
||||
red2 = "FFC799";
|
||||
red3 = "FFCFA8";
|
||||
green0 = "99FFE4";
|
||||
green1 = "99FFE415";
|
||||
gray0 = "A0A0A0";
|
||||
gray1 = "7E7E7E";
|
||||
gray2 = "707070";
|
||||
gray3 = "1C1C1C";
|
||||
gray4 = "505050";
|
||||
};
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background0 = "242424";
|
||||
background1 = "191919";
|
||||
text0 = "faf2d6";
|
||||
text1 = "bdae93";
|
||||
text2 = "E0E0E0";
|
||||
highlight0 = "640211";
|
||||
highlight1 = "83a598";
|
||||
highlight2 = "D49335";
|
||||
accent = "f8c537";
|
||||
selection = "f8c537";
|
||||
};
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
{
|
||||
font = "";
|
||||
colours = {
|
||||
background0 = "EDEDED";
|
||||
background1 = "C4C4C4";
|
||||
text0 = "1A2023";
|
||||
text1 = "DEDEDE";
|
||||
text2 = "D49335";
|
||||
highlight0 = "458588";
|
||||
highlight1 = "a89984";
|
||||
highlight2 = "D49335";
|
||||
accent = "961327";
|
||||
selection = "EDC180";
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue