mirror of
https://github.com/RGBCube/ThemeNix
synced 2025-07-27 16:37:46 +00:00
Add project
This commit is contained in:
parent
9698f044be
commit
983157e8ee
253 changed files with 5335 additions and 0 deletions
62
flake.nix
Normal file
62
flake.nix
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
{
|
||||||
|
description = "Theme your NixOS configuration consistently.";
|
||||||
|
|
||||||
|
outputs = { self }: builtins.mapAttrs (_: theme: let
|
||||||
|
themeDescriptiveNames = with theme; {
|
||||||
|
background = base00;
|
||||||
|
lighterBackground = base01;
|
||||||
|
selectionBackground = base02;
|
||||||
|
comment = base03;
|
||||||
|
invisible = base03;
|
||||||
|
lineHighlight = base03;
|
||||||
|
darkForeground = base04;
|
||||||
|
defaultForeground = base05;
|
||||||
|
caret = base05;
|
||||||
|
delimiter = base05;
|
||||||
|
operator = base05;
|
||||||
|
lightForeground = base06;
|
||||||
|
lightBackground = base07;
|
||||||
|
variable = base08;
|
||||||
|
xmlTag = base08;
|
||||||
|
markupLinkText = base08;
|
||||||
|
markupList = base08;
|
||||||
|
diffDeleted = base08;
|
||||||
|
integer = base09;
|
||||||
|
boolean = base09;
|
||||||
|
constant = base09;
|
||||||
|
xmlAttributes = base09;
|
||||||
|
markupLinkUrl = base09;
|
||||||
|
classes = base0A;
|
||||||
|
markupBold = base0A;
|
||||||
|
searchTextBackground = base0A;
|
||||||
|
strings = base0B;
|
||||||
|
inheritedClass = base0B;
|
||||||
|
markupCode = base0B;
|
||||||
|
diffInserted = base0B;
|
||||||
|
support = base0C;
|
||||||
|
regularExpression = base0C;
|
||||||
|
escapeCharacter = base0C;
|
||||||
|
markupQuote = base0C;
|
||||||
|
function = base0D;
|
||||||
|
method = base0D;
|
||||||
|
attributeId = base0D;
|
||||||
|
heading = base0D;
|
||||||
|
keyword = base0E;
|
||||||
|
storage = base0E;
|
||||||
|
selector = base0E;
|
||||||
|
markupItalic = base0E;
|
||||||
|
diffChanged = base0E;
|
||||||
|
deprecated = base0F;
|
||||||
|
openingClosingEmbeddedLanguageTag = base0F;
|
||||||
|
};
|
||||||
|
|
||||||
|
enrichedTheme = theme // themeDescriptiveNames;
|
||||||
|
|
||||||
|
enrichedThemeOnlyColors = builtins.removeAttrs enrichedTheme [ "name" "author" ];
|
||||||
|
|
||||||
|
enrichedThemeHelpers = {
|
||||||
|
with0x = builtins.mapAttrs (_: value: "0x" + value) enrichedThemeOnlyColors;
|
||||||
|
withHashtag = builtins.mapAttrs (_: value: "#" + value) enrichedThemeOnlyColors;
|
||||||
|
};
|
||||||
|
in enrichedTheme // enrichedThemeHelpers) (import ./themes.nix);
|
||||||
|
}
|
253
themes.nix
Normal file
253
themes.nix
Normal file
|
@ -0,0 +1,253 @@
|
||||||
|
{
|
||||||
|
"3024" = import "themes/3024.nix";
|
||||||
|
"apathy" = import "themes/apathy.nix";
|
||||||
|
"apprentice" = import "themes/apprentice.nix";
|
||||||
|
"ashes" = import "themes/ashes.nix";
|
||||||
|
"atelier-cave-light" = import "themes/atelier-cave-light.nix";
|
||||||
|
"atelier-cave" = import "themes/atelier-cave.nix";
|
||||||
|
"atelier-dune-light" = import "themes/atelier-dune-light.nix";
|
||||||
|
"atelier-dune" = import "themes/atelier-dune.nix";
|
||||||
|
"atelier-estuary-light" = import "themes/atelier-estuary-light.nix";
|
||||||
|
"atelier-estuary" = import "themes/atelier-estuary.nix";
|
||||||
|
"atelier-forest-light" = import "themes/atelier-forest-light.nix";
|
||||||
|
"atelier-forest" = import "themes/atelier-forest.nix";
|
||||||
|
"atelier-heath-light" = import "themes/atelier-heath-light.nix";
|
||||||
|
"atelier-heath" = import "themes/atelier-heath.nix";
|
||||||
|
"atelier-lakeside-light" = import "themes/atelier-lakeside-light.nix";
|
||||||
|
"atelier-lakeside" = import "themes/atelier-lakeside.nix";
|
||||||
|
"atelier-plateau-light" = import "themes/atelier-plateau-light.nix";
|
||||||
|
"atelier-plateau" = import "themes/atelier-plateau.nix";
|
||||||
|
"atelier-savanna-light" = import "themes/atelier-savanna-light.nix";
|
||||||
|
"atelier-savanna" = import "themes/atelier-savanna.nix";
|
||||||
|
"atelier-seaside-light" = import "themes/atelier-seaside-light.nix";
|
||||||
|
"atelier-seaside" = import "themes/atelier-seaside.nix";
|
||||||
|
"atelier-sulphurpool-light" = import "themes/atelier-sulphurpool-light.nix";
|
||||||
|
"atelier-sulphurpool" = import "themes/atelier-sulphurpool.nix";
|
||||||
|
"atlas" = import "themes/atlas.nix";
|
||||||
|
"ayu-dark" = import "themes/ayu-dark.nix";
|
||||||
|
"ayu-light" = import "themes/ayu-light.nix";
|
||||||
|
"ayu-mirage" = import "themes/ayu-mirage.nix";
|
||||||
|
"bespin" = import "themes/bespin.nix";
|
||||||
|
"black-metal-bathory" = import "themes/black-metal-bathory.nix";
|
||||||
|
"black-metal-burzum" = import "themes/black-metal-burzum.nix";
|
||||||
|
"black-metal-dark-funeral" = import "themes/black-metal-dark-funeral.nix";
|
||||||
|
"black-metal-gorgoroth" = import "themes/black-metal-gorgoroth.nix";
|
||||||
|
"black-metal-immortal" = import "themes/black-metal-immortal.nix";
|
||||||
|
"black-metal-khold" = import "themes/black-metal-khold.nix";
|
||||||
|
"black-metal-marduk" = import "themes/black-metal-marduk.nix";
|
||||||
|
"black-metal-mayhem" = import "themes/black-metal-mayhem.nix";
|
||||||
|
"black-metal-nile" = import "themes/black-metal-nile.nix";
|
||||||
|
"black-metal-venom" = import "themes/black-metal-venom.nix";
|
||||||
|
"black-metal" = import "themes/black-metal.nix";
|
||||||
|
"blueforest" = import "themes/blueforest.nix";
|
||||||
|
"blueish" = import "themes/blueish.nix";
|
||||||
|
"brewer" = import "themes/brewer.nix";
|
||||||
|
"bright" = import "themes/bright.nix";
|
||||||
|
"brogrammer" = import "themes/brogrammer.nix";
|
||||||
|
"brushtrees-dark" = import "themes/brushtrees-dark.nix";
|
||||||
|
"brushtrees" = import "themes/brushtrees.nix";
|
||||||
|
"caroline" = import "themes/caroline.nix";
|
||||||
|
"catppuccin-frappe" = import "themes/catppuccin-frappe.nix";
|
||||||
|
"catppuccin-latte" = import "themes/catppuccin-latte.nix";
|
||||||
|
"catppuccin-macchiato" = import "themes/catppuccin-macchiato.nix";
|
||||||
|
"catppuccin-mocha" = import "themes/catppuccin-mocha.nix";
|
||||||
|
"chalk" = import "themes/chalk.nix";
|
||||||
|
"circus" = import "themes/circus.nix";
|
||||||
|
"classic-dark" = import "themes/classic-dark.nix";
|
||||||
|
"classic-light" = import "themes/classic-light.nix";
|
||||||
|
"codeschool" = import "themes/codeschool.nix";
|
||||||
|
"colors" = import "themes/colors.nix";
|
||||||
|
"cupcake" = import "themes/cupcake.nix";
|
||||||
|
"cupertino" = import "themes/cupertino.nix";
|
||||||
|
"da-one-black" = import "themes/da-one-black.nix";
|
||||||
|
"da-one-gray" = import "themes/da-one-gray.nix";
|
||||||
|
"da-one-ocean" = import "themes/da-one-ocean.nix";
|
||||||
|
"da-one-paper" = import "themes/da-one-paper.nix";
|
||||||
|
"da-one-sea" = import "themes/da-one-sea.nix";
|
||||||
|
"da-one-white" = import "themes/da-one-white.nix";
|
||||||
|
"danqing-light" = import "themes/danqing-light.nix";
|
||||||
|
"danqing" = import "themes/danqing.nix";
|
||||||
|
"darcula" = import "themes/darcula.nix";
|
||||||
|
"darkmoss" = import "themes/darkmoss.nix";
|
||||||
|
"darktooth" = import "themes/darktooth.nix";
|
||||||
|
"darkviolet" = import "themes/darkviolet.nix";
|
||||||
|
"decaf" = import "themes/decaf.nix";
|
||||||
|
"default-dark" = import "themes/default-dark.nix";
|
||||||
|
"default-light" = import "themes/default-light.nix";
|
||||||
|
"dirtysea" = import "themes/dirtysea.nix";
|
||||||
|
"dracula" = import "themes/dracula.nix";
|
||||||
|
"edge-dark" = import "themes/edge-dark.nix";
|
||||||
|
"edge-light" = import "themes/edge-light.nix";
|
||||||
|
"eighties" = import "themes/eighties.nix";
|
||||||
|
"embers" = import "themes/embers.nix";
|
||||||
|
"emil" = import "themes/emil.nix";
|
||||||
|
"equilibrium-dark" = import "themes/equilibrium-dark.nix";
|
||||||
|
"equilibrium-gray-dark" = import "themes/equilibrium-gray-dark.nix";
|
||||||
|
"equilibrium-gray-light" = import "themes/equilibrium-gray-light.nix";
|
||||||
|
"equilibrium-light" = import "themes/equilibrium-light.nix";
|
||||||
|
"eris" = import "themes/eris.nix";
|
||||||
|
"espresso" = import "themes/espresso.nix";
|
||||||
|
"eva-dim" = import "themes/eva-dim.nix";
|
||||||
|
"eva" = import "themes/eva.nix";
|
||||||
|
"evenok-dark" = import "themes/evenok-dark.nix";
|
||||||
|
"everforest-dark-hard" = import "themes/everforest-dark-hard.nix";
|
||||||
|
"everforest" = import "themes/everforest.nix";
|
||||||
|
"flat" = import "themes/flat.nix";
|
||||||
|
"framer" = import "themes/framer.nix";
|
||||||
|
"fruit-soda" = import "themes/fruit-soda.nix";
|
||||||
|
"gigavolt" = import "themes/gigavolt.nix";
|
||||||
|
"github" = import "themes/github.nix";
|
||||||
|
"google-dark" = import "themes/google-dark.nix";
|
||||||
|
"google-light" = import "themes/google-light.nix";
|
||||||
|
"gotham" = import "themes/gotham.nix";
|
||||||
|
"grayscale-dark" = import "themes/grayscale-dark.nix";
|
||||||
|
"grayscale-light" = import "themes/grayscale-light.nix";
|
||||||
|
"greenscreen" = import "themes/greenscreen.nix";
|
||||||
|
"gruber" = import "themes/gruber.nix";
|
||||||
|
"gruvbox-dark-hard" = import "themes/gruvbox-dark-hard.nix";
|
||||||
|
"gruvbox-dark-medium" = import "themes/gruvbox-dark-medium.nix";
|
||||||
|
"gruvbox-dark-pale" = import "themes/gruvbox-dark-pale.nix";
|
||||||
|
"gruvbox-dark-soft" = import "themes/gruvbox-dark-soft.nix";
|
||||||
|
"gruvbox-light-hard" = import "themes/gruvbox-light-hard.nix";
|
||||||
|
"gruvbox-light-medium" = import "themes/gruvbox-light-medium.nix";
|
||||||
|
"gruvbox-light-soft" = import "themes/gruvbox-light-soft.nix";
|
||||||
|
"gruvbox-material-dark-hard" = import "themes/gruvbox-material-dark-hard.nix";
|
||||||
|
"gruvbox-material-dark-medium" = import "themes/gruvbox-material-dark-medium.nix";
|
||||||
|
"gruvbox-material-dark-soft" = import "themes/gruvbox-material-dark-soft.nix";
|
||||||
|
"gruvbox-material-light-hard" = import "themes/gruvbox-material-light-hard.nix";
|
||||||
|
"gruvbox-material-light-medium" = import "themes/gruvbox-material-light-medium.nix";
|
||||||
|
"gruvbox-material-light-soft" = import "themes/gruvbox-material-light-soft.nix";
|
||||||
|
"hardcore" = import "themes/hardcore.nix";
|
||||||
|
"harmonic16-dark" = import "themes/harmonic16-dark.nix";
|
||||||
|
"harmonic16-light" = import "themes/harmonic16-light.nix";
|
||||||
|
"heetch-light" = import "themes/heetch-light.nix";
|
||||||
|
"heetch" = import "themes/heetch.nix";
|
||||||
|
"helios" = import "themes/helios.nix";
|
||||||
|
"hopscotch" = import "themes/hopscotch.nix";
|
||||||
|
"horizon-dark" = import "themes/horizon-dark.nix";
|
||||||
|
"horizon-light" = import "themes/horizon-light.nix";
|
||||||
|
"horizon-terminal-dark" = import "themes/horizon-terminal-dark.nix";
|
||||||
|
"horizon-terminal-light" = import "themes/horizon-terminal-light.nix";
|
||||||
|
"humanoid-dark" = import "themes/humanoid-dark.nix";
|
||||||
|
"humanoid-light" = import "themes/humanoid-light.nix";
|
||||||
|
"ia-dark" = import "themes/ia-dark.nix";
|
||||||
|
"ia-light" = import "themes/ia-light.nix";
|
||||||
|
"icy" = import "themes/icy.nix";
|
||||||
|
"irblack" = import "themes/irblack.nix";
|
||||||
|
"isotope" = import "themes/isotope.nix";
|
||||||
|
"kanagawa" = import "themes/kanagawa.nix";
|
||||||
|
"katy" = import "themes/katy.nix";
|
||||||
|
"kimber" = import "themes/kimber.nix";
|
||||||
|
"lime" = import "themes/lime.nix";
|
||||||
|
"macintosh" = import "themes/macintosh.nix";
|
||||||
|
"marrakesh" = import "themes/marrakesh.nix";
|
||||||
|
"materia" = import "themes/materia.nix";
|
||||||
|
"material-darker" = import "themes/material-darker.nix";
|
||||||
|
"material-lighter" = import "themes/material-lighter.nix";
|
||||||
|
"material-palenight" = import "themes/material-palenight.nix";
|
||||||
|
"material-vivid" = import "themes/material-vivid.nix";
|
||||||
|
"material" = import "themes/material.nix";
|
||||||
|
"mellow-purple" = import "themes/mellow-purple.nix";
|
||||||
|
"mexico-light" = import "themes/mexico-light.nix";
|
||||||
|
"mocha" = import "themes/mocha.nix";
|
||||||
|
"monokai" = import "themes/monokai.nix";
|
||||||
|
"mountain" = import "themes/mountain.nix";
|
||||||
|
"nebula" = import "themes/nebula.nix";
|
||||||
|
"nord" = import "themes/nord.nix";
|
||||||
|
"nova" = import "themes/nova.nix";
|
||||||
|
"ocean" = import "themes/ocean.nix";
|
||||||
|
"oceanicnext" = import "themes/oceanicnext.nix";
|
||||||
|
"one-light" = import "themes/one-light.nix";
|
||||||
|
"onedark" = import "themes/onedark.nix";
|
||||||
|
"outrun-dark" = import "themes/outrun-dark.nix";
|
||||||
|
"oxocarbon-dark" = import "themes/oxocarbon-dark.nix";
|
||||||
|
"oxocarbon-light" = import "themes/oxocarbon-light.nix";
|
||||||
|
"pandora" = import "themes/pandora.nix";
|
||||||
|
"papercolor-dark" = import "themes/papercolor-dark.nix";
|
||||||
|
"papercolor-light" = import "themes/papercolor-light.nix";
|
||||||
|
"paraiso" = import "themes/paraiso.nix";
|
||||||
|
"pasque" = import "themes/pasque.nix";
|
||||||
|
"phd" = import "themes/phd.nix";
|
||||||
|
"pico" = import "themes/pico.nix";
|
||||||
|
"pinky" = import "themes/pinky.nix";
|
||||||
|
"pop" = import "themes/pop.nix";
|
||||||
|
"porple" = import "themes/porple.nix";
|
||||||
|
"primer-dark-dimmed" = import "themes/primer-dark-dimmed.nix";
|
||||||
|
"primer-dark" = import "themes/primer-dark.nix";
|
||||||
|
"primer-light" = import "themes/primer-light.nix";
|
||||||
|
"purpledream" = import "themes/purpledream.nix";
|
||||||
|
"qualia" = import "themes/qualia.nix";
|
||||||
|
"railscasts" = import "themes/railscasts.nix";
|
||||||
|
"rebecca" = import "themes/rebecca.nix";
|
||||||
|
"rose-pine-dawn" = import "themes/rose-pine-dawn.nix";
|
||||||
|
"rose-pine-moon" = import "themes/rose-pine-moon.nix";
|
||||||
|
"rose-pine" = import "themes/rose-pine.nix";
|
||||||
|
"sagelight" = import "themes/sagelight.nix";
|
||||||
|
"sakura" = import "themes/sakura.nix";
|
||||||
|
"sandcastle" = import "themes/sandcastle.nix";
|
||||||
|
"selenized-black" = import "themes/selenized-black.nix";
|
||||||
|
"selenized-dark" = import "themes/selenized-dark.nix";
|
||||||
|
"selenized-light" = import "themes/selenized-light.nix";
|
||||||
|
"selenized-white" = import "themes/selenized-white.nix";
|
||||||
|
"seti" = import "themes/seti.nix";
|
||||||
|
"shades-of-purple" = import "themes/shades-of-purple.nix";
|
||||||
|
"shadesmear-dark" = import "themes/shadesmear-dark.nix";
|
||||||
|
"shadesmear-light" = import "themes/shadesmear-light.nix";
|
||||||
|
"shapeshifter" = import "themes/shapeshifter.nix";
|
||||||
|
"silk-dark" = import "themes/silk-dark.nix";
|
||||||
|
"silk-light" = import "themes/silk-light.nix";
|
||||||
|
"snazzy" = import "themes/snazzy.nix";
|
||||||
|
"solarflare-light" = import "themes/solarflare-light.nix";
|
||||||
|
"solarflare" = import "themes/solarflare.nix";
|
||||||
|
"solarized-dark" = import "themes/solarized-dark.nix";
|
||||||
|
"solarized-light" = import "themes/solarized-light.nix";
|
||||||
|
"spaceduck" = import "themes/spaceduck.nix";
|
||||||
|
"spacemacs" = import "themes/spacemacs.nix";
|
||||||
|
"standardized-dark" = import "themes/standardized-dark.nix";
|
||||||
|
"standardized-light" = import "themes/standardized-light.nix";
|
||||||
|
"stella" = import "themes/stella.nix";
|
||||||
|
"still-alive" = import "themes/still-alive.nix";
|
||||||
|
"summercamp" = import "themes/summercamp.nix";
|
||||||
|
"summerfruit-dark" = import "themes/summerfruit-dark.nix";
|
||||||
|
"summerfruit-light" = import "themes/summerfruit-light.nix";
|
||||||
|
"synth-midnight-dark" = import "themes/synth-midnight-dark.nix";
|
||||||
|
"synth-midnight-light" = import "themes/synth-midnight-light.nix";
|
||||||
|
"tango" = import "themes/tango.nix";
|
||||||
|
"tarot" = import "themes/tarot.nix";
|
||||||
|
"tender" = import "themes/tender.nix";
|
||||||
|
"tokyo-city-dark" = import "themes/tokyo-city-dark.nix";
|
||||||
|
"tokyo-city-light" = import "themes/tokyo-city-light.nix";
|
||||||
|
"tokyo-city-terminal-dark" = import "themes/tokyo-city-terminal-dark.nix";
|
||||||
|
"tokyo-city-terminal-light" = import "themes/tokyo-city-terminal-light.nix";
|
||||||
|
"tokyo-night-dark" = import "themes/tokyo-night-dark.nix";
|
||||||
|
"tokyo-night-light" = import "themes/tokyo-night-light.nix";
|
||||||
|
"tokyo-night-storm" = import "themes/tokyo-night-storm.nix";
|
||||||
|
"tokyo-night-terminal-dark" = import "themes/tokyo-night-terminal-dark.nix";
|
||||||
|
"tokyo-night-terminal-light" = import "themes/tokyo-night-terminal-light.nix";
|
||||||
|
"tokyo-night-terminal-storm" = import "themes/tokyo-night-terminal-storm.nix";
|
||||||
|
"tokyodark-terminal" = import "themes/tokyodark-terminal.nix";
|
||||||
|
"tokyodark" = import "themes/tokyodark.nix";
|
||||||
|
"tomorrow-night-eighties" = import "themes/tomorrow-night-eighties.nix";
|
||||||
|
"tomorrow-night" = import "themes/tomorrow-night.nix";
|
||||||
|
"tomorrow" = import "themes/tomorrow.nix";
|
||||||
|
"tube" = import "themes/tube.nix";
|
||||||
|
"twilight" = import "themes/twilight.nix";
|
||||||
|
"unikitty-dark" = import "themes/unikitty-dark.nix";
|
||||||
|
"unikitty-light" = import "themes/unikitty-light.nix";
|
||||||
|
"unikitty-reversible" = import "themes/unikitty-reversible.nix";
|
||||||
|
"uwunicorn" = import "themes/uwunicorn.nix";
|
||||||
|
"vice" = import "themes/vice.nix";
|
||||||
|
"vulcan" = import "themes/vulcan.nix";
|
||||||
|
"windows-10-light" = import "themes/windows-10-light.nix";
|
||||||
|
"windows-10" = import "themes/windows-10.nix";
|
||||||
|
"windows-95-light" = import "themes/windows-95-light.nix";
|
||||||
|
"windows-95" = import "themes/windows-95.nix";
|
||||||
|
"windows-highcontrast-light" = import "themes/windows-highcontrast-light.nix";
|
||||||
|
"windows-highcontrast" = import "themes/windows-highcontrast.nix";
|
||||||
|
"windows-nt-light" = import "themes/windows-nt-light.nix";
|
||||||
|
"windows-nt" = import "themes/windows-nt.nix";
|
||||||
|
"woodland" = import "themes/woodland.nix";
|
||||||
|
"xcode-dusk" = import "themes/xcode-dusk.nix";
|
||||||
|
"zenbones" = import "themes/zenbones.nix";
|
||||||
|
"zenburn" = import "themes/zenburn.nix";
|
||||||
|
}
|
20
themes/3024.nix
Normal file
20
themes/3024.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "3024";
|
||||||
|
author = "Jan T. Sott (http://github.com/idleberg)";
|
||||||
|
base00 = "090300";
|
||||||
|
base01 = "3A3432";
|
||||||
|
base02 = "4A4543";
|
||||||
|
base03 = "5C5855";
|
||||||
|
base04 = "807D7C";
|
||||||
|
base05 = "A5A2A2";
|
||||||
|
base06 = "D6D5D4";
|
||||||
|
base07 = "F7F7F7";
|
||||||
|
base08 = "DB2D20";
|
||||||
|
base09 = "E8BBD0";
|
||||||
|
base0A = "FDED02";
|
||||||
|
base0B = "01A252";
|
||||||
|
base0C = "B5E4F4";
|
||||||
|
base0D = "01A0E4";
|
||||||
|
base0E = "A16A94";
|
||||||
|
base0F = "CDAB53";
|
||||||
|
}
|
20
themes/apathy.nix
Normal file
20
themes/apathy.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Apathy";
|
||||||
|
author = "Jannik Siebert (https://github.com/janniks)";
|
||||||
|
base00 = "031A16";
|
||||||
|
base01 = "0B342D";
|
||||||
|
base02 = "184E45";
|
||||||
|
base03 = "2B685E";
|
||||||
|
base04 = "5F9C92";
|
||||||
|
base05 = "81B5AC";
|
||||||
|
base06 = "A7CEC8";
|
||||||
|
base07 = "D2E7E4";
|
||||||
|
base08 = "3E9688";
|
||||||
|
base09 = "3E7996";
|
||||||
|
base0A = "3E4C96";
|
||||||
|
base0B = "883E96";
|
||||||
|
base0C = "963E4C";
|
||||||
|
base0D = "96883E";
|
||||||
|
base0E = "4C963E";
|
||||||
|
base0F = "3E965B";
|
||||||
|
}
|
20
themes/apprentice.nix
Normal file
20
themes/apprentice.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Apprentice";
|
||||||
|
author = "romainl";
|
||||||
|
base00 = "262626";
|
||||||
|
base01 = "AF5F5F";
|
||||||
|
base02 = "5F875F";
|
||||||
|
base03 = "87875F";
|
||||||
|
base04 = "5F87AF";
|
||||||
|
base05 = "5F5F87";
|
||||||
|
base06 = "5F8787";
|
||||||
|
base07 = "6C6C6C";
|
||||||
|
base08 = "444444";
|
||||||
|
base09 = "FF8700";
|
||||||
|
base0A = "87AF87";
|
||||||
|
base0B = "FFFFAF";
|
||||||
|
base0C = "87AFD7";
|
||||||
|
base0D = "8787AF";
|
||||||
|
base0E = "5FAFAF";
|
||||||
|
base0F = "BCBCBC";
|
||||||
|
}
|
20
themes/ashes.nix
Normal file
20
themes/ashes.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Ashes";
|
||||||
|
author = "Jannik Siebert (https://github.com/janniks)";
|
||||||
|
base00 = "1C2023";
|
||||||
|
base01 = "393F45";
|
||||||
|
base02 = "565E65";
|
||||||
|
base03 = "747C84";
|
||||||
|
base04 = "ADB3BA";
|
||||||
|
base05 = "C7CCD1";
|
||||||
|
base06 = "DFE2E5";
|
||||||
|
base07 = "F3F4F5";
|
||||||
|
base08 = "C7AE95";
|
||||||
|
base09 = "C7C795";
|
||||||
|
base0A = "AEC795";
|
||||||
|
base0B = "95C7AE";
|
||||||
|
base0C = "95AEC7";
|
||||||
|
base0D = "AE95C7";
|
||||||
|
base0E = "C795AE";
|
||||||
|
base0F = "C79595";
|
||||||
|
}
|
20
themes/atelier-cave-light.nix
Normal file
20
themes/atelier-cave-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Cave Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "EFECF4";
|
||||||
|
base01 = "E2DFE7";
|
||||||
|
base02 = "8B8792";
|
||||||
|
base03 = "7E7887";
|
||||||
|
base04 = "655F6D";
|
||||||
|
base05 = "585260";
|
||||||
|
base06 = "26232A";
|
||||||
|
base07 = "19171C";
|
||||||
|
base08 = "BE4678";
|
||||||
|
base09 = "AA573C";
|
||||||
|
base0A = "A06E3B";
|
||||||
|
base0B = "2A9292";
|
||||||
|
base0C = "398BC6";
|
||||||
|
base0D = "576DDB";
|
||||||
|
base0E = "955AE7";
|
||||||
|
base0F = "BF40BF";
|
||||||
|
}
|
20
themes/atelier-cave.nix
Normal file
20
themes/atelier-cave.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Cave";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "19171C";
|
||||||
|
base01 = "26232A";
|
||||||
|
base02 = "585260";
|
||||||
|
base03 = "655F6D";
|
||||||
|
base04 = "7E7887";
|
||||||
|
base05 = "8B8792";
|
||||||
|
base06 = "E2DFE7";
|
||||||
|
base07 = "EFECF4";
|
||||||
|
base08 = "BE4678";
|
||||||
|
base09 = "AA573C";
|
||||||
|
base0A = "A06E3B";
|
||||||
|
base0B = "2A9292";
|
||||||
|
base0C = "398BC6";
|
||||||
|
base0D = "576DDB";
|
||||||
|
base0E = "955AE7";
|
||||||
|
base0F = "BF40BF";
|
||||||
|
}
|
20
themes/atelier-dune-light.nix
Normal file
20
themes/atelier-dune-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Dune Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "FEFBEC";
|
||||||
|
base01 = "E8E4CF";
|
||||||
|
base02 = "A6A28C";
|
||||||
|
base03 = "999580";
|
||||||
|
base04 = "7D7A68";
|
||||||
|
base05 = "6E6B5E";
|
||||||
|
base06 = "292824";
|
||||||
|
base07 = "20201D";
|
||||||
|
base08 = "D73737";
|
||||||
|
base09 = "B65611";
|
||||||
|
base0A = "AE9513";
|
||||||
|
base0B = "60AC39";
|
||||||
|
base0C = "1FAD83";
|
||||||
|
base0D = "6684E1";
|
||||||
|
base0E = "B854D4";
|
||||||
|
base0F = "D43552";
|
||||||
|
}
|
20
themes/atelier-dune.nix
Normal file
20
themes/atelier-dune.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Dune";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "20201D";
|
||||||
|
base01 = "292824";
|
||||||
|
base02 = "6E6B5E";
|
||||||
|
base03 = "7D7A68";
|
||||||
|
base04 = "999580";
|
||||||
|
base05 = "A6A28C";
|
||||||
|
base06 = "E8E4CF";
|
||||||
|
base07 = "FEFBEC";
|
||||||
|
base08 = "D73737";
|
||||||
|
base09 = "B65611";
|
||||||
|
base0A = "AE9513";
|
||||||
|
base0B = "60AC39";
|
||||||
|
base0C = "1FAD83";
|
||||||
|
base0D = "6684E1";
|
||||||
|
base0E = "B854D4";
|
||||||
|
base0F = "D43552";
|
||||||
|
}
|
20
themes/atelier-estuary-light.nix
Normal file
20
themes/atelier-estuary-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Estuary Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "F4F3EC";
|
||||||
|
base01 = "E7E6DF";
|
||||||
|
base02 = "929181";
|
||||||
|
base03 = "878573";
|
||||||
|
base04 = "6C6B5A";
|
||||||
|
base05 = "5F5E4E";
|
||||||
|
base06 = "302F27";
|
||||||
|
base07 = "22221B";
|
||||||
|
base08 = "BA6236";
|
||||||
|
base09 = "AE7313";
|
||||||
|
base0A = "A5980D";
|
||||||
|
base0B = "7D9726";
|
||||||
|
base0C = "5B9D48";
|
||||||
|
base0D = "36A166";
|
||||||
|
base0E = "5F9182";
|
||||||
|
base0F = "9D6C7C";
|
||||||
|
}
|
20
themes/atelier-estuary.nix
Normal file
20
themes/atelier-estuary.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Estuary";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "22221B";
|
||||||
|
base01 = "302F27";
|
||||||
|
base02 = "5F5E4E";
|
||||||
|
base03 = "6C6B5A";
|
||||||
|
base04 = "878573";
|
||||||
|
base05 = "929181";
|
||||||
|
base06 = "E7E6DF";
|
||||||
|
base07 = "F4F3EC";
|
||||||
|
base08 = "BA6236";
|
||||||
|
base09 = "AE7313";
|
||||||
|
base0A = "A5980D";
|
||||||
|
base0B = "7D9726";
|
||||||
|
base0C = "5B9D48";
|
||||||
|
base0D = "36A166";
|
||||||
|
base0E = "5F9182";
|
||||||
|
base0F = "9D6C7C";
|
||||||
|
}
|
20
themes/atelier-forest-light.nix
Normal file
20
themes/atelier-forest-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Forest Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "F1EFEE";
|
||||||
|
base01 = "E6E2E0";
|
||||||
|
base02 = "A8A19F";
|
||||||
|
base03 = "9C9491";
|
||||||
|
base04 = "766E6B";
|
||||||
|
base05 = "68615E";
|
||||||
|
base06 = "2C2421";
|
||||||
|
base07 = "1B1918";
|
||||||
|
base08 = "F22C40";
|
||||||
|
base09 = "DF5320";
|
||||||
|
base0A = "C38418";
|
||||||
|
base0B = "7B9726";
|
||||||
|
base0C = "3D97B8";
|
||||||
|
base0D = "407EE7";
|
||||||
|
base0E = "6666EA";
|
||||||
|
base0F = "C33FF3";
|
||||||
|
}
|
20
themes/atelier-forest.nix
Normal file
20
themes/atelier-forest.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Forest";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "1B1918";
|
||||||
|
base01 = "2C2421";
|
||||||
|
base02 = "68615E";
|
||||||
|
base03 = "766E6B";
|
||||||
|
base04 = "9C9491";
|
||||||
|
base05 = "A8A19F";
|
||||||
|
base06 = "E6E2E0";
|
||||||
|
base07 = "F1EFEE";
|
||||||
|
base08 = "F22C40";
|
||||||
|
base09 = "DF5320";
|
||||||
|
base0A = "C38418";
|
||||||
|
base0B = "7B9726";
|
||||||
|
base0C = "3D97B8";
|
||||||
|
base0D = "407EE7";
|
||||||
|
base0E = "6666EA";
|
||||||
|
base0F = "C33FF3";
|
||||||
|
}
|
20
themes/atelier-heath-light.nix
Normal file
20
themes/atelier-heath-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Heath Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "F7F3F7";
|
||||||
|
base01 = "D8CAD8";
|
||||||
|
base02 = "AB9BAB";
|
||||||
|
base03 = "9E8F9E";
|
||||||
|
base04 = "776977";
|
||||||
|
base05 = "695D69";
|
||||||
|
base06 = "292329";
|
||||||
|
base07 = "1B181B";
|
||||||
|
base08 = "CA402B";
|
||||||
|
base09 = "A65926";
|
||||||
|
base0A = "BB8A35";
|
||||||
|
base0B = "918B3B";
|
||||||
|
base0C = "159393";
|
||||||
|
base0D = "516AEC";
|
||||||
|
base0E = "7B59C0";
|
||||||
|
base0F = "CC33CC";
|
||||||
|
}
|
20
themes/atelier-heath.nix
Normal file
20
themes/atelier-heath.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Heath";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "1B181B";
|
||||||
|
base01 = "292329";
|
||||||
|
base02 = "695D69";
|
||||||
|
base03 = "776977";
|
||||||
|
base04 = "9E8F9E";
|
||||||
|
base05 = "AB9BAB";
|
||||||
|
base06 = "D8CAD8";
|
||||||
|
base07 = "F7F3F7";
|
||||||
|
base08 = "CA402B";
|
||||||
|
base09 = "A65926";
|
||||||
|
base0A = "BB8A35";
|
||||||
|
base0B = "918B3B";
|
||||||
|
base0C = "159393";
|
||||||
|
base0D = "516AEC";
|
||||||
|
base0E = "7B59C0";
|
||||||
|
base0F = "CC33CC";
|
||||||
|
}
|
20
themes/atelier-lakeside-light.nix
Normal file
20
themes/atelier-lakeside-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Lakeside Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "EBF8FF";
|
||||||
|
base01 = "C1E4F6";
|
||||||
|
base02 = "7EA2B4";
|
||||||
|
base03 = "7195A8";
|
||||||
|
base04 = "5A7B8C";
|
||||||
|
base05 = "516D7B";
|
||||||
|
base06 = "1F292E";
|
||||||
|
base07 = "161B1D";
|
||||||
|
base08 = "D22D72";
|
||||||
|
base09 = "935C25";
|
||||||
|
base0A = "8A8A0F";
|
||||||
|
base0B = "568C3B";
|
||||||
|
base0C = "2D8F6F";
|
||||||
|
base0D = "257FAD";
|
||||||
|
base0E = "6B6BB8";
|
||||||
|
base0F = "B72DD2";
|
||||||
|
}
|
20
themes/atelier-lakeside.nix
Normal file
20
themes/atelier-lakeside.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Lakeside";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "161B1D";
|
||||||
|
base01 = "1F292E";
|
||||||
|
base02 = "516D7B";
|
||||||
|
base03 = "5A7B8C";
|
||||||
|
base04 = "7195A8";
|
||||||
|
base05 = "7EA2B4";
|
||||||
|
base06 = "C1E4F6";
|
||||||
|
base07 = "EBF8FF";
|
||||||
|
base08 = "D22D72";
|
||||||
|
base09 = "935C25";
|
||||||
|
base0A = "8A8A0F";
|
||||||
|
base0B = "568C3B";
|
||||||
|
base0C = "2D8F6F";
|
||||||
|
base0D = "257FAD";
|
||||||
|
base0E = "6B6BB8";
|
||||||
|
base0F = "B72DD2";
|
||||||
|
}
|
20
themes/atelier-plateau-light.nix
Normal file
20
themes/atelier-plateau-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Plateau Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "F4ECEC";
|
||||||
|
base01 = "E7DFDF";
|
||||||
|
base02 = "8A8585";
|
||||||
|
base03 = "7E7777";
|
||||||
|
base04 = "655D5D";
|
||||||
|
base05 = "585050";
|
||||||
|
base06 = "292424";
|
||||||
|
base07 = "1B1818";
|
||||||
|
base08 = "CA4949";
|
||||||
|
base09 = "B45A3C";
|
||||||
|
base0A = "A06E3B";
|
||||||
|
base0B = "4B8B8B";
|
||||||
|
base0C = "5485B6";
|
||||||
|
base0D = "7272CA";
|
||||||
|
base0E = "8464C4";
|
||||||
|
base0F = "BD5187";
|
||||||
|
}
|
20
themes/atelier-plateau.nix
Normal file
20
themes/atelier-plateau.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Plateau";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "1B1818";
|
||||||
|
base01 = "292424";
|
||||||
|
base02 = "585050";
|
||||||
|
base03 = "655D5D";
|
||||||
|
base04 = "7E7777";
|
||||||
|
base05 = "8A8585";
|
||||||
|
base06 = "E7DFDF";
|
||||||
|
base07 = "F4ECEC";
|
||||||
|
base08 = "CA4949";
|
||||||
|
base09 = "B45A3C";
|
||||||
|
base0A = "A06E3B";
|
||||||
|
base0B = "4B8B8B";
|
||||||
|
base0C = "5485B6";
|
||||||
|
base0D = "7272CA";
|
||||||
|
base0E = "8464C4";
|
||||||
|
base0F = "BD5187";
|
||||||
|
}
|
20
themes/atelier-savanna-light.nix
Normal file
20
themes/atelier-savanna-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Savanna Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "ECF4EE";
|
||||||
|
base01 = "DFE7E2";
|
||||||
|
base02 = "87928A";
|
||||||
|
base03 = "78877D";
|
||||||
|
base04 = "5F6D64";
|
||||||
|
base05 = "526057";
|
||||||
|
base06 = "232A25";
|
||||||
|
base07 = "171C19";
|
||||||
|
base08 = "B16139";
|
||||||
|
base09 = "9F713C";
|
||||||
|
base0A = "A07E3B";
|
||||||
|
base0B = "489963";
|
||||||
|
base0C = "1C9AA0";
|
||||||
|
base0D = "478C90";
|
||||||
|
base0E = "55859B";
|
||||||
|
base0F = "867469";
|
||||||
|
}
|
20
themes/atelier-savanna.nix
Normal file
20
themes/atelier-savanna.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Savanna";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "171C19";
|
||||||
|
base01 = "232A25";
|
||||||
|
base02 = "526057";
|
||||||
|
base03 = "5F6D64";
|
||||||
|
base04 = "78877D";
|
||||||
|
base05 = "87928A";
|
||||||
|
base06 = "DFE7E2";
|
||||||
|
base07 = "ECF4EE";
|
||||||
|
base08 = "B16139";
|
||||||
|
base09 = "9F713C";
|
||||||
|
base0A = "A07E3B";
|
||||||
|
base0B = "489963";
|
||||||
|
base0C = "1C9AA0";
|
||||||
|
base0D = "478C90";
|
||||||
|
base0E = "55859B";
|
||||||
|
base0F = "867469";
|
||||||
|
}
|
20
themes/atelier-seaside-light.nix
Normal file
20
themes/atelier-seaside-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Seaside Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "F4FBF4";
|
||||||
|
base01 = "CFE8CF";
|
||||||
|
base02 = "8CA68C";
|
||||||
|
base03 = "809980";
|
||||||
|
base04 = "687D68";
|
||||||
|
base05 = "5E6E5E";
|
||||||
|
base06 = "242924";
|
||||||
|
base07 = "131513";
|
||||||
|
base08 = "E6193C";
|
||||||
|
base09 = "87711D";
|
||||||
|
base0A = "98981B";
|
||||||
|
base0B = "29A329";
|
||||||
|
base0C = "1999B3";
|
||||||
|
base0D = "3D62F5";
|
||||||
|
base0E = "AD2BEE";
|
||||||
|
base0F = "E619C3";
|
||||||
|
}
|
20
themes/atelier-seaside.nix
Normal file
20
themes/atelier-seaside.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Seaside";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "131513";
|
||||||
|
base01 = "242924";
|
||||||
|
base02 = "5E6E5E";
|
||||||
|
base03 = "687D68";
|
||||||
|
base04 = "809980";
|
||||||
|
base05 = "8CA68C";
|
||||||
|
base06 = "CFE8CF";
|
||||||
|
base07 = "F4FBF4";
|
||||||
|
base08 = "E6193C";
|
||||||
|
base09 = "87711D";
|
||||||
|
base0A = "98981B";
|
||||||
|
base0B = "29A329";
|
||||||
|
base0C = "1999B3";
|
||||||
|
base0D = "3D62F5";
|
||||||
|
base0E = "AD2BEE";
|
||||||
|
base0F = "E619C3";
|
||||||
|
}
|
20
themes/atelier-sulphurpool-light.nix
Normal file
20
themes/atelier-sulphurpool-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Sulphurpool Light";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "F5F7FF";
|
||||||
|
base01 = "DFE2F1";
|
||||||
|
base02 = "979DB4";
|
||||||
|
base03 = "898EA4";
|
||||||
|
base04 = "6B7394";
|
||||||
|
base05 = "5E6687";
|
||||||
|
base06 = "293256";
|
||||||
|
base07 = "202746";
|
||||||
|
base08 = "C94922";
|
||||||
|
base09 = "C76B29";
|
||||||
|
base0A = "C08B30";
|
||||||
|
base0B = "AC9739";
|
||||||
|
base0C = "22A2C9";
|
||||||
|
base0D = "3D8FD1";
|
||||||
|
base0E = "6679CC";
|
||||||
|
base0F = "9C637A";
|
||||||
|
}
|
20
themes/atelier-sulphurpool.nix
Normal file
20
themes/atelier-sulphurpool.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atelier Sulphurpool";
|
||||||
|
author = "Bram de Haan (http://atelierbramdehaan.nl)";
|
||||||
|
base00 = "202746";
|
||||||
|
base01 = "293256";
|
||||||
|
base02 = "5E6687";
|
||||||
|
base03 = "6B7394";
|
||||||
|
base04 = "898EA4";
|
||||||
|
base05 = "979DB4";
|
||||||
|
base06 = "DFE2F1";
|
||||||
|
base07 = "F5F7FF";
|
||||||
|
base08 = "C94922";
|
||||||
|
base09 = "C76B29";
|
||||||
|
base0A = "C08B30";
|
||||||
|
base0B = "AC9739";
|
||||||
|
base0C = "22A2C9";
|
||||||
|
base0D = "3D8FD1";
|
||||||
|
base0E = "6679CC";
|
||||||
|
base0F = "9C637A";
|
||||||
|
}
|
20
themes/atlas.nix
Normal file
20
themes/atlas.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Atlas";
|
||||||
|
author = "Alex Lende (https://ajlende.com)";
|
||||||
|
base00 = "002635";
|
||||||
|
base01 = "00384D";
|
||||||
|
base02 = "517F8D";
|
||||||
|
base03 = "6C8B91";
|
||||||
|
base04 = "869696";
|
||||||
|
base05 = "A1A19A";
|
||||||
|
base06 = "E6E6DC";
|
||||||
|
base07 = "FAFAF8";
|
||||||
|
base08 = "FF5A67";
|
||||||
|
base09 = "F08E48";
|
||||||
|
base0A = "FFCC1B";
|
||||||
|
base0B = "7FC06E";
|
||||||
|
base0D = "5DD7B9";
|
||||||
|
base0C = "14747E";
|
||||||
|
base0E = "9A70A4";
|
||||||
|
base0F = "C43060";
|
||||||
|
}
|
20
themes/ayu-dark.nix
Normal file
20
themes/ayu-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Ayu Dark";
|
||||||
|
author = "Khue Nguyen <Z5483Y@gmail.com>";
|
||||||
|
base00 = "0F1419";
|
||||||
|
base01 = "131721";
|
||||||
|
base02 = "272D38";
|
||||||
|
base03 = "3E4B59";
|
||||||
|
base04 = "BFBDB6";
|
||||||
|
base05 = "E6E1CF";
|
||||||
|
base06 = "E6E1CF";
|
||||||
|
base07 = "F3F4F5";
|
||||||
|
base08 = "F07178";
|
||||||
|
base09 = "FF8F40";
|
||||||
|
base0A = "FFB454";
|
||||||
|
base0B = "B8CC52";
|
||||||
|
base0C = "95E6CB";
|
||||||
|
base0D = "59C2FF";
|
||||||
|
base0E = "D2A6FF";
|
||||||
|
base0F = "E6B673";
|
||||||
|
}
|
20
themes/ayu-light.nix
Normal file
20
themes/ayu-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Ayu Light";
|
||||||
|
author = "Khue Nguyen <Z5483Y@gmail.com>";
|
||||||
|
base00 = "FAFAFA";
|
||||||
|
base01 = "F3F4F5";
|
||||||
|
base02 = "F8F9FA";
|
||||||
|
base03 = "ABB0B6";
|
||||||
|
base04 = "828C99";
|
||||||
|
base05 = "5C6773";
|
||||||
|
base06 = "242936";
|
||||||
|
base07 = "1A1F29";
|
||||||
|
base08 = "F07178";
|
||||||
|
base09 = "FA8D3E";
|
||||||
|
base0A = "F2AE49";
|
||||||
|
base0B = "86B300";
|
||||||
|
base0C = "4CBF99";
|
||||||
|
base0D = "36A3D9";
|
||||||
|
base0E = "A37ACC";
|
||||||
|
base0F = "E6BA7E";
|
||||||
|
}
|
20
themes/ayu-mirage.nix
Normal file
20
themes/ayu-mirage.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Ayu Mirage";
|
||||||
|
author = "Khue Nguyen <Z5483Y@gmail.com>";
|
||||||
|
base00 = "171B24";
|
||||||
|
base01 = "1F2430";
|
||||||
|
base02 = "242936";
|
||||||
|
base03 = "707A8C";
|
||||||
|
base04 = "8A9199";
|
||||||
|
base05 = "CCCAC2";
|
||||||
|
base06 = "D9D7CE";
|
||||||
|
base07 = "F3F4F5";
|
||||||
|
base08 = "F28779";
|
||||||
|
base09 = "FFAD66";
|
||||||
|
base0A = "FFD173";
|
||||||
|
base0B = "D5FF80";
|
||||||
|
base0C = "95E6CB";
|
||||||
|
base0D = "5CCFE6";
|
||||||
|
base0E = "D4BFFF";
|
||||||
|
base0F = "F29E74";
|
||||||
|
}
|
20
themes/bespin.nix
Normal file
20
themes/bespin.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Bespin";
|
||||||
|
author = "Jan T. Sott";
|
||||||
|
base00 = "28211C";
|
||||||
|
base01 = "36312E";
|
||||||
|
base02 = "5E5D5C";
|
||||||
|
base03 = "666666";
|
||||||
|
base04 = "797977";
|
||||||
|
base05 = "8A8986";
|
||||||
|
base06 = "9D9B97";
|
||||||
|
base07 = "BAAE9E";
|
||||||
|
base08 = "CF6A4C";
|
||||||
|
base09 = "CF7D34";
|
||||||
|
base0A = "F9EE98";
|
||||||
|
base0B = "54BE0D";
|
||||||
|
base0C = "AFC4DB";
|
||||||
|
base0D = "5EA6EA";
|
||||||
|
base0E = "9B859D";
|
||||||
|
base0F = "937121";
|
||||||
|
}
|
20
themes/black-metal-bathory.nix
Normal file
20
themes/black-metal-bathory.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Bathory)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "E78A53";
|
||||||
|
base0B = "FBCB97";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-burzum.nix
Normal file
20
themes/black-metal-burzum.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Burzum)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "99BBAA";
|
||||||
|
base0B = "DDEECC";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-dark-funeral.nix
Normal file
20
themes/black-metal-dark-funeral.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Dark Funeral)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "5F81A5";
|
||||||
|
base0B = "D0DFEE";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-gorgoroth.nix
Normal file
20
themes/black-metal-gorgoroth.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Gorgoroth)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "8C7F70";
|
||||||
|
base0B = "9B8D7F";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-immortal.nix
Normal file
20
themes/black-metal-immortal.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Immortal)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "556677";
|
||||||
|
base0B = "7799BB";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-khold.nix
Normal file
20
themes/black-metal-khold.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Khold)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "974B46";
|
||||||
|
base0B = "ECEEE3";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-marduk.nix
Normal file
20
themes/black-metal-marduk.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Marduk)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "626B67";
|
||||||
|
base0B = "A5AAA7";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-mayhem.nix
Normal file
20
themes/black-metal-mayhem.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Mayhem)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "EECC6C";
|
||||||
|
base0B = "F3ECD4";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-nile.nix
Normal file
20
themes/black-metal-nile.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Nile)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "777755";
|
||||||
|
base0B = "AA9988";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal-venom.nix
Normal file
20
themes/black-metal-venom.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal (Venom)";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "79241F";
|
||||||
|
base0B = "F8F7F2";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/black-metal.nix
Normal file
20
themes/black-metal.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Black Metal";
|
||||||
|
author = "metalelf0 (https://github.com/metalelf0)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "121212";
|
||||||
|
base02 = "222222";
|
||||||
|
base03 = "333333";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "C1C1C1";
|
||||||
|
base06 = "999999";
|
||||||
|
base07 = "C1C1C1";
|
||||||
|
base08 = "5F8787";
|
||||||
|
base09 = "AAAAAA";
|
||||||
|
base0A = "A06666";
|
||||||
|
base0B = "DD9999";
|
||||||
|
base0C = "AAAAAA";
|
||||||
|
base0D = "888888";
|
||||||
|
base0E = "999999";
|
||||||
|
base0F = "444444";
|
||||||
|
}
|
20
themes/blueforest.nix
Normal file
20
themes/blueforest.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Blue Forest";
|
||||||
|
author = "alonsodomin (https://github.com/alonsodomin)";
|
||||||
|
base00 = "141F2E";
|
||||||
|
base01 = "1E5C1E";
|
||||||
|
base02 = "273E5C";
|
||||||
|
base03 = "A0FFA0";
|
||||||
|
base04 = "1E5C1E";
|
||||||
|
base05 = "FFCC33";
|
||||||
|
base06 = "91CCFF";
|
||||||
|
base07 = "375780";
|
||||||
|
base08 = "FFFAB1";
|
||||||
|
base09 = "FF8080";
|
||||||
|
base0A = "91CCFF";
|
||||||
|
base0B = "80FF80";
|
||||||
|
base0C = "80FF80";
|
||||||
|
base0D = "A2CFF5";
|
||||||
|
base0E = "0099FF";
|
||||||
|
base0F = "E7E7E7";
|
||||||
|
}
|
20
themes/blueish.nix
Normal file
20
themes/blueish.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Blueish";
|
||||||
|
author = "Ben Mayoras";
|
||||||
|
base00 = "182430";
|
||||||
|
base01 = "243C54";
|
||||||
|
base02 = "46290A";
|
||||||
|
base03 = "616D78";
|
||||||
|
base04 = "74AFE7";
|
||||||
|
base05 = "C8E1F8";
|
||||||
|
base06 = "DDEAF6";
|
||||||
|
base07 = "8F98A0";
|
||||||
|
base08 = "4CE587";
|
||||||
|
base09 = "F6A85C";
|
||||||
|
base0A = "82AAFF";
|
||||||
|
base0B = "C3E88D";
|
||||||
|
base0C = "5FD1FF";
|
||||||
|
base0D = "82AAFF";
|
||||||
|
base0E = "FF84DD";
|
||||||
|
base0F = "BBD2E8";
|
||||||
|
}
|
20
themes/brewer.nix
Normal file
20
themes/brewer.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Brewer";
|
||||||
|
author = "Timothée Poisot (http://github.com/tpoisot)";
|
||||||
|
base00 = "0C0D0E";
|
||||||
|
base01 = "2E2F30";
|
||||||
|
base02 = "515253";
|
||||||
|
base03 = "737475";
|
||||||
|
base04 = "959697";
|
||||||
|
base05 = "B7B8B9";
|
||||||
|
base06 = "DADBDC";
|
||||||
|
base07 = "FCFDFE";
|
||||||
|
base08 = "E31A1C";
|
||||||
|
base09 = "E6550D";
|
||||||
|
base0A = "DCA060";
|
||||||
|
base0B = "31A354";
|
||||||
|
base0C = "80B1D3";
|
||||||
|
base0D = "3182BD";
|
||||||
|
base0E = "756BB1";
|
||||||
|
base0F = "B15928";
|
||||||
|
}
|
20
themes/bright.nix
Normal file
20
themes/bright.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Bright";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "303030";
|
||||||
|
base02 = "505050";
|
||||||
|
base03 = "B0B0B0";
|
||||||
|
base04 = "D0D0D0";
|
||||||
|
base05 = "E0E0E0";
|
||||||
|
base06 = "F5F5F5";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FB0120";
|
||||||
|
base09 = "FC6D24";
|
||||||
|
base0A = "FDA331";
|
||||||
|
base0B = "A1C659";
|
||||||
|
base0C = "76C7B7";
|
||||||
|
base0D = "6FB3D2";
|
||||||
|
base0E = "D381C3";
|
||||||
|
base0F = "BE643C";
|
||||||
|
}
|
20
themes/brogrammer.nix
Normal file
20
themes/brogrammer.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Brogrammer";
|
||||||
|
author = "Vik Ramanujam (http://github.com/piggyslasher)";
|
||||||
|
base00 = "1F1F1F";
|
||||||
|
base01 = "F81118";
|
||||||
|
base02 = "2DC55E";
|
||||||
|
base03 = "ECBA0F";
|
||||||
|
base04 = "2A84D2";
|
||||||
|
base05 = "4E5AB7";
|
||||||
|
base06 = "1081D6";
|
||||||
|
base07 = "D6DBE5";
|
||||||
|
base08 = "D6DBE5";
|
||||||
|
base09 = "DE352E";
|
||||||
|
base0A = "1DD361";
|
||||||
|
base0B = "F3BD09";
|
||||||
|
base0C = "1081D6";
|
||||||
|
base0D = "5350B9";
|
||||||
|
base0E = "0F7DDB";
|
||||||
|
base0F = "FFFFFF";
|
||||||
|
}
|
20
themes/brushtrees-dark.nix
Normal file
20
themes/brushtrees-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Brush Trees Dark";
|
||||||
|
author = "Abraham White <abelincoln.white@gmail.com>";
|
||||||
|
base00 = "485867";
|
||||||
|
base01 = "5A6D7A";
|
||||||
|
base02 = "6D828E";
|
||||||
|
base03 = "8299A1";
|
||||||
|
base04 = "98AFB5";
|
||||||
|
base05 = "B0C5C8";
|
||||||
|
base06 = "C9DBDC";
|
||||||
|
base07 = "E3EFEF";
|
||||||
|
base08 = "B38686";
|
||||||
|
base09 = "D8BBA2";
|
||||||
|
base0A = "AAB386";
|
||||||
|
base0B = "87B386";
|
||||||
|
base0C = "86B3B3";
|
||||||
|
base0D = "868CB3";
|
||||||
|
base0E = "B386B2";
|
||||||
|
base0F = "B39F9F";
|
||||||
|
}
|
20
themes/brushtrees.nix
Normal file
20
themes/brushtrees.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Brush Trees";
|
||||||
|
author = "Abraham White <abelincoln.white@gmail.com>";
|
||||||
|
base00 = "E3EFEF";
|
||||||
|
base01 = "C9DBDC";
|
||||||
|
base02 = "B0C5C8";
|
||||||
|
base03 = "98AFB5";
|
||||||
|
base04 = "8299A1";
|
||||||
|
base05 = "6D828E";
|
||||||
|
base06 = "5A6D7A";
|
||||||
|
base07 = "485867";
|
||||||
|
base08 = "B38686";
|
||||||
|
base09 = "D8BBA2";
|
||||||
|
base0A = "AAB386";
|
||||||
|
base0B = "87B386";
|
||||||
|
base0C = "86B3B3";
|
||||||
|
base0D = "868CB3";
|
||||||
|
base0E = "B386B2";
|
||||||
|
base0F = "B39F9F";
|
||||||
|
}
|
20
themes/caroline.nix
Normal file
20
themes/caroline.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "caroline";
|
||||||
|
author = "ed (https://codeberg.org/ed)";
|
||||||
|
base00 = "1C1213";
|
||||||
|
base01 = "3A2425";
|
||||||
|
base02 = "563837";
|
||||||
|
base03 = "6D4745";
|
||||||
|
base04 = "8B5D57";
|
||||||
|
base05 = "A87569";
|
||||||
|
base06 = "C58D7B";
|
||||||
|
base07 = "E3A68C";
|
||||||
|
base08 = "C24F57";
|
||||||
|
base09 = "A63650";
|
||||||
|
base0A = "F28171";
|
||||||
|
base0B = "806C61";
|
||||||
|
base0C = "6B6566";
|
||||||
|
base0D = "684C59";
|
||||||
|
base0E = "A63650";
|
||||||
|
base0F = "893F45";
|
||||||
|
}
|
20
themes/catppuccin-frappe.nix
Normal file
20
themes/catppuccin-frappe.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Catppuccin Frappe";
|
||||||
|
author = "https://github.com/catppuccin/catppuccin";
|
||||||
|
base00 = "303446";
|
||||||
|
base01 = "292C3C";
|
||||||
|
base02 = "414559";
|
||||||
|
base03 = "51576D";
|
||||||
|
base04 = "626880";
|
||||||
|
base05 = "C6D0F5";
|
||||||
|
base06 = "F2D5CF";
|
||||||
|
base07 = "BABBF1";
|
||||||
|
base08 = "E78284";
|
||||||
|
base09 = "EF9F76";
|
||||||
|
base0A = "E5C890";
|
||||||
|
base0B = "A6D189";
|
||||||
|
base0C = "81C8BE";
|
||||||
|
base0D = "8CAAEE";
|
||||||
|
base0E = "CA9EE6";
|
||||||
|
base0F = "EEBEBE";
|
||||||
|
}
|
20
themes/catppuccin-latte.nix
Normal file
20
themes/catppuccin-latte.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Catppuccin Latte";
|
||||||
|
author = "https://github.com/catppuccin/catppuccin";
|
||||||
|
base00 = "EFF1F5";
|
||||||
|
base01 = "E6E9EF";
|
||||||
|
base02 = "CCD0DA";
|
||||||
|
base03 = "BCC0CC";
|
||||||
|
base04 = "ACB0BE";
|
||||||
|
base05 = "4C4F69";
|
||||||
|
base06 = "DC8A78";
|
||||||
|
base07 = "7287FD";
|
||||||
|
base08 = "D20F39";
|
||||||
|
base09 = "FE640B";
|
||||||
|
base0A = "DF8E1D";
|
||||||
|
base0B = "40A02B";
|
||||||
|
base0C = "179299";
|
||||||
|
base0D = "1E66F5";
|
||||||
|
base0E = "8839EF";
|
||||||
|
base0F = "DD7878";
|
||||||
|
}
|
20
themes/catppuccin-macchiato.nix
Normal file
20
themes/catppuccin-macchiato.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Catppuccin Macchiato";
|
||||||
|
author = "https://github.com/catppuccin/catppuccin";
|
||||||
|
base00 = "24273A";
|
||||||
|
base01 = "1E2030";
|
||||||
|
base02 = "363A4F";
|
||||||
|
base03 = "494D64";
|
||||||
|
base04 = "5B6078";
|
||||||
|
base05 = "CAD3F5";
|
||||||
|
base06 = "F4DBD6";
|
||||||
|
base07 = "B7BDF8";
|
||||||
|
base08 = "ED8796";
|
||||||
|
base09 = "F5A97F";
|
||||||
|
base0A = "EED49F";
|
||||||
|
base0B = "A6DA95";
|
||||||
|
base0C = "8BD5CA";
|
||||||
|
base0D = "8AADF4";
|
||||||
|
base0E = "C6A0F6";
|
||||||
|
base0F = "F0C6C6";
|
||||||
|
}
|
20
themes/catppuccin-mocha.nix
Normal file
20
themes/catppuccin-mocha.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Catppuccin Mocha";
|
||||||
|
author = "https://github.com/catppuccin/catppuccin";
|
||||||
|
base00 = "1E1E2E";
|
||||||
|
base01 = "181825";
|
||||||
|
base02 = "313244";
|
||||||
|
base03 = "45475A";
|
||||||
|
base04 = "585B70";
|
||||||
|
base05 = "CDD6F4";
|
||||||
|
base06 = "F5E0DC";
|
||||||
|
base07 = "B4BEFE";
|
||||||
|
base08 = "F38BA8";
|
||||||
|
base09 = "FAB387";
|
||||||
|
base0A = "F9E2AF";
|
||||||
|
base0B = "A6E3A1";
|
||||||
|
base0C = "94E2D5";
|
||||||
|
base0D = "89B4FA";
|
||||||
|
base0E = "CBA6F7";
|
||||||
|
base0F = "F2CDCD";
|
||||||
|
}
|
20
themes/chalk.nix
Normal file
20
themes/chalk.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Chalk";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "151515";
|
||||||
|
base01 = "202020";
|
||||||
|
base02 = "303030";
|
||||||
|
base03 = "505050";
|
||||||
|
base04 = "B0B0B0";
|
||||||
|
base05 = "D0D0D0";
|
||||||
|
base06 = "E0E0E0";
|
||||||
|
base07 = "F5F5F5";
|
||||||
|
base08 = "FB9FB1";
|
||||||
|
base09 = "EDA987";
|
||||||
|
base0A = "DDB26F";
|
||||||
|
base0B = "ACC267";
|
||||||
|
base0C = "12CFC0";
|
||||||
|
base0D = "6FC2EF";
|
||||||
|
base0E = "E1A3EE";
|
||||||
|
base0F = "DEAF8F";
|
||||||
|
}
|
20
themes/circus.nix
Normal file
20
themes/circus.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Circus";
|
||||||
|
author = "Stephan Boyer (https://github.com/stepchowfun) and Esther Wang (https://github.com/ewang12)";
|
||||||
|
base00 = "191919";
|
||||||
|
base01 = "202020";
|
||||||
|
base02 = "303030";
|
||||||
|
base03 = "5F5A60";
|
||||||
|
base04 = "505050";
|
||||||
|
base05 = "A7A7A7";
|
||||||
|
base06 = "808080";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "DC657D";
|
||||||
|
base09 = "4BB1A7";
|
||||||
|
base0A = "C3BA63";
|
||||||
|
base0B = "84B97C";
|
||||||
|
base0C = "4BB1A7";
|
||||||
|
base0D = "639EE4";
|
||||||
|
base0E = "B888E2";
|
||||||
|
base0F = "B888E2";
|
||||||
|
}
|
20
themes/classic-dark.nix
Normal file
20
themes/classic-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Classic Dark";
|
||||||
|
author = "Jason Heeris (http://heeris.id.au)";
|
||||||
|
base00 = "151515";
|
||||||
|
base01 = "202020";
|
||||||
|
base02 = "303030";
|
||||||
|
base03 = "505050";
|
||||||
|
base04 = "B0B0B0";
|
||||||
|
base05 = "D0D0D0";
|
||||||
|
base06 = "E0E0E0";
|
||||||
|
base07 = "F5F5F5";
|
||||||
|
base08 = "AC4142";
|
||||||
|
base09 = "D28445";
|
||||||
|
base0A = "F4BF75";
|
||||||
|
base0B = "90A959";
|
||||||
|
base0C = "75B5AA";
|
||||||
|
base0D = "6A9FB5";
|
||||||
|
base0E = "AA759F";
|
||||||
|
base0F = "8F5536";
|
||||||
|
}
|
20
themes/classic-light.nix
Normal file
20
themes/classic-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Classic Light";
|
||||||
|
author = "Jason Heeris (http://heeris.id.au)";
|
||||||
|
base00 = "F5F5F5";
|
||||||
|
base01 = "E0E0E0";
|
||||||
|
base02 = "D0D0D0";
|
||||||
|
base03 = "B0B0B0";
|
||||||
|
base04 = "505050";
|
||||||
|
base05 = "303030";
|
||||||
|
base06 = "202020";
|
||||||
|
base07 = "151515";
|
||||||
|
base08 = "AC4142";
|
||||||
|
base09 = "D28445";
|
||||||
|
base0A = "F4BF75";
|
||||||
|
base0B = "90A959";
|
||||||
|
base0C = "75B5AA";
|
||||||
|
base0D = "6A9FB5";
|
||||||
|
base0E = "AA759F";
|
||||||
|
base0F = "8F5536";
|
||||||
|
}
|
20
themes/codeschool.nix
Normal file
20
themes/codeschool.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Codeschool";
|
||||||
|
author = "blockloop";
|
||||||
|
base00 = "232C31";
|
||||||
|
base01 = "1C3657";
|
||||||
|
base02 = "2A343A";
|
||||||
|
base03 = "3F4944";
|
||||||
|
base04 = "84898C";
|
||||||
|
base05 = "9EA7A6";
|
||||||
|
base06 = "A7CFA3";
|
||||||
|
base07 = "B5D8F6";
|
||||||
|
base08 = "2A5491";
|
||||||
|
base09 = "43820D";
|
||||||
|
base0A = "A03B1E";
|
||||||
|
base0B = "237986";
|
||||||
|
base0C = "B02F30";
|
||||||
|
base0D = "484D79";
|
||||||
|
base0E = "C59820";
|
||||||
|
base0F = "C98344";
|
||||||
|
}
|
20
themes/colors.nix
Normal file
20
themes/colors.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Colors";
|
||||||
|
author = "mrmrs (http://clrs.cc)";
|
||||||
|
base00 = "111111";
|
||||||
|
base01 = "333333";
|
||||||
|
base02 = "555555";
|
||||||
|
base03 = "777777";
|
||||||
|
base04 = "999999";
|
||||||
|
base05 = "BBBBBB";
|
||||||
|
base06 = "DDDDDD";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FF4136";
|
||||||
|
base09 = "FF851B";
|
||||||
|
base0A = "FFDC00";
|
||||||
|
base0B = "2ECC40";
|
||||||
|
base0C = "7FDBFF";
|
||||||
|
base0D = "0074D9";
|
||||||
|
base0E = "B10DC9";
|
||||||
|
base0F = "85144B";
|
||||||
|
}
|
20
themes/cupcake.nix
Normal file
20
themes/cupcake.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Cupcake";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "FBF1F2";
|
||||||
|
base01 = "F2F1F4";
|
||||||
|
base02 = "D8D5DD";
|
||||||
|
base03 = "BFB9C6";
|
||||||
|
base04 = "A59DAF";
|
||||||
|
base05 = "8B8198";
|
||||||
|
base06 = "72677E";
|
||||||
|
base07 = "585062";
|
||||||
|
base08 = "D57E85";
|
||||||
|
base09 = "EBB790";
|
||||||
|
base0A = "DCB16C";
|
||||||
|
base0B = "A3B367";
|
||||||
|
base0C = "69A9A7";
|
||||||
|
base0D = "7297B9";
|
||||||
|
base0E = "BB99B4";
|
||||||
|
base0F = "BAA58C";
|
||||||
|
}
|
20
themes/cupertino.nix
Normal file
20
themes/cupertino.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Cupertino";
|
||||||
|
author = "Defman21";
|
||||||
|
base00 = "FFFFFF";
|
||||||
|
base01 = "C0C0C0";
|
||||||
|
base02 = "C0C0C0";
|
||||||
|
base03 = "808080";
|
||||||
|
base04 = "808080";
|
||||||
|
base05 = "404040";
|
||||||
|
base06 = "404040";
|
||||||
|
base07 = "5E5E5E";
|
||||||
|
base08 = "C41A15";
|
||||||
|
base09 = "EB8500";
|
||||||
|
base0A = "826B28";
|
||||||
|
base0B = "007400";
|
||||||
|
base0C = "318495";
|
||||||
|
base0D = "0000FF";
|
||||||
|
base0E = "A90D91";
|
||||||
|
base0F = "826B28";
|
||||||
|
}
|
20
themes/da-one-black.nix
Normal file
20
themes/da-one-black.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Da One Black";
|
||||||
|
author = "NNB (https://github.com/NNBnh)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "282828";
|
||||||
|
base02 = "585858";
|
||||||
|
base03 = "888888";
|
||||||
|
base04 = "C8C8C8";
|
||||||
|
base05 = "FFFFFF";
|
||||||
|
base06 = "FFFFFF";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FA7883";
|
||||||
|
base09 = "FFC387";
|
||||||
|
base0A = "FF9470";
|
||||||
|
base0B = "98C379";
|
||||||
|
base0C = "8AF5FF";
|
||||||
|
base0D = "6BB8FF";
|
||||||
|
base0E = "E799FF";
|
||||||
|
base0F = "B3684F";
|
||||||
|
}
|
20
themes/da-one-gray.nix
Normal file
20
themes/da-one-gray.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Da One Gray";
|
||||||
|
author = "NNB (https://github.com/NNBnh)";
|
||||||
|
base00 = "181818";
|
||||||
|
base01 = "282828";
|
||||||
|
base02 = "585858";
|
||||||
|
base03 = "888888";
|
||||||
|
base04 = "C8C8C8";
|
||||||
|
base05 = "FFFFFF";
|
||||||
|
base06 = "FFFFFF";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FA7883";
|
||||||
|
base09 = "FFC387";
|
||||||
|
base0A = "FF9470";
|
||||||
|
base0B = "98C379";
|
||||||
|
base0C = "8AF5FF";
|
||||||
|
base0D = "6BB8FF";
|
||||||
|
base0E = "E799FF";
|
||||||
|
base0F = "B3684F";
|
||||||
|
}
|
20
themes/da-one-ocean.nix
Normal file
20
themes/da-one-ocean.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Da One Ocean";
|
||||||
|
author = "NNB (https://github.com/NNBnh)";
|
||||||
|
base00 = "171726";
|
||||||
|
base01 = "22273D";
|
||||||
|
base02 = "525866";
|
||||||
|
base03 = "878D96";
|
||||||
|
base04 = "C8C8C8";
|
||||||
|
base05 = "FFFFFF";
|
||||||
|
base06 = "FFFFFF";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FA7883";
|
||||||
|
base09 = "FFC387";
|
||||||
|
base0A = "FF9470";
|
||||||
|
base0B = "98C379";
|
||||||
|
base0C = "8AF5FF";
|
||||||
|
base0D = "6BB8FF";
|
||||||
|
base0E = "E799FF";
|
||||||
|
base0F = "B3684F";
|
||||||
|
}
|
20
themes/da-one-paper.nix
Normal file
20
themes/da-one-paper.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Da One Paper";
|
||||||
|
author = "NNB (https://github.com/NNBnh)";
|
||||||
|
base00 = "FAF0DC";
|
||||||
|
base01 = "C8C8C8";
|
||||||
|
base02 = "888888";
|
||||||
|
base03 = "585858";
|
||||||
|
base04 = "282828";
|
||||||
|
base05 = "181818";
|
||||||
|
base06 = "000000";
|
||||||
|
base07 = "000000";
|
||||||
|
base08 = "DE5D6E";
|
||||||
|
base09 = "FF9470";
|
||||||
|
base0A = "B3684F";
|
||||||
|
base0B = "76A85D";
|
||||||
|
base0C = "64B5A7";
|
||||||
|
base0D = "5890F8";
|
||||||
|
base0E = "C173D1";
|
||||||
|
base0F = "B3684F";
|
||||||
|
}
|
20
themes/da-one-sea.nix
Normal file
20
themes/da-one-sea.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Da One Sea";
|
||||||
|
author = "NNB (https://github.com/NNBnh)";
|
||||||
|
base00 = "22273D";
|
||||||
|
base01 = "374059";
|
||||||
|
base02 = "525866";
|
||||||
|
base03 = "878D96";
|
||||||
|
base04 = "C8C8C8";
|
||||||
|
base05 = "FFFFFF";
|
||||||
|
base06 = "FFFFFF";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FA7883";
|
||||||
|
base09 = "FFC387";
|
||||||
|
base0A = "FF9470";
|
||||||
|
base0B = "98C379";
|
||||||
|
base0C = "8AF5FF";
|
||||||
|
base0D = "6BB8FF";
|
||||||
|
base0E = "E799FF";
|
||||||
|
base0F = "B3684F";
|
||||||
|
}
|
20
themes/da-one-white.nix
Normal file
20
themes/da-one-white.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Da One White";
|
||||||
|
author = "NNB (https://github.com/NNBnh)";
|
||||||
|
base00 = "FFFFFF";
|
||||||
|
base01 = "C8C8C8";
|
||||||
|
base02 = "888888";
|
||||||
|
base03 = "585858";
|
||||||
|
base04 = "282828";
|
||||||
|
base05 = "181818";
|
||||||
|
base06 = "000000";
|
||||||
|
base07 = "000000";
|
||||||
|
base08 = "DE5D6E";
|
||||||
|
base09 = "FF9470";
|
||||||
|
base0A = "B3684F";
|
||||||
|
base0B = "76A85D";
|
||||||
|
base0C = "64B5A7";
|
||||||
|
base0D = "5890F8";
|
||||||
|
base0E = "C173D1";
|
||||||
|
base0F = "B3684F";
|
||||||
|
}
|
20
themes/danqing-light.nix
Normal file
20
themes/danqing-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "DanQing Light";
|
||||||
|
author = "Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com)";
|
||||||
|
base00 = "FCFEFD";
|
||||||
|
base01 = "ECF6F2";
|
||||||
|
base02 = "E0F0EF";
|
||||||
|
base03 = "CAD8D2";
|
||||||
|
base04 = "9DA8A3";
|
||||||
|
base05 = "5A605D";
|
||||||
|
base06 = "434846";
|
||||||
|
base07 = "2D302F";
|
||||||
|
base08 = "F9906F";
|
||||||
|
base09 = "B38A61";
|
||||||
|
base0A = "F0C239";
|
||||||
|
base0B = "8AB361";
|
||||||
|
base0C = "30DFF3";
|
||||||
|
base0D = "B0A4E3";
|
||||||
|
base0E = "CCA4E3";
|
||||||
|
base0F = "CA6924";
|
||||||
|
}
|
20
themes/danqing.nix
Normal file
20
themes/danqing.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "DanQing";
|
||||||
|
author = "Wenhan Zhu (Cosmos) (zhuwenhan950913@gmail.com)";
|
||||||
|
base00 = "2D302F";
|
||||||
|
base01 = "434846";
|
||||||
|
base02 = "5A605D";
|
||||||
|
base03 = "9DA8A3";
|
||||||
|
base04 = "CAD8D2";
|
||||||
|
base05 = "E0F0EF";
|
||||||
|
base06 = "ECF6F2";
|
||||||
|
base07 = "FCFEFD";
|
||||||
|
base08 = "F9906F";
|
||||||
|
base09 = "B38A61";
|
||||||
|
base0A = "F0C239";
|
||||||
|
base0B = "8AB361";
|
||||||
|
base0C = "30DFF3";
|
||||||
|
base0D = "B0A4E3";
|
||||||
|
base0E = "CCA4E3";
|
||||||
|
base0F = "CA6924";
|
||||||
|
}
|
20
themes/darcula.nix
Normal file
20
themes/darcula.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Darcula";
|
||||||
|
author = "jetbrains";
|
||||||
|
base00 = "2B2B2B";
|
||||||
|
base01 = "323232";
|
||||||
|
base02 = "323232";
|
||||||
|
base03 = "606366";
|
||||||
|
base04 = "A4A3A3";
|
||||||
|
base05 = "A9B7C6";
|
||||||
|
base06 = "FFC66D";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "4EADE5";
|
||||||
|
base09 = "689757";
|
||||||
|
base0A = "BBB529";
|
||||||
|
base0B = "6A8759";
|
||||||
|
base0C = "629755";
|
||||||
|
base0D = "9876AA";
|
||||||
|
base0E = "CC7832";
|
||||||
|
base0F = "808080";
|
||||||
|
}
|
20
themes/darkmoss.nix
Normal file
20
themes/darkmoss.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "darkmoss";
|
||||||
|
author = "Gabriel Avanzi (https://github.com/avanzzzi)";
|
||||||
|
base00 = "171E1F";
|
||||||
|
base01 = "252C2D";
|
||||||
|
base02 = "373C3D";
|
||||||
|
base03 = "555E5F";
|
||||||
|
base04 = "818F80";
|
||||||
|
base05 = "C7C7A5";
|
||||||
|
base06 = "E3E3C8";
|
||||||
|
base07 = "E1EAEF";
|
||||||
|
base08 = "FF4658";
|
||||||
|
base09 = "E6DB74";
|
||||||
|
base0A = "FDB11F";
|
||||||
|
base0B = "499180";
|
||||||
|
base0C = "66D9EF";
|
||||||
|
base0D = "498091";
|
||||||
|
base0E = "9BC0C8";
|
||||||
|
base0F = "D27B53";
|
||||||
|
}
|
20
themes/darktooth.nix
Normal file
20
themes/darktooth.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Darktooth";
|
||||||
|
author = "Jason Milkins (https://github.com/jasonm23)";
|
||||||
|
base00 = "1D2021";
|
||||||
|
base01 = "32302F";
|
||||||
|
base02 = "504945";
|
||||||
|
base03 = "665C54";
|
||||||
|
base04 = "928374";
|
||||||
|
base05 = "A89984";
|
||||||
|
base06 = "D5C4A1";
|
||||||
|
base07 = "FDF4C1";
|
||||||
|
base08 = "FB543F";
|
||||||
|
base09 = "FE8625";
|
||||||
|
base0A = "FAC03B";
|
||||||
|
base0B = "95C085";
|
||||||
|
base0C = "8BA59B";
|
||||||
|
base0D = "0D6678";
|
||||||
|
base0E = "8F4673";
|
||||||
|
base0F = "A87322";
|
||||||
|
}
|
20
themes/darkviolet.nix
Normal file
20
themes/darkviolet.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Dark Violet";
|
||||||
|
author = "ruler501 (https://github.com/ruler501/base16-darkviolet)";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "231A40";
|
||||||
|
base02 = "432D59";
|
||||||
|
base03 = "593380";
|
||||||
|
base04 = "00FF00";
|
||||||
|
base05 = "B08AE6";
|
||||||
|
base06 = "9045E6";
|
||||||
|
base07 = "A366FF";
|
||||||
|
base08 = "A82EE6";
|
||||||
|
base09 = "BB66CC";
|
||||||
|
base0A = "F29DF2";
|
||||||
|
base0B = "4595E6";
|
||||||
|
base0C = "40DFFF";
|
||||||
|
base0D = "4136D9";
|
||||||
|
base0E = "7E5CE6";
|
||||||
|
base0F = "A886BF";
|
||||||
|
}
|
20
themes/decaf.nix
Normal file
20
themes/decaf.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Decaf";
|
||||||
|
author = "Alex Mirrington (https://github.com/alexmirrington)";
|
||||||
|
base00 = "2D2D2D";
|
||||||
|
base01 = "393939";
|
||||||
|
base02 = "515151";
|
||||||
|
base03 = "777777";
|
||||||
|
base04 = "B4B7B4";
|
||||||
|
base05 = "CCCCCC";
|
||||||
|
base06 = "E0E0E0";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "FF7F7B";
|
||||||
|
base09 = "FFBF70";
|
||||||
|
base0A = "FFD67C";
|
||||||
|
base0B = "BEDA78";
|
||||||
|
base0C = "BED6FF";
|
||||||
|
base0D = "90BEE1";
|
||||||
|
base0E = "EFB3F7";
|
||||||
|
base0F = "FF93B3";
|
||||||
|
}
|
20
themes/default-dark.nix
Normal file
20
themes/default-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Default Dark";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "181818";
|
||||||
|
base01 = "282828";
|
||||||
|
base02 = "383838";
|
||||||
|
base03 = "585858";
|
||||||
|
base04 = "B8B8B8";
|
||||||
|
base05 = "D8D8D8";
|
||||||
|
base06 = "E8E8E8";
|
||||||
|
base07 = "F8F8F8";
|
||||||
|
base08 = "AB4642";
|
||||||
|
base09 = "DC9656";
|
||||||
|
base0A = "F7CA88";
|
||||||
|
base0B = "A1B56C";
|
||||||
|
base0C = "86C1B9";
|
||||||
|
base0D = "7CAFC2";
|
||||||
|
base0E = "BA8BAF";
|
||||||
|
base0F = "A16946";
|
||||||
|
}
|
20
themes/default-light.nix
Normal file
20
themes/default-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Default Light";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "F8F8F8";
|
||||||
|
base01 = "E8E8E8";
|
||||||
|
base02 = "D8D8D8";
|
||||||
|
base03 = "B8B8B8";
|
||||||
|
base04 = "585858";
|
||||||
|
base05 = "383838";
|
||||||
|
base06 = "282828";
|
||||||
|
base07 = "181818";
|
||||||
|
base08 = "AB4642";
|
||||||
|
base09 = "DC9656";
|
||||||
|
base0A = "F7CA88";
|
||||||
|
base0B = "A1B56C";
|
||||||
|
base0C = "86C1B9";
|
||||||
|
base0D = "7CAFC2";
|
||||||
|
base0E = "BA8BAF";
|
||||||
|
base0F = "A16946";
|
||||||
|
}
|
20
themes/dirtysea.nix
Normal file
20
themes/dirtysea.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "dirtysea";
|
||||||
|
author = "Kahlil (Kal) Hodgson";
|
||||||
|
base00 = "E0E0E0";
|
||||||
|
base01 = "D0DAD0";
|
||||||
|
base02 = "D0D0D0";
|
||||||
|
base03 = "707070";
|
||||||
|
base04 = "202020";
|
||||||
|
base05 = "000000";
|
||||||
|
base06 = "F8F8F8";
|
||||||
|
base07 = "C4D9C4";
|
||||||
|
base08 = "840000";
|
||||||
|
base09 = "006565";
|
||||||
|
base0A = "755B00";
|
||||||
|
base0B = "730073";
|
||||||
|
base0C = "755B00";
|
||||||
|
base0D = "007300";
|
||||||
|
base0E = "000090";
|
||||||
|
base0F = "755B00";
|
||||||
|
}
|
20
themes/dracula.nix
Normal file
20
themes/dracula.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Dracula";
|
||||||
|
author = "Mike Barkmin (http://github.com/mikebarkmin) based on Dracula Theme (http://github.com/dracula)";
|
||||||
|
base00 = "282936";
|
||||||
|
base01 = "3A3C4E";
|
||||||
|
base02 = "4D4F68";
|
||||||
|
base03 = "626483";
|
||||||
|
base04 = "62D6E8";
|
||||||
|
base05 = "E9E9F4";
|
||||||
|
base06 = "F1F2F8";
|
||||||
|
base07 = "F7F7FB";
|
||||||
|
base08 = "EA51B2";
|
||||||
|
base09 = "B45BCF";
|
||||||
|
base0A = "00F769";
|
||||||
|
base0B = "EBFF87";
|
||||||
|
base0C = "A1EFE4";
|
||||||
|
base0D = "62D6E8";
|
||||||
|
base0E = "B45BCF";
|
||||||
|
base0F = "00F769";
|
||||||
|
}
|
20
themes/edge-dark.nix
Normal file
20
themes/edge-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Edge Dark";
|
||||||
|
author = "cjayross (https://github.com/cjayross)";
|
||||||
|
base00 = "262729";
|
||||||
|
base01 = "88909F";
|
||||||
|
base02 = "B7BEC9";
|
||||||
|
base03 = "3E4249";
|
||||||
|
base04 = "73B3E7";
|
||||||
|
base05 = "B7BEC9";
|
||||||
|
base06 = "D390E7";
|
||||||
|
base07 = "3E4249";
|
||||||
|
base08 = "E77171";
|
||||||
|
base09 = "E77171";
|
||||||
|
base0A = "DBB774";
|
||||||
|
base0B = "A1BF78";
|
||||||
|
base0C = "5EBAA5";
|
||||||
|
base0D = "73B3E7";
|
||||||
|
base0E = "D390E7";
|
||||||
|
base0F = "5EBAA5";
|
||||||
|
}
|
20
themes/edge-light.nix
Normal file
20
themes/edge-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Edge Light";
|
||||||
|
author = "cjayross (https://github.com/cjayross)";
|
||||||
|
base00 = "FAFAFA";
|
||||||
|
base01 = "7C9F4B";
|
||||||
|
base02 = "D69822";
|
||||||
|
base03 = "5E646F";
|
||||||
|
base04 = "6587BF";
|
||||||
|
base05 = "5E646F";
|
||||||
|
base06 = "B870CE";
|
||||||
|
base07 = "5E646F";
|
||||||
|
base08 = "DB7070";
|
||||||
|
base09 = "DB7070";
|
||||||
|
base0A = "D69822";
|
||||||
|
base0B = "7C9F4B";
|
||||||
|
base0C = "509C93";
|
||||||
|
base0D = "6587BF";
|
||||||
|
base0E = "B870CE";
|
||||||
|
base0F = "509C93";
|
||||||
|
}
|
20
themes/eighties.nix
Normal file
20
themes/eighties.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Eighties";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "2D2D2D";
|
||||||
|
base01 = "393939";
|
||||||
|
base02 = "515151";
|
||||||
|
base03 = "747369";
|
||||||
|
base04 = "A09F93";
|
||||||
|
base05 = "D3D0C8";
|
||||||
|
base06 = "E8E6DF";
|
||||||
|
base07 = "F2F0EC";
|
||||||
|
base08 = "F2777A";
|
||||||
|
base09 = "F99157";
|
||||||
|
base0A = "FFCC66";
|
||||||
|
base0B = "99CC99";
|
||||||
|
base0C = "66CCCC";
|
||||||
|
base0D = "6699CC";
|
||||||
|
base0E = "CC99CC";
|
||||||
|
base0F = "D27B53";
|
||||||
|
}
|
20
themes/embers.nix
Normal file
20
themes/embers.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Embers";
|
||||||
|
author = "Jannik Siebert (https://github.com/janniks)";
|
||||||
|
base00 = "16130F";
|
||||||
|
base01 = "2C2620";
|
||||||
|
base02 = "433B32";
|
||||||
|
base03 = "5A5047";
|
||||||
|
base04 = "8A8075";
|
||||||
|
base05 = "A39A90";
|
||||||
|
base06 = "BEB6AE";
|
||||||
|
base07 = "DBD6D1";
|
||||||
|
base08 = "826D57";
|
||||||
|
base09 = "828257";
|
||||||
|
base0A = "6D8257";
|
||||||
|
base0B = "57826D";
|
||||||
|
base0C = "576D82";
|
||||||
|
base0D = "6D5782";
|
||||||
|
base0E = "82576D";
|
||||||
|
base0F = "825757";
|
||||||
|
}
|
20
themes/emil.nix
Normal file
20
themes/emil.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "emil";
|
||||||
|
author = "limelier";
|
||||||
|
base00 = "EFEFEF";
|
||||||
|
base01 = "BEBED2";
|
||||||
|
base02 = "9E9EAF";
|
||||||
|
base03 = "7C7C98";
|
||||||
|
base04 = "505063";
|
||||||
|
base05 = "313145";
|
||||||
|
base06 = "22223A";
|
||||||
|
base07 = "1A1A2F";
|
||||||
|
base08 = "F43979";
|
||||||
|
base09 = "D22A8B";
|
||||||
|
base0A = "FF669B";
|
||||||
|
base0B = "0073A8";
|
||||||
|
base0C = "2155D6";
|
||||||
|
base0D = "471397";
|
||||||
|
base0E = "6916B6";
|
||||||
|
base0F = "8D17A5";
|
||||||
|
}
|
20
themes/equilibrium-dark.nix
Normal file
20
themes/equilibrium-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Equilibrium Dark";
|
||||||
|
author = "Carlo Abelli";
|
||||||
|
base00 = "0C1118";
|
||||||
|
base01 = "181C22";
|
||||||
|
base02 = "22262D";
|
||||||
|
base03 = "7B776E";
|
||||||
|
base04 = "949088";
|
||||||
|
base05 = "AFABA2";
|
||||||
|
base06 = "CAC6BD";
|
||||||
|
base07 = "E7E2D9";
|
||||||
|
base08 = "F04339";
|
||||||
|
base09 = "DF5923";
|
||||||
|
base0A = "BB8801";
|
||||||
|
base0B = "7F8B00";
|
||||||
|
base0C = "00948B";
|
||||||
|
base0D = "008DD1";
|
||||||
|
base0E = "6A7FD2";
|
||||||
|
base0F = "E3488E";
|
||||||
|
}
|
20
themes/equilibrium-gray-dark.nix
Normal file
20
themes/equilibrium-gray-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Equilibrium Gray Dark";
|
||||||
|
author = "Carlo Abelli";
|
||||||
|
base00 = "111111";
|
||||||
|
base01 = "1B1B1B";
|
||||||
|
base02 = "262626";
|
||||||
|
base03 = "777777";
|
||||||
|
base04 = "919191";
|
||||||
|
base05 = "ABABAB";
|
||||||
|
base06 = "C6C6C6";
|
||||||
|
base07 = "E2E2E2";
|
||||||
|
base08 = "F04339";
|
||||||
|
base09 = "DF5923";
|
||||||
|
base0A = "BB8801";
|
||||||
|
base0B = "7F8B00";
|
||||||
|
base0C = "00948B";
|
||||||
|
base0D = "008DD1";
|
||||||
|
base0E = "6A7FD2";
|
||||||
|
base0F = "E3488E";
|
||||||
|
}
|
20
themes/equilibrium-gray-light.nix
Normal file
20
themes/equilibrium-gray-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Equilibrium Gray Light";
|
||||||
|
author = "Carlo Abelli";
|
||||||
|
base00 = "F1F1F1";
|
||||||
|
base01 = "E2E2E2";
|
||||||
|
base02 = "D4D4D4";
|
||||||
|
base03 = "777777";
|
||||||
|
base04 = "5E5E5E";
|
||||||
|
base05 = "474747";
|
||||||
|
base06 = "303030";
|
||||||
|
base07 = "1B1B1B";
|
||||||
|
base08 = "D02023";
|
||||||
|
base09 = "BF3E05";
|
||||||
|
base0A = "9D6F00";
|
||||||
|
base0B = "637200";
|
||||||
|
base0C = "007A72";
|
||||||
|
base0D = "0073B5";
|
||||||
|
base0E = "4E66B6";
|
||||||
|
base0F = "C42775";
|
||||||
|
}
|
20
themes/equilibrium-light.nix
Normal file
20
themes/equilibrium-light.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Equilibrium Light";
|
||||||
|
author = "Carlo Abelli";
|
||||||
|
base00 = "F5F0E7";
|
||||||
|
base01 = "E7E2D9";
|
||||||
|
base02 = "D8D4CB";
|
||||||
|
base03 = "73777F";
|
||||||
|
base04 = "5A5F66";
|
||||||
|
base05 = "43474E";
|
||||||
|
base06 = "2C3138";
|
||||||
|
base07 = "181C22";
|
||||||
|
base08 = "D02023";
|
||||||
|
base09 = "BF3E05";
|
||||||
|
base0A = "9D6F00";
|
||||||
|
base0B = "637200";
|
||||||
|
base0C = "007A72";
|
||||||
|
base0D = "0073B5";
|
||||||
|
base0E = "4E66B6";
|
||||||
|
base0F = "C42775";
|
||||||
|
}
|
20
themes/eris.nix
Normal file
20
themes/eris.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "eris";
|
||||||
|
author = "ed (https://codeberg.org/ed)";
|
||||||
|
base00 = "0A0920";
|
||||||
|
base01 = "13133A";
|
||||||
|
base02 = "23255A";
|
||||||
|
base03 = "333773";
|
||||||
|
base04 = "4A5293";
|
||||||
|
base05 = "606BAC";
|
||||||
|
base06 = "7986C5";
|
||||||
|
base07 = "9AAAE5";
|
||||||
|
base08 = "F768A3";
|
||||||
|
base09 = "F768A3";
|
||||||
|
base0A = "FAAEA2";
|
||||||
|
base0B = "FAAEA2";
|
||||||
|
base0C = "258FC4";
|
||||||
|
base0D = "258FC4";
|
||||||
|
base0E = "F768A3";
|
||||||
|
base0F = "F768A3";
|
||||||
|
}
|
20
themes/espresso.nix
Normal file
20
themes/espresso.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Espresso";
|
||||||
|
author = "Unknown. Maintained by Alex Mirrington (https://github.com/alexmirrington)";
|
||||||
|
base00 = "2D2D2D";
|
||||||
|
base01 = "393939";
|
||||||
|
base02 = "515151";
|
||||||
|
base03 = "777777";
|
||||||
|
base04 = "B4B7B4";
|
||||||
|
base05 = "CCCCCC";
|
||||||
|
base06 = "E0E0E0";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "D25252";
|
||||||
|
base09 = "F9A959";
|
||||||
|
base0A = "FFC66D";
|
||||||
|
base0B = "A5C261";
|
||||||
|
base0C = "BED6FF";
|
||||||
|
base0D = "6C99BB";
|
||||||
|
base0E = "D197D9";
|
||||||
|
base0F = "F97394";
|
||||||
|
}
|
20
themes/eva-dim.nix
Normal file
20
themes/eva-dim.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Eva Dim";
|
||||||
|
author = "kjakapat (https://github.com/kjakapat)";
|
||||||
|
base00 = "2A3B4D";
|
||||||
|
base01 = "3D566F";
|
||||||
|
base02 = "4B6988";
|
||||||
|
base03 = "55799C";
|
||||||
|
base04 = "7E90A3";
|
||||||
|
base05 = "9FA2A6";
|
||||||
|
base06 = "D6D7D9";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "C4676C";
|
||||||
|
base09 = "FF9966";
|
||||||
|
base0A = "CFD05D";
|
||||||
|
base0B = "5DE561";
|
||||||
|
base0C = "4B8F77";
|
||||||
|
base0D = "1AE1DC";
|
||||||
|
base0E = "9C6CD3";
|
||||||
|
base0F = "BB64A9";
|
||||||
|
}
|
20
themes/eva.nix
Normal file
20
themes/eva.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Eva";
|
||||||
|
author = "kjakapat (https://github.com/kjakapat)";
|
||||||
|
base00 = "2A3B4D";
|
||||||
|
base01 = "3D566F";
|
||||||
|
base02 = "4B6988";
|
||||||
|
base03 = "55799C";
|
||||||
|
base04 = "7E90A3";
|
||||||
|
base05 = "9FA2A6";
|
||||||
|
base06 = "D6D7D9";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "C4676C";
|
||||||
|
base09 = "FF9966";
|
||||||
|
base0A = "FFFF66";
|
||||||
|
base0B = "66FF66";
|
||||||
|
base0C = "4B8F77";
|
||||||
|
base0D = "15F4EE";
|
||||||
|
base0E = "9C6CD3";
|
||||||
|
base0F = "BB64A9";
|
||||||
|
}
|
20
themes/evenok-dark.nix
Normal file
20
themes/evenok-dark.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Evenok Dark";
|
||||||
|
author = "Mekeor Melire";
|
||||||
|
base00 = "000000";
|
||||||
|
base01 = "202020";
|
||||||
|
base02 = "303030";
|
||||||
|
base03 = "505050";
|
||||||
|
base04 = "B0B0B0";
|
||||||
|
base05 = "D0D0D0";
|
||||||
|
base06 = "E0E0E0";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "F5708A";
|
||||||
|
base09 = "EE8122";
|
||||||
|
base0A = "B8A300";
|
||||||
|
base0B = "54BC5C";
|
||||||
|
base0C = "00BAB3";
|
||||||
|
base0D = "00AFF2";
|
||||||
|
base0E = "9095FF";
|
||||||
|
base0F = "D47ADA";
|
||||||
|
}
|
20
themes/everforest-dark-hard.nix
Normal file
20
themes/everforest-dark-hard.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Everforest Dark Hard";
|
||||||
|
author = "Oskar Liew (https://github.com/OskarLiew)";
|
||||||
|
base00 = "272E33";
|
||||||
|
base01 = "2E383C";
|
||||||
|
base02 = "414B50";
|
||||||
|
base03 = "859289";
|
||||||
|
base04 = "9DA9A0";
|
||||||
|
base05 = "D3C6AA";
|
||||||
|
base06 = "E4E1CD";
|
||||||
|
base07 = "FDF6E3";
|
||||||
|
base08 = "7FBBB3";
|
||||||
|
base09 = "D699B6";
|
||||||
|
base0A = "DBBC7F";
|
||||||
|
base0B = "83C092";
|
||||||
|
base0C = "E69875";
|
||||||
|
base0D = "A7C080";
|
||||||
|
base0E = "E67E80";
|
||||||
|
base0F = "4C3743";
|
||||||
|
}
|
20
themes/everforest.nix
Normal file
20
themes/everforest.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Everforest";
|
||||||
|
author = "Sainnhe Park (https://github.com/sainnhe)";
|
||||||
|
base00 = "2F383E";
|
||||||
|
base01 = "374247";
|
||||||
|
base02 = "4A555B";
|
||||||
|
base03 = "859289";
|
||||||
|
base04 = "9DA9A0";
|
||||||
|
base05 = "D3C6AA";
|
||||||
|
base06 = "E4E1CD";
|
||||||
|
base07 = "FDF6E3";
|
||||||
|
base08 = "7FBBB3";
|
||||||
|
base09 = "D699B6";
|
||||||
|
base0A = "DBBC7F";
|
||||||
|
base0B = "83C092";
|
||||||
|
base0C = "E69875";
|
||||||
|
base0D = "A7C080";
|
||||||
|
base0E = "E67E80";
|
||||||
|
base0F = "EAEDC8";
|
||||||
|
}
|
20
themes/flat.nix
Normal file
20
themes/flat.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Flat";
|
||||||
|
author = "Chris Kempson (http://chriskempson.com)";
|
||||||
|
base00 = "2C3E50";
|
||||||
|
base01 = "34495E";
|
||||||
|
base02 = "7F8C8D";
|
||||||
|
base03 = "95A5A6";
|
||||||
|
base04 = "BDC3C7";
|
||||||
|
base05 = "E0E0E0";
|
||||||
|
base06 = "F5F5F5";
|
||||||
|
base07 = "ECF0F1";
|
||||||
|
base08 = "E74C3C";
|
||||||
|
base09 = "E67E22";
|
||||||
|
base0A = "F1C40F";
|
||||||
|
base0B = "2ECC71";
|
||||||
|
base0C = "1ABC9C";
|
||||||
|
base0D = "3498DB";
|
||||||
|
base0E = "9B59B6";
|
||||||
|
base0F = "BE643C";
|
||||||
|
}
|
20
themes/framer.nix
Normal file
20
themes/framer.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Framer";
|
||||||
|
author = "Framer (Maintained by Jesse Hoyos)";
|
||||||
|
base00 = "181818";
|
||||||
|
base01 = "151515";
|
||||||
|
base02 = "464646";
|
||||||
|
base03 = "747474";
|
||||||
|
base04 = "B9B9B9";
|
||||||
|
base05 = "D0D0D0";
|
||||||
|
base06 = "E8E8E8";
|
||||||
|
base07 = "EEEEEE";
|
||||||
|
base08 = "FD886B";
|
||||||
|
base09 = "FC4769";
|
||||||
|
base0A = "FECB6E";
|
||||||
|
base0B = "32CCDC";
|
||||||
|
base0C = "ACDDFD";
|
||||||
|
base0D = "20BCFC";
|
||||||
|
base0E = "BA8CFC";
|
||||||
|
base0F = "B15F4A";
|
||||||
|
}
|
20
themes/fruit-soda.nix
Normal file
20
themes/fruit-soda.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Fruit Soda";
|
||||||
|
author = "jozip";
|
||||||
|
base00 = "F1ECF1";
|
||||||
|
base01 = "E0DEE0";
|
||||||
|
base02 = "D8D5D5";
|
||||||
|
base03 = "B5B4B6";
|
||||||
|
base04 = "979598";
|
||||||
|
base05 = "515151";
|
||||||
|
base06 = "474545";
|
||||||
|
base07 = "2D2C2C";
|
||||||
|
base08 = "FE3E31";
|
||||||
|
base09 = "FE6D08";
|
||||||
|
base0A = "F7E203";
|
||||||
|
base0B = "47F74C";
|
||||||
|
base0C = "0F9CFD";
|
||||||
|
base0D = "2931DF";
|
||||||
|
base0E = "611FCE";
|
||||||
|
base0F = "B16F40";
|
||||||
|
}
|
20
themes/gigavolt.nix
Normal file
20
themes/gigavolt.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Gigavolt";
|
||||||
|
author = "Aidan Swope (http://github.com/Whillikers)";
|
||||||
|
base00 = "202126";
|
||||||
|
base01 = "2D303D";
|
||||||
|
base02 = "5A576E";
|
||||||
|
base03 = "A1D2E6";
|
||||||
|
base04 = "CAD3FF";
|
||||||
|
base05 = "E9E7E1";
|
||||||
|
base06 = "EFF0F9";
|
||||||
|
base07 = "F2FBFF";
|
||||||
|
base08 = "FF661A";
|
||||||
|
base09 = "19F988";
|
||||||
|
base0A = "FFDC2D";
|
||||||
|
base0B = "F2E6A9";
|
||||||
|
base0C = "FB6ACB";
|
||||||
|
base0D = "40BFFF";
|
||||||
|
base0E = "AE94F9";
|
||||||
|
base0F = "6187FF";
|
||||||
|
}
|
20
themes/github.nix
Normal file
20
themes/github.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{
|
||||||
|
name = "Github";
|
||||||
|
author = "Defman21";
|
||||||
|
base00 = "FFFFFF";
|
||||||
|
base01 = "F5F5F5";
|
||||||
|
base02 = "C8C8FA";
|
||||||
|
base03 = "969896";
|
||||||
|
base04 = "E8E8E8";
|
||||||
|
base05 = "333333";
|
||||||
|
base06 = "FFFFFF";
|
||||||
|
base07 = "FFFFFF";
|
||||||
|
base08 = "ED6A43";
|
||||||
|
base09 = "0086B3";
|
||||||
|
base0A = "795DA3";
|
||||||
|
base0B = "183691";
|
||||||
|
base0C = "183691";
|
||||||
|
base0D = "795DA3";
|
||||||
|
base0E = "A71D5D";
|
||||||
|
base0F = "333333";
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue