diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..dab8ba7 --- /dev/null +++ b/flake.nix @@ -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); +} diff --git a/themes.nix b/themes.nix new file mode 100644 index 0000000..ca94676 --- /dev/null +++ b/themes.nix @@ -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"; +} diff --git a/themes/3024.nix b/themes/3024.nix new file mode 100644 index 0000000..67fd88c --- /dev/null +++ b/themes/3024.nix @@ -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"; +} diff --git a/themes/apathy.nix b/themes/apathy.nix new file mode 100644 index 0000000..3fe6e65 --- /dev/null +++ b/themes/apathy.nix @@ -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"; +} diff --git a/themes/apprentice.nix b/themes/apprentice.nix new file mode 100644 index 0000000..4e86e04 --- /dev/null +++ b/themes/apprentice.nix @@ -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"; +} diff --git a/themes/ashes.nix b/themes/ashes.nix new file mode 100644 index 0000000..6759cf4 --- /dev/null +++ b/themes/ashes.nix @@ -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"; +} diff --git a/themes/atelier-cave-light.nix b/themes/atelier-cave-light.nix new file mode 100644 index 0000000..fde0caf --- /dev/null +++ b/themes/atelier-cave-light.nix @@ -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"; +} diff --git a/themes/atelier-cave.nix b/themes/atelier-cave.nix new file mode 100644 index 0000000..1221ec3 --- /dev/null +++ b/themes/atelier-cave.nix @@ -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"; +} diff --git a/themes/atelier-dune-light.nix b/themes/atelier-dune-light.nix new file mode 100644 index 0000000..7a49fad --- /dev/null +++ b/themes/atelier-dune-light.nix @@ -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"; +} diff --git a/themes/atelier-dune.nix b/themes/atelier-dune.nix new file mode 100644 index 0000000..02084e5 --- /dev/null +++ b/themes/atelier-dune.nix @@ -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"; +} diff --git a/themes/atelier-estuary-light.nix b/themes/atelier-estuary-light.nix new file mode 100644 index 0000000..07ef7ed --- /dev/null +++ b/themes/atelier-estuary-light.nix @@ -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"; +} diff --git a/themes/atelier-estuary.nix b/themes/atelier-estuary.nix new file mode 100644 index 0000000..d4af59f --- /dev/null +++ b/themes/atelier-estuary.nix @@ -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"; +} diff --git a/themes/atelier-forest-light.nix b/themes/atelier-forest-light.nix new file mode 100644 index 0000000..22b8b29 --- /dev/null +++ b/themes/atelier-forest-light.nix @@ -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"; +} diff --git a/themes/atelier-forest.nix b/themes/atelier-forest.nix new file mode 100644 index 0000000..e40014a --- /dev/null +++ b/themes/atelier-forest.nix @@ -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"; +} diff --git a/themes/atelier-heath-light.nix b/themes/atelier-heath-light.nix new file mode 100644 index 0000000..ca46714 --- /dev/null +++ b/themes/atelier-heath-light.nix @@ -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"; +} diff --git a/themes/atelier-heath.nix b/themes/atelier-heath.nix new file mode 100644 index 0000000..9f1631c --- /dev/null +++ b/themes/atelier-heath.nix @@ -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"; +} diff --git a/themes/atelier-lakeside-light.nix b/themes/atelier-lakeside-light.nix new file mode 100644 index 0000000..670704d --- /dev/null +++ b/themes/atelier-lakeside-light.nix @@ -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"; +} diff --git a/themes/atelier-lakeside.nix b/themes/atelier-lakeside.nix new file mode 100644 index 0000000..8400616 --- /dev/null +++ b/themes/atelier-lakeside.nix @@ -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"; +} diff --git a/themes/atelier-plateau-light.nix b/themes/atelier-plateau-light.nix new file mode 100644 index 0000000..7f2cf19 --- /dev/null +++ b/themes/atelier-plateau-light.nix @@ -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"; +} diff --git a/themes/atelier-plateau.nix b/themes/atelier-plateau.nix new file mode 100644 index 0000000..62381bb --- /dev/null +++ b/themes/atelier-plateau.nix @@ -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"; +} diff --git a/themes/atelier-savanna-light.nix b/themes/atelier-savanna-light.nix new file mode 100644 index 0000000..9791fb0 --- /dev/null +++ b/themes/atelier-savanna-light.nix @@ -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"; +} diff --git a/themes/atelier-savanna.nix b/themes/atelier-savanna.nix new file mode 100644 index 0000000..260837d --- /dev/null +++ b/themes/atelier-savanna.nix @@ -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"; +} diff --git a/themes/atelier-seaside-light.nix b/themes/atelier-seaside-light.nix new file mode 100644 index 0000000..3a4d9a8 --- /dev/null +++ b/themes/atelier-seaside-light.nix @@ -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"; +} diff --git a/themes/atelier-seaside.nix b/themes/atelier-seaside.nix new file mode 100644 index 0000000..2d6f185 --- /dev/null +++ b/themes/atelier-seaside.nix @@ -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"; +} diff --git a/themes/atelier-sulphurpool-light.nix b/themes/atelier-sulphurpool-light.nix new file mode 100644 index 0000000..cafbea1 --- /dev/null +++ b/themes/atelier-sulphurpool-light.nix @@ -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"; +} diff --git a/themes/atelier-sulphurpool.nix b/themes/atelier-sulphurpool.nix new file mode 100644 index 0000000..18fdd00 --- /dev/null +++ b/themes/atelier-sulphurpool.nix @@ -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"; +} diff --git a/themes/atlas.nix b/themes/atlas.nix new file mode 100644 index 0000000..686f328 --- /dev/null +++ b/themes/atlas.nix @@ -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"; +} diff --git a/themes/ayu-dark.nix b/themes/ayu-dark.nix new file mode 100644 index 0000000..0e9a48b --- /dev/null +++ b/themes/ayu-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Ayu Dark"; + author = "Khue Nguyen "; + 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"; +} diff --git a/themes/ayu-light.nix b/themes/ayu-light.nix new file mode 100644 index 0000000..45dbde9 --- /dev/null +++ b/themes/ayu-light.nix @@ -0,0 +1,20 @@ +{ + name = "Ayu Light"; + author = "Khue Nguyen "; + 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"; +} diff --git a/themes/ayu-mirage.nix b/themes/ayu-mirage.nix new file mode 100644 index 0000000..19d6e3e --- /dev/null +++ b/themes/ayu-mirage.nix @@ -0,0 +1,20 @@ +{ + name = "Ayu Mirage"; + author = "Khue Nguyen "; + 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"; +} diff --git a/themes/bespin.nix b/themes/bespin.nix new file mode 100644 index 0000000..2e23c62 --- /dev/null +++ b/themes/bespin.nix @@ -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"; +} diff --git a/themes/black-metal-bathory.nix b/themes/black-metal-bathory.nix new file mode 100644 index 0000000..6743162 --- /dev/null +++ b/themes/black-metal-bathory.nix @@ -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"; +} diff --git a/themes/black-metal-burzum.nix b/themes/black-metal-burzum.nix new file mode 100644 index 0000000..df43134 --- /dev/null +++ b/themes/black-metal-burzum.nix @@ -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"; +} diff --git a/themes/black-metal-dark-funeral.nix b/themes/black-metal-dark-funeral.nix new file mode 100644 index 0000000..f127280 --- /dev/null +++ b/themes/black-metal-dark-funeral.nix @@ -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"; +} diff --git a/themes/black-metal-gorgoroth.nix b/themes/black-metal-gorgoroth.nix new file mode 100644 index 0000000..1dc6fde --- /dev/null +++ b/themes/black-metal-gorgoroth.nix @@ -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"; +} diff --git a/themes/black-metal-immortal.nix b/themes/black-metal-immortal.nix new file mode 100644 index 0000000..05939ff --- /dev/null +++ b/themes/black-metal-immortal.nix @@ -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"; +} diff --git a/themes/black-metal-khold.nix b/themes/black-metal-khold.nix new file mode 100644 index 0000000..1b13a1b --- /dev/null +++ b/themes/black-metal-khold.nix @@ -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"; +} diff --git a/themes/black-metal-marduk.nix b/themes/black-metal-marduk.nix new file mode 100644 index 0000000..a7b2c6c --- /dev/null +++ b/themes/black-metal-marduk.nix @@ -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"; +} diff --git a/themes/black-metal-mayhem.nix b/themes/black-metal-mayhem.nix new file mode 100644 index 0000000..c1aeebe --- /dev/null +++ b/themes/black-metal-mayhem.nix @@ -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"; +} diff --git a/themes/black-metal-nile.nix b/themes/black-metal-nile.nix new file mode 100644 index 0000000..9d560c0 --- /dev/null +++ b/themes/black-metal-nile.nix @@ -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"; +} diff --git a/themes/black-metal-venom.nix b/themes/black-metal-venom.nix new file mode 100644 index 0000000..e886039 --- /dev/null +++ b/themes/black-metal-venom.nix @@ -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"; +} diff --git a/themes/black-metal.nix b/themes/black-metal.nix new file mode 100644 index 0000000..a9e0231 --- /dev/null +++ b/themes/black-metal.nix @@ -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"; +} diff --git a/themes/blueforest.nix b/themes/blueforest.nix new file mode 100644 index 0000000..352a040 --- /dev/null +++ b/themes/blueforest.nix @@ -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"; +} diff --git a/themes/blueish.nix b/themes/blueish.nix new file mode 100644 index 0000000..284dca9 --- /dev/null +++ b/themes/blueish.nix @@ -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"; +} diff --git a/themes/brewer.nix b/themes/brewer.nix new file mode 100644 index 0000000..ee2afb0 --- /dev/null +++ b/themes/brewer.nix @@ -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"; +} diff --git a/themes/bright.nix b/themes/bright.nix new file mode 100644 index 0000000..14ce03b --- /dev/null +++ b/themes/bright.nix @@ -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"; +} diff --git a/themes/brogrammer.nix b/themes/brogrammer.nix new file mode 100644 index 0000000..47d1850 --- /dev/null +++ b/themes/brogrammer.nix @@ -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"; +} diff --git a/themes/brushtrees-dark.nix b/themes/brushtrees-dark.nix new file mode 100644 index 0000000..8acd3d4 --- /dev/null +++ b/themes/brushtrees-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Brush Trees Dark"; + author = "Abraham White "; + 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"; +} diff --git a/themes/brushtrees.nix b/themes/brushtrees.nix new file mode 100644 index 0000000..0c36a87 --- /dev/null +++ b/themes/brushtrees.nix @@ -0,0 +1,20 @@ +{ + name = "Brush Trees"; + author = "Abraham White "; + 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"; +} diff --git a/themes/caroline.nix b/themes/caroline.nix new file mode 100644 index 0000000..999da50 --- /dev/null +++ b/themes/caroline.nix @@ -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"; +} diff --git a/themes/catppuccin-frappe.nix b/themes/catppuccin-frappe.nix new file mode 100644 index 0000000..a4e3b58 --- /dev/null +++ b/themes/catppuccin-frappe.nix @@ -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"; +} diff --git a/themes/catppuccin-latte.nix b/themes/catppuccin-latte.nix new file mode 100644 index 0000000..1e52897 --- /dev/null +++ b/themes/catppuccin-latte.nix @@ -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"; +} diff --git a/themes/catppuccin-macchiato.nix b/themes/catppuccin-macchiato.nix new file mode 100644 index 0000000..87a3602 --- /dev/null +++ b/themes/catppuccin-macchiato.nix @@ -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"; +} diff --git a/themes/catppuccin-mocha.nix b/themes/catppuccin-mocha.nix new file mode 100644 index 0000000..3f8e800 --- /dev/null +++ b/themes/catppuccin-mocha.nix @@ -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"; +} diff --git a/themes/chalk.nix b/themes/chalk.nix new file mode 100644 index 0000000..3a6f35a --- /dev/null +++ b/themes/chalk.nix @@ -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"; +} diff --git a/themes/circus.nix b/themes/circus.nix new file mode 100644 index 0000000..df8fbbc --- /dev/null +++ b/themes/circus.nix @@ -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"; +} diff --git a/themes/classic-dark.nix b/themes/classic-dark.nix new file mode 100644 index 0000000..d0530b8 --- /dev/null +++ b/themes/classic-dark.nix @@ -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"; +} diff --git a/themes/classic-light.nix b/themes/classic-light.nix new file mode 100644 index 0000000..75f5261 --- /dev/null +++ b/themes/classic-light.nix @@ -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"; +} diff --git a/themes/codeschool.nix b/themes/codeschool.nix new file mode 100644 index 0000000..3f07369 --- /dev/null +++ b/themes/codeschool.nix @@ -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"; +} diff --git a/themes/colors.nix b/themes/colors.nix new file mode 100644 index 0000000..594a0f0 --- /dev/null +++ b/themes/colors.nix @@ -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"; +} diff --git a/themes/cupcake.nix b/themes/cupcake.nix new file mode 100644 index 0000000..8949609 --- /dev/null +++ b/themes/cupcake.nix @@ -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"; +} diff --git a/themes/cupertino.nix b/themes/cupertino.nix new file mode 100644 index 0000000..b5cb872 --- /dev/null +++ b/themes/cupertino.nix @@ -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"; +} diff --git a/themes/da-one-black.nix b/themes/da-one-black.nix new file mode 100644 index 0000000..f40ef55 --- /dev/null +++ b/themes/da-one-black.nix @@ -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"; +} diff --git a/themes/da-one-gray.nix b/themes/da-one-gray.nix new file mode 100644 index 0000000..d22411f --- /dev/null +++ b/themes/da-one-gray.nix @@ -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"; +} diff --git a/themes/da-one-ocean.nix b/themes/da-one-ocean.nix new file mode 100644 index 0000000..46891a7 --- /dev/null +++ b/themes/da-one-ocean.nix @@ -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"; +} diff --git a/themes/da-one-paper.nix b/themes/da-one-paper.nix new file mode 100644 index 0000000..c464416 --- /dev/null +++ b/themes/da-one-paper.nix @@ -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"; +} diff --git a/themes/da-one-sea.nix b/themes/da-one-sea.nix new file mode 100644 index 0000000..37a4e56 --- /dev/null +++ b/themes/da-one-sea.nix @@ -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"; +} diff --git a/themes/da-one-white.nix b/themes/da-one-white.nix new file mode 100644 index 0000000..73d25a4 --- /dev/null +++ b/themes/da-one-white.nix @@ -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"; +} diff --git a/themes/danqing-light.nix b/themes/danqing-light.nix new file mode 100644 index 0000000..fc464a2 --- /dev/null +++ b/themes/danqing-light.nix @@ -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"; +} diff --git a/themes/danqing.nix b/themes/danqing.nix new file mode 100644 index 0000000..8848ae7 --- /dev/null +++ b/themes/danqing.nix @@ -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"; +} diff --git a/themes/darcula.nix b/themes/darcula.nix new file mode 100644 index 0000000..9e21b8b --- /dev/null +++ b/themes/darcula.nix @@ -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"; +} diff --git a/themes/darkmoss.nix b/themes/darkmoss.nix new file mode 100644 index 0000000..eb31b4b --- /dev/null +++ b/themes/darkmoss.nix @@ -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"; +} diff --git a/themes/darktooth.nix b/themes/darktooth.nix new file mode 100644 index 0000000..c925a4b --- /dev/null +++ b/themes/darktooth.nix @@ -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"; +} diff --git a/themes/darkviolet.nix b/themes/darkviolet.nix new file mode 100644 index 0000000..9afcbc2 --- /dev/null +++ b/themes/darkviolet.nix @@ -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"; +} diff --git a/themes/decaf.nix b/themes/decaf.nix new file mode 100644 index 0000000..8dee7eb --- /dev/null +++ b/themes/decaf.nix @@ -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"; +} diff --git a/themes/default-dark.nix b/themes/default-dark.nix new file mode 100644 index 0000000..1583c4d --- /dev/null +++ b/themes/default-dark.nix @@ -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"; +} diff --git a/themes/default-light.nix b/themes/default-light.nix new file mode 100644 index 0000000..b38402e --- /dev/null +++ b/themes/default-light.nix @@ -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"; +} diff --git a/themes/dirtysea.nix b/themes/dirtysea.nix new file mode 100644 index 0000000..818a288 --- /dev/null +++ b/themes/dirtysea.nix @@ -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"; +} diff --git a/themes/dracula.nix b/themes/dracula.nix new file mode 100644 index 0000000..89aeb2d --- /dev/null +++ b/themes/dracula.nix @@ -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"; +} diff --git a/themes/edge-dark.nix b/themes/edge-dark.nix new file mode 100644 index 0000000..be19d86 --- /dev/null +++ b/themes/edge-dark.nix @@ -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"; +} diff --git a/themes/edge-light.nix b/themes/edge-light.nix new file mode 100644 index 0000000..6c7b38a --- /dev/null +++ b/themes/edge-light.nix @@ -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"; +} diff --git a/themes/eighties.nix b/themes/eighties.nix new file mode 100644 index 0000000..70af9b2 --- /dev/null +++ b/themes/eighties.nix @@ -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"; +} diff --git a/themes/embers.nix b/themes/embers.nix new file mode 100644 index 0000000..a78873f --- /dev/null +++ b/themes/embers.nix @@ -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"; +} diff --git a/themes/emil.nix b/themes/emil.nix new file mode 100644 index 0000000..afedc5a --- /dev/null +++ b/themes/emil.nix @@ -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"; +} diff --git a/themes/equilibrium-dark.nix b/themes/equilibrium-dark.nix new file mode 100644 index 0000000..f1d40d4 --- /dev/null +++ b/themes/equilibrium-dark.nix @@ -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"; +} diff --git a/themes/equilibrium-gray-dark.nix b/themes/equilibrium-gray-dark.nix new file mode 100644 index 0000000..942219a --- /dev/null +++ b/themes/equilibrium-gray-dark.nix @@ -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"; +} diff --git a/themes/equilibrium-gray-light.nix b/themes/equilibrium-gray-light.nix new file mode 100644 index 0000000..144f89b --- /dev/null +++ b/themes/equilibrium-gray-light.nix @@ -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"; +} diff --git a/themes/equilibrium-light.nix b/themes/equilibrium-light.nix new file mode 100644 index 0000000..e046033 --- /dev/null +++ b/themes/equilibrium-light.nix @@ -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"; +} diff --git a/themes/eris.nix b/themes/eris.nix new file mode 100644 index 0000000..182cdbb --- /dev/null +++ b/themes/eris.nix @@ -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"; +} diff --git a/themes/espresso.nix b/themes/espresso.nix new file mode 100644 index 0000000..a93c24f --- /dev/null +++ b/themes/espresso.nix @@ -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"; +} diff --git a/themes/eva-dim.nix b/themes/eva-dim.nix new file mode 100644 index 0000000..f2926db --- /dev/null +++ b/themes/eva-dim.nix @@ -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"; +} diff --git a/themes/eva.nix b/themes/eva.nix new file mode 100644 index 0000000..856b04d --- /dev/null +++ b/themes/eva.nix @@ -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"; +} diff --git a/themes/evenok-dark.nix b/themes/evenok-dark.nix new file mode 100644 index 0000000..d403654 --- /dev/null +++ b/themes/evenok-dark.nix @@ -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"; +} diff --git a/themes/everforest-dark-hard.nix b/themes/everforest-dark-hard.nix new file mode 100644 index 0000000..56dc169 --- /dev/null +++ b/themes/everforest-dark-hard.nix @@ -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"; +} diff --git a/themes/everforest.nix b/themes/everforest.nix new file mode 100644 index 0000000..5241ed6 --- /dev/null +++ b/themes/everforest.nix @@ -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"; +} diff --git a/themes/flat.nix b/themes/flat.nix new file mode 100644 index 0000000..a85ee95 --- /dev/null +++ b/themes/flat.nix @@ -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"; +} diff --git a/themes/framer.nix b/themes/framer.nix new file mode 100644 index 0000000..3993794 --- /dev/null +++ b/themes/framer.nix @@ -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"; +} diff --git a/themes/fruit-soda.nix b/themes/fruit-soda.nix new file mode 100644 index 0000000..1995065 --- /dev/null +++ b/themes/fruit-soda.nix @@ -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"; +} diff --git a/themes/gigavolt.nix b/themes/gigavolt.nix new file mode 100644 index 0000000..c532720 --- /dev/null +++ b/themes/gigavolt.nix @@ -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"; +} diff --git a/themes/github.nix b/themes/github.nix new file mode 100644 index 0000000..9b34c26 --- /dev/null +++ b/themes/github.nix @@ -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"; +} diff --git a/themes/google-dark.nix b/themes/google-dark.nix new file mode 100644 index 0000000..542c6cd --- /dev/null +++ b/themes/google-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Google Dark"; + author = "Seth Wright (http://sethawright.com)"; + base00 = "1D1F21"; + base01 = "282A2E"; + base02 = "373B41"; + base03 = "969896"; + base04 = "B4B7B4"; + base05 = "C5C8C6"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "CC342B"; + base09 = "F96A38"; + base0A = "FBA922"; + base0B = "198844"; + base0C = "3971ED"; + base0D = "3971ED"; + base0E = "A36AC7"; + base0F = "3971ED"; +} diff --git a/themes/google-light.nix b/themes/google-light.nix new file mode 100644 index 0000000..ccd6abe --- /dev/null +++ b/themes/google-light.nix @@ -0,0 +1,20 @@ +{ + name = "Google Light"; + author = "Seth Wright (http://sethawright.com)"; + base00 = "FFFFFF"; + base01 = "E0E0E0"; + base02 = "C5C8C6"; + base03 = "B4B7B4"; + base04 = "969896"; + base05 = "373B41"; + base06 = "282A2E"; + base07 = "1D1F21"; + base08 = "CC342B"; + base09 = "F96A38"; + base0A = "FBA922"; + base0B = "198844"; + base0C = "3971ED"; + base0D = "3971ED"; + base0E = "A36AC7"; + base0F = "3971ED"; +} diff --git a/themes/gotham.nix b/themes/gotham.nix new file mode 100644 index 0000000..0b39b99 --- /dev/null +++ b/themes/gotham.nix @@ -0,0 +1,20 @@ +{ + name = "Gotham"; + author = "Andrea Leopardi (arranged by Brett Jones)"; + base00 = "0C1014"; + base01 = "11151C"; + base02 = "091F2E"; + base03 = "0A3749"; + base04 = "245361"; + base05 = "599CAB"; + base06 = "99D1CE"; + base07 = "D3EBE9"; + base08 = "C23127"; + base09 = "D26937"; + base0A = "EDB443"; + base0B = "33859E"; + base0C = "2AA889"; + base0D = "195466"; + base0E = "888CA6"; + base0F = "4E5166"; +} diff --git a/themes/grayscale-dark.nix b/themes/grayscale-dark.nix new file mode 100644 index 0000000..ca56a0b --- /dev/null +++ b/themes/grayscale-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Grayscale Dark"; + author = "Alexandre Gavioli (https://github.com/Alexx2/)"; + base00 = "101010"; + base01 = "252525"; + base02 = "464646"; + base03 = "525252"; + base04 = "ABABAB"; + base05 = "B9B9B9"; + base06 = "E3E3E3"; + base07 = "F7F7F7"; + base08 = "7C7C7C"; + base09 = "999999"; + base0A = "A0A0A0"; + base0B = "8E8E8E"; + base0C = "868686"; + base0D = "686868"; + base0E = "747474"; + base0F = "5E5E5E"; +} diff --git a/themes/grayscale-light.nix b/themes/grayscale-light.nix new file mode 100644 index 0000000..aa4012a --- /dev/null +++ b/themes/grayscale-light.nix @@ -0,0 +1,20 @@ +{ + name = "Grayscale Light"; + author = "Alexandre Gavioli (https://github.com/Alexx2/)"; + base00 = "F7F7F7"; + base01 = "E3E3E3"; + base02 = "B9B9B9"; + base03 = "ABABAB"; + base04 = "525252"; + base05 = "464646"; + base06 = "252525"; + base07 = "101010"; + base08 = "7C7C7C"; + base09 = "999999"; + base0A = "A0A0A0"; + base0B = "8E8E8E"; + base0C = "868686"; + base0D = "686868"; + base0E = "747474"; + base0F = "5E5E5E"; +} diff --git a/themes/greenscreen.nix b/themes/greenscreen.nix new file mode 100644 index 0000000..07a589f --- /dev/null +++ b/themes/greenscreen.nix @@ -0,0 +1,20 @@ +{ + name = "Green Screen"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "001100"; + base01 = "003300"; + base02 = "005500"; + base03 = "007700"; + base04 = "009900"; + base05 = "00BB00"; + base06 = "00DD00"; + base07 = "00FF00"; + base08 = "007700"; + base09 = "009900"; + base0A = "007700"; + base0B = "00BB00"; + base0C = "005500"; + base0D = "009900"; + base0E = "00BB00"; + base0F = "005500"; +} diff --git a/themes/gruber.nix b/themes/gruber.nix new file mode 100644 index 0000000..a5a8ca4 --- /dev/null +++ b/themes/gruber.nix @@ -0,0 +1,20 @@ +{ + name = "Gruber"; + author = "Patel; Nimai , colors from www.github.com/rexim/gruber-darker-theme", + base00 = "181818"; + base01 = "453D41"; + base02 = "484848"; + base03 = "52494E"; + base04 = "E4E4EF"; + base05 = "F4F4FF"; + base06 = "F5F5F5"; + base07 = "E4E4EF"; + base08 = "F43841"; + base09 = "C73C3F"; + base0A = "FFDD33"; + base0B = "73C936"; + base0C = "95A99F"; + base0D = "96A6C8"; + base0E = "9E95C7"; + base0F = "CC8C3C"; +} diff --git a/themes/gruvbox-dark-hard.nix b/themes/gruvbox-dark-hard.nix new file mode 100644 index 0000000..8f07f1c --- /dev/null +++ b/themes/gruvbox-dark-hard.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox dark; hard", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "1D2021"; + base01 = "3C3836"; + base02 = "504945"; + base03 = "665C54"; + base04 = "BDAE93"; + base05 = "D5C4A1"; + base06 = "EBDBB2"; + base07 = "FBF1C7"; + base08 = "FB4934"; + base09 = "FE8019"; + base0A = "FABD2F"; + base0B = "B8BB26"; + base0C = "8EC07C"; + base0D = "83A598"; + base0E = "D3869B"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-dark-medium.nix b/themes/gruvbox-dark-medium.nix new file mode 100644 index 0000000..80ee30b --- /dev/null +++ b/themes/gruvbox-dark-medium.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox dark; medium", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "282828"; + base01 = "3C3836"; + base02 = "504945"; + base03 = "665C54"; + base04 = "BDAE93"; + base05 = "D5C4A1"; + base06 = "EBDBB2"; + base07 = "FBF1C7"; + base08 = "FB4934"; + base09 = "FE8019"; + base0A = "FABD2F"; + base0B = "B8BB26"; + base0C = "8EC07C"; + base0D = "83A598"; + base0E = "D3869B"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-dark-pale.nix b/themes/gruvbox-dark-pale.nix new file mode 100644 index 0000000..9f0ca44 --- /dev/null +++ b/themes/gruvbox-dark-pale.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox dark; pale", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "262626"; + base01 = "3A3A3A"; + base02 = "4E4E4E"; + base03 = "8A8A8A"; + base04 = "949494"; + base05 = "DAB997"; + base06 = "D5C4A1"; + base07 = "EBDBB2"; + base08 = "D75F5F"; + base09 = "FF8700"; + base0A = "FFAF00"; + base0B = "AFAF00"; + base0C = "85AD85"; + base0D = "83ADAD"; + base0E = "D485AD"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-dark-soft.nix b/themes/gruvbox-dark-soft.nix new file mode 100644 index 0000000..cf5e05a --- /dev/null +++ b/themes/gruvbox-dark-soft.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox dark; soft", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "32302F"; + base01 = "3C3836"; + base02 = "504945"; + base03 = "665C54"; + base04 = "BDAE93"; + base05 = "D5C4A1"; + base06 = "EBDBB2"; + base07 = "FBF1C7"; + base08 = "FB4934"; + base09 = "FE8019"; + base0A = "FABD2F"; + base0B = "B8BB26"; + base0C = "8EC07C"; + base0D = "83A598"; + base0E = "D3869B"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-light-hard.nix b/themes/gruvbox-light-hard.nix new file mode 100644 index 0000000..78b294e --- /dev/null +++ b/themes/gruvbox-light-hard.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox light; hard", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "F9F5D7"; + base01 = "EBDBB2"; + base02 = "D5C4A1"; + base03 = "BDAE93"; + base04 = "665C54"; + base05 = "504945"; + base06 = "3C3836"; + base07 = "282828"; + base08 = "9D0006"; + base09 = "AF3A03"; + base0A = "B57614"; + base0B = "79740E"; + base0C = "427B58"; + base0D = "076678"; + base0E = "8F3F71"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-light-medium.nix b/themes/gruvbox-light-medium.nix new file mode 100644 index 0000000..2355e51 --- /dev/null +++ b/themes/gruvbox-light-medium.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox light; medium", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "FBF1C7"; + base01 = "EBDBB2"; + base02 = "D5C4A1"; + base03 = "BDAE93"; + base04 = "665C54"; + base05 = "504945"; + base06 = "3C3836"; + base07 = "282828"; + base08 = "9D0006"; + base09 = "AF3A03"; + base0A = "B57614"; + base0B = "79740E"; + base0C = "427B58"; + base0D = "076678"; + base0E = "8F3F71"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-light-soft.nix b/themes/gruvbox-light-soft.nix new file mode 100644 index 0000000..bdce489 --- /dev/null +++ b/themes/gruvbox-light-soft.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox light; soft", + author = "Dawid Kurek (dawikur@gmail.com); morhetz (https://github.com/morhetz/gruvbox)", + base00 = "F2E5BC"; + base01 = "EBDBB2"; + base02 = "D5C4A1"; + base03 = "BDAE93"; + base04 = "665C54"; + base05 = "504945"; + base06 = "3C3836"; + base07 = "282828"; + base08 = "9D0006"; + base09 = "AF3A03"; + base0A = "B57614"; + base0B = "79740E"; + base0C = "427B58"; + base0D = "076678"; + base0E = "8F3F71"; + base0F = "D65D0E"; +} diff --git a/themes/gruvbox-material-dark-hard.nix b/themes/gruvbox-material-dark-hard.nix new file mode 100644 index 0000000..f960e3a --- /dev/null +++ b/themes/gruvbox-material-dark-hard.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox Material Dark; Hard", + author = "Mayush Kumar (https://github.com/MayushKumar); sainnhe (https://github.com/sainnhe/gruvbox-material-vscode)", + base00 = "202020"; + base01 = "2A2827"; + base02 = "504945"; + base03 = "5A524C"; + base04 = "BDAE93"; + base05 = "DDC7A1"; + base06 = "EBDBB2"; + base07 = "FBF1C7"; + base08 = "EA6962"; + base09 = "E78A4E"; + base0A = "D8A657"; + base0B = "A9B665"; + base0C = "89B482"; + base0D = "7DAEA3"; + base0E = "D3869B"; + base0F = "BD6F3E"; +} diff --git a/themes/gruvbox-material-dark-medium.nix b/themes/gruvbox-material-dark-medium.nix new file mode 100644 index 0000000..020dfb0 --- /dev/null +++ b/themes/gruvbox-material-dark-medium.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox Material Dark; Medium", + author = "Mayush Kumar (https://github.com/MayushKumar); sainnhe (https://github.com/sainnhe/gruvbox-material-vscode)", + base00 = "292828"; + base01 = "32302F"; + base02 = "504945"; + base03 = "665C54"; + base04 = "BDAE93"; + base05 = "DDC7A1"; + base06 = "EBDBB2"; + base07 = "FBF1C7"; + base08 = "EA6962"; + base09 = "E78A4E"; + base0A = "D8A657"; + base0B = "A9B665"; + base0C = "89B482"; + base0D = "7DAEA3"; + base0E = "D3869B"; + base0F = "BD6F3E"; +} diff --git a/themes/gruvbox-material-dark-soft.nix b/themes/gruvbox-material-dark-soft.nix new file mode 100644 index 0000000..89f1b9d --- /dev/null +++ b/themes/gruvbox-material-dark-soft.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox Material Dark; Soft", + author = "Mayush Kumar (https://github.com/MayushKumar); sainnhe (https://github.com/sainnhe/gruvbox-material-vscode)", + base00 = "32302F"; + base01 = "3C3836"; + base02 = "5A524C"; + base03 = "7C6F64"; + base04 = "BDAE93"; + base05 = "DDC7A1"; + base06 = "EBDBB2"; + base07 = "FBF1C7"; + base08 = "EA6962"; + base09 = "E78A4E"; + base0A = "D8A657"; + base0B = "A9B665"; + base0C = "89B482"; + base0D = "7DAEA3"; + base0E = "D3869B"; + base0F = "BD6F3E"; +} diff --git a/themes/gruvbox-material-light-hard.nix b/themes/gruvbox-material-light-hard.nix new file mode 100644 index 0000000..5e4140e --- /dev/null +++ b/themes/gruvbox-material-light-hard.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox Material Light; Hard", + author = "Mayush Kumar (https://github.com/MayushKumar); sainnhe (https://github.com/sainnhe/gruvbox-material-vscode)", + base00 = "F9F5D7"; + base01 = "FBF1C7"; + base02 = "E0CFA9"; + base03 = "A89984"; + base04 = "C9B99A"; + base05 = "654735"; + base06 = "3C3836"; + base07 = "282828"; + base08 = "C14A4A"; + base09 = "C35E0A"; + base0A = "B47109"; + base0B = "6C782E"; + base0C = "4C7A5D"; + base0D = "45707A"; + base0E = "945E80"; + base0F = "E78A4E"; +} diff --git a/themes/gruvbox-material-light-medium.nix b/themes/gruvbox-material-light-medium.nix new file mode 100644 index 0000000..2f2d9c9 --- /dev/null +++ b/themes/gruvbox-material-light-medium.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox Material Light; Medium", + author = "Mayush Kumar (https://github.com/MayushKumar); sainnhe (https://github.com/sainnhe/gruvbox-material-vscode)", + base00 = "FBF1C7"; + base01 = "F2E5BC"; + base02 = "D5C4A1"; + base03 = "BDAE93"; + base04 = "665C54"; + base05 = "654735"; + base06 = "3C3836"; + base07 = "282828"; + base08 = "C14A4A"; + base09 = "C35E0A"; + base0A = "B47109"; + base0B = "6C782E"; + base0C = "4C7A5D"; + base0D = "45707A"; + base0E = "945E80"; + base0F = "E78A4E"; +} diff --git a/themes/gruvbox-material-light-soft.nix b/themes/gruvbox-material-light-soft.nix new file mode 100644 index 0000000..f1307ca --- /dev/null +++ b/themes/gruvbox-material-light-soft.nix @@ -0,0 +1,20 @@ +{ + name = "Gruvbox Material Light; Soft", + author = "Mayush Kumar (https://github.com/MayushKumar); sainnhe (https://github.com/sainnhe/gruvbox-material-vscode)", + base00 = "F2E5BC"; + base01 = "EBDBB2"; + base02 = "C9B99A"; + base03 = "A89984"; + base04 = "665C54"; + base05 = "654735"; + base06 = "3C3836"; + base07 = "282828"; + base08 = "C14A4A"; + base09 = "C35E0A"; + base0A = "B47109"; + base0B = "6C782E"; + base0C = "4C7A5D"; + base0D = "45707A"; + base0E = "945E80"; + base0F = "E78A4E"; +} diff --git a/themes/hardcore.nix b/themes/hardcore.nix new file mode 100644 index 0000000..2c24765 --- /dev/null +++ b/themes/hardcore.nix @@ -0,0 +1,20 @@ +{ + name = "Hardcore"; + author = "Chris Caller"; + base00 = "212121"; + base01 = "303030"; + base02 = "353535"; + base03 = "4A4A4A"; + base04 = "707070"; + base05 = "CDCDCD"; + base06 = "E5E5E5"; + base07 = "FFFFFF"; + base08 = "F92672"; + base09 = "FD971F"; + base0A = "E6DB74"; + base0B = "A6E22E"; + base0C = "708387"; + base0D = "66D9EF"; + base0E = "9E6FFE"; + base0F = "E8B882"; +} diff --git a/themes/harmonic16-dark.nix b/themes/harmonic16-dark.nix new file mode 100644 index 0000000..d1745a9 --- /dev/null +++ b/themes/harmonic16-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Harmonic16 Dark"; + author = "Jannik Siebert (https://github.com/janniks)"; + base00 = "0B1C2C"; + base01 = "223B54"; + base02 = "405C79"; + base03 = "627E99"; + base04 = "AABCCE"; + base05 = "CBD6E2"; + base06 = "E5EBF1"; + base07 = "F7F9FB"; + base08 = "BF8B56"; + base09 = "BFBF56"; + base0A = "8BBF56"; + base0B = "56BF8B"; + base0C = "568BBF"; + base0D = "8B56BF"; + base0E = "BF568B"; + base0F = "BF5656"; +} diff --git a/themes/harmonic16-light.nix b/themes/harmonic16-light.nix new file mode 100644 index 0000000..d21536e --- /dev/null +++ b/themes/harmonic16-light.nix @@ -0,0 +1,20 @@ +{ + name = "Harmonic16 Light"; + author = "Jannik Siebert (https://github.com/janniks)"; + base00 = "F7F9FB"; + base01 = "E5EBF1"; + base02 = "CBD6E2"; + base03 = "AABCCE"; + base04 = "627E99"; + base05 = "405C79"; + base06 = "223B54"; + base07 = "0B1C2C"; + base08 = "BF8B56"; + base09 = "BFBF56"; + base0A = "8BBF56"; + base0B = "56BF8B"; + base0C = "568BBF"; + base0D = "8B56BF"; + base0E = "BF568B"; + base0F = "BF5656"; +} diff --git a/themes/heetch-light.nix b/themes/heetch-light.nix new file mode 100644 index 0000000..71a0513 --- /dev/null +++ b/themes/heetch-light.nix @@ -0,0 +1,20 @@ +{ + name = "Heetch Light"; + author = "Geoffrey Teale (tealeg@gmail.com)"; + base00 = "FEFFFF"; + base01 = "392551"; + base02 = "7B6D8B"; + base03 = "9C92A8"; + base04 = "DDD6E5"; + base05 = "5A496E"; + base06 = "470546"; + base07 = "190134"; + base08 = "27D9D5"; + base09 = "BDB6C5"; + base0A = "5BA2B6"; + base0B = "F80059"; + base0C = "C33678"; + base0D = "47F9F5"; + base0E = "BD0152"; + base0F = "DEDAE2"; +} diff --git a/themes/heetch.nix b/themes/heetch.nix new file mode 100644 index 0000000..01df715 --- /dev/null +++ b/themes/heetch.nix @@ -0,0 +1,20 @@ +{ + name = "Heetch Dark"; + author = "Geoffrey Teale (tealeg@gmail.com)"; + base00 = "190134"; + base01 = "392551"; + base02 = "5A496E"; + base03 = "7B6D8B"; + base04 = "9C92A8"; + base05 = "BDB6C5"; + base06 = "DEDAE2"; + base07 = "FEFFFF"; + base08 = "27D9D5"; + base09 = "5BA2B6"; + base0A = "8F6C97"; + base0B = "C33678"; + base0C = "F80059"; + base0D = "BD0152"; + base0E = "82034C"; + base0F = "470546"; +} diff --git a/themes/helios.nix b/themes/helios.nix new file mode 100644 index 0000000..28ed497 --- /dev/null +++ b/themes/helios.nix @@ -0,0 +1,20 @@ +{ + name = "Helios"; + author = "Alex Meyer (https://github.com/reyemxela)"; + base00 = "1D2021"; + base01 = "383C3E"; + base02 = "53585B"; + base03 = "6F7579"; + base04 = "CDCDCD"; + base05 = "D5D5D5"; + base06 = "DDDDDD"; + base07 = "E5E5E5"; + base08 = "D72638"; + base09 = "EB8413"; + base0A = "F19D1A"; + base0B = "88B92D"; + base0C = "1BA595"; + base0D = "1E8BAC"; + base0E = "BE4264"; + base0F = "C85E0D"; +} diff --git a/themes/hopscotch.nix b/themes/hopscotch.nix new file mode 100644 index 0000000..302a906 --- /dev/null +++ b/themes/hopscotch.nix @@ -0,0 +1,20 @@ +{ + name = "Hopscotch"; + author = "Jan T. Sott"; + base00 = "322931"; + base01 = "433B42"; + base02 = "5C545B"; + base03 = "797379"; + base04 = "989498"; + base05 = "B9B5B8"; + base06 = "D5D3D5"; + base07 = "FFFFFF"; + base08 = "DD464C"; + base09 = "FD8B19"; + base0A = "FDCC59"; + base0B = "8FC13E"; + base0C = "149B93"; + base0D = "1290BF"; + base0E = "C85E7C"; + base0F = "B33508"; +} diff --git a/themes/horizon-dark.nix b/themes/horizon-dark.nix new file mode 100644 index 0000000..287d248 --- /dev/null +++ b/themes/horizon-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Horizon Dark"; + author = "Michaël Ball (http://github.com/michael-ball/)"; + base00 = "1C1E26"; + base01 = "232530"; + base02 = "2E303E"; + base03 = "6F6F70"; + base04 = "9DA0A2"; + base05 = "CBCED0"; + base06 = "DCDFE4"; + base07 = "E3E6EE"; + base08 = "E93C58"; + base09 = "E58D7D"; + base0A = "EFB993"; + base0B = "EFAF8E"; + base0C = "24A8B4"; + base0D = "DF5273"; + base0E = "B072D1"; + base0F = "E4A382"; +} diff --git a/themes/horizon-light.nix b/themes/horizon-light.nix new file mode 100644 index 0000000..c1e8d09 --- /dev/null +++ b/themes/horizon-light.nix @@ -0,0 +1,20 @@ +{ + name = "Horizon Light"; + author = "Michaël Ball (http://github.com/michael-ball/)"; + base00 = "FDF0ED"; + base01 = "FADAD1"; + base02 = "F9CBBE"; + base03 = "BDB3B1"; + base04 = "948C8A"; + base05 = "403C3D"; + base06 = "302C2D"; + base07 = "201C1D"; + base08 = "F7939B"; + base09 = "F6661E"; + base0A = "FBE0D9"; + base0B = "94E1B0"; + base0C = "DC3318"; + base0D = "DA103F"; + base0E = "1D8991"; + base0F = "E58C92"; +} diff --git a/themes/horizon-terminal-dark.nix b/themes/horizon-terminal-dark.nix new file mode 100644 index 0000000..fcb8e13 --- /dev/null +++ b/themes/horizon-terminal-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Horizon Terminal Dark"; + author = "Michaël Ball (http://github.com/michael-ball/)"; + base00 = "1C1E26"; + base01 = "232530"; + base02 = "2E303E"; + base03 = "6F6F70"; + base04 = "9DA0A2"; + base05 = "CBCED0"; + base06 = "DCDFE4"; + base07 = "E3E6EE"; + base08 = "E95678"; + base09 = "FAB795"; + base0A = "FAC29A"; + base0B = "29D398"; + base0C = "59E1E3"; + base0D = "26BBD9"; + base0E = "EE64AC"; + base0F = "F09383"; +} diff --git a/themes/horizon-terminal-light.nix b/themes/horizon-terminal-light.nix new file mode 100644 index 0000000..88a7044 --- /dev/null +++ b/themes/horizon-terminal-light.nix @@ -0,0 +1,20 @@ +{ + name = "Horizon Terminal Light"; + author = "Michaël Ball (http://github.com/michael-ball/)"; + base00 = "FDF0ED"; + base01 = "FADAD1"; + base02 = "F9CBBE"; + base03 = "BDB3B1"; + base04 = "948C8A"; + base05 = "403C3D"; + base06 = "302C2D"; + base07 = "201C1D"; + base08 = "E95678"; + base09 = "F9CEC3"; + base0A = "FADAD1"; + base0B = "29D398"; + base0C = "59E1E3"; + base0D = "26BBD9"; + base0E = "EE64AC"; + base0F = "F9CBBE"; +} diff --git a/themes/humanoid-dark.nix b/themes/humanoid-dark.nix new file mode 100644 index 0000000..f015596 --- /dev/null +++ b/themes/humanoid-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Humanoid dark"; + author = "Thomas (tasmo) Friese"; + base00 = "232629"; + base01 = "333B3D"; + base02 = "484E54"; + base03 = "60615D"; + base04 = "C0C0BD"; + base05 = "F8F8F2"; + base06 = "FCFCF6"; + base07 = "FCFCFC"; + base08 = "F11235"; + base09 = "FF9505"; + base0A = "FFB627"; + base0B = "02D849"; + base0C = "0DD9D6"; + base0D = "00A6FB"; + base0E = "F15EE3"; + base0F = "B27701"; +} diff --git a/themes/humanoid-light.nix b/themes/humanoid-light.nix new file mode 100644 index 0000000..26a3617 --- /dev/null +++ b/themes/humanoid-light.nix @@ -0,0 +1,20 @@ +{ + name = "Humanoid light"; + author = "Thomas (tasmo) Friese"; + base00 = "F8F8F2"; + base01 = "EFEFE9"; + base02 = "DEDED8"; + base03 = "C0C0BD"; + base04 = "60615D"; + base05 = "232629"; + base06 = "2F3337"; + base07 = "070708"; + base08 = "B0151A"; + base09 = "FF3D00"; + base0A = "FFB627"; + base0B = "388E3C"; + base0C = "008E8E"; + base0D = "0082C9"; + base0E = "700F98"; + base0F = "B27701"; +} diff --git a/themes/ia-dark.nix b/themes/ia-dark.nix new file mode 100644 index 0000000..c1260e6 --- /dev/null +++ b/themes/ia-dark.nix @@ -0,0 +1,20 @@ +{ + name = "iA Dark"; + author = "iA Inc. (modified by aramisgithub)"; + base00 = "1A1A1A"; + base01 = "222222"; + base02 = "1D414D"; + base03 = "767676"; + base04 = "B8B8B8"; + base05 = "CCCCCC"; + base06 = "E8E8E8"; + base07 = "F8F8F8"; + base08 = "D88568"; + base09 = "D86868"; + base0A = "B99353"; + base0B = "83A471"; + base0C = "7C9CAE"; + base0D = "8ECCDD"; + base0E = "B98EB2"; + base0F = "8B6C37"; +} diff --git a/themes/ia-light.nix b/themes/ia-light.nix new file mode 100644 index 0000000..f83df94 --- /dev/null +++ b/themes/ia-light.nix @@ -0,0 +1,20 @@ +{ + name = "iA Light"; + author = "iA Inc. (modified by aramisgithub)"; + base00 = "F6F6F6"; + base01 = "DEDEDE"; + base02 = "BDE5F2"; + base03 = "898989"; + base04 = "767676"; + base05 = "181818"; + base06 = "E8E8E8"; + base07 = "F8F8F8"; + base08 = "9C5A02"; + base09 = "C43E18"; + base0A = "C48218"; + base0B = "38781C"; + base0C = "2D6BB1"; + base0D = "48BAC2"; + base0E = "A94598"; + base0F = "8B6C37"; +} diff --git a/themes/icy.nix b/themes/icy.nix new file mode 100644 index 0000000..f521832 --- /dev/null +++ b/themes/icy.nix @@ -0,0 +1,20 @@ +{ + name = "Icy Dark"; + author = "icyphox (https://icyphox.ga)"; + base00 = "021012"; + base01 = "031619"; + base02 = "041F23"; + base03 = "052E34"; + base04 = "064048"; + base05 = "095B67"; + base06 = "0C7C8C"; + base07 = "109CB0"; + base08 = "16C1D9"; + base09 = "B3EBF2"; + base0A = "80DEEA"; + base0B = "4DD0E1"; + base0C = "26C6DA"; + base0D = "00BCD4"; + base0E = "00ACC1"; + base0F = "0097A7"; +} diff --git a/themes/irblack.nix b/themes/irblack.nix new file mode 100644 index 0000000..102457b --- /dev/null +++ b/themes/irblack.nix @@ -0,0 +1,20 @@ +{ + name = "IR Black"; + author = "Timothée Poisot (http://timotheepoisot.fr)"; + base00 = "000000"; + base01 = "242422"; + base02 = "484844"; + base03 = "6C6C66"; + base04 = "918F88"; + base05 = "B5B3AA"; + base06 = "D9D7CC"; + base07 = "FDFBEE"; + base08 = "FF6C60"; + base09 = "E9C062"; + base0A = "FFFFB6"; + base0B = "A8FF60"; + base0C = "C6C5FE"; + base0D = "96CBFE"; + base0E = "FF73FD"; + base0F = "B18A3D"; +} diff --git a/themes/isotope.nix b/themes/isotope.nix new file mode 100644 index 0000000..999ba10 --- /dev/null +++ b/themes/isotope.nix @@ -0,0 +1,20 @@ +{ + name = "Isotope"; + author = "Jan T. Sott"; + base00 = "000000"; + base01 = "404040"; + base02 = "606060"; + base03 = "808080"; + base04 = "C0C0C0"; + base05 = "D0D0D0"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "FF0000"; + base09 = "FF9900"; + base0A = "FF0099"; + base0B = "33FF00"; + base0C = "00FFFF"; + base0D = "0066FF"; + base0E = "CC00FF"; + base0F = "3300FF"; +} diff --git a/themes/kanagawa.nix b/themes/kanagawa.nix new file mode 100644 index 0000000..7b3ca1d --- /dev/null +++ b/themes/kanagawa.nix @@ -0,0 +1,20 @@ +{ + name = "Kanagawa"; + author = "Tommaso Laurenzi (https://github.com/rebelot)"; + base00 = "1F1F28"; + base01 = "16161D"; + base02 = "223249"; + base03 = "54546D"; + base04 = "727169"; + base05 = "DCD7BA"; + base06 = "C8C093"; + base07 = "717C7C"; + base08 = "C34043"; + base09 = "FFA066"; + base0A = "C0A36E"; + base0B = "76946A"; + base0C = "6A9589"; + base0D = "7E9CD8"; + base0E = "957FB8"; + base0F = "D27E99"; +} diff --git a/themes/katy.nix b/themes/katy.nix new file mode 100644 index 0000000..cea909b --- /dev/null +++ b/themes/katy.nix @@ -0,0 +1,20 @@ +{ + name = "Katy"; + author = "George Essig (https://github.com/gessig)"; + base00 = "292D3E"; + base01 = "444267"; + base02 = "5C598B"; + base03 = "676E95"; + base04 = "8796B0"; + base05 = "959DCB"; + base06 = "959DCB"; + base07 = "FFFFFF"; + base08 = "6E98E1"; + base09 = "F78C6C"; + base0A = "E0A557"; + base0B = "78C06E"; + base0C = "83B7E5"; + base0D = "82AAFF"; + base0E = "C792EA"; + base0F = "FF5370"; +} diff --git a/themes/kimber.nix b/themes/kimber.nix new file mode 100644 index 0000000..1db2dc6 --- /dev/null +++ b/themes/kimber.nix @@ -0,0 +1,20 @@ +{ + name = "Kimber"; + author = "Mishka Nguyen (https://github.com/akhsiM)"; + base00 = "222222"; + base01 = "313131"; + base02 = "555D55"; + base03 = "644646"; + base04 = "5A5A5A"; + base05 = "DEDEE7"; + base06 = "C3C3B4"; + base07 = "FFFFE6"; + base08 = "C88C8C"; + base09 = "476C88"; + base0A = "D8B56D"; + base0B = "99C899"; + base0C = "78B4B4"; + base0D = "537C9C"; + base0E = "86CACD"; + base0F = "704F4F"; +} diff --git a/themes/lime.nix b/themes/lime.nix new file mode 100644 index 0000000..99fc0eb --- /dev/null +++ b/themes/lime.nix @@ -0,0 +1,20 @@ +{ + name = "lime"; + author = "limelier"; + base00 = "1A1A2F"; + base01 = "202030"; + base02 = "2A2A3F"; + base03 = "313140"; + base04 = "515155"; + base05 = "818175"; + base06 = "FFF2D1"; + base07 = "FFF8E1"; + base08 = "FF662A"; + base09 = "FF773A"; + base0A = "FFD15E"; + base0B = "8CD97C"; + base0C = "4CAD83"; + base0D = "2B926F"; + base0E = "1B825F"; + base0F = "B4D97C"; +} diff --git a/themes/macintosh.nix b/themes/macintosh.nix new file mode 100644 index 0000000..3f2b9f2 --- /dev/null +++ b/themes/macintosh.nix @@ -0,0 +1,20 @@ +{ + name = "Macintosh"; + author = "Rebecca Bettencourt (http://www.kreativekorp.com)"; + base00 = "000000"; + base01 = "404040"; + base02 = "404040"; + base03 = "808080"; + base04 = "808080"; + base05 = "C0C0C0"; + base06 = "C0C0C0"; + base07 = "FFFFFF"; + base08 = "DD0907"; + base09 = "FF6403"; + base0A = "FBF305"; + base0B = "1FB714"; + base0C = "02ABEA"; + base0D = "0000D3"; + base0E = "4700A5"; + base0F = "90713A"; +} diff --git a/themes/marrakesh.nix b/themes/marrakesh.nix new file mode 100644 index 0000000..3bd0b3e --- /dev/null +++ b/themes/marrakesh.nix @@ -0,0 +1,20 @@ +{ + name = "Marrakesh"; + author = "Alexandre Gavioli (http://github.com/Alexx2/)"; + base00 = "201602"; + base01 = "302E00"; + base02 = "5F5B17"; + base03 = "6C6823"; + base04 = "86813B"; + base05 = "948E48"; + base06 = "CCC37A"; + base07 = "FAF0A5"; + base08 = "C35359"; + base09 = "B36144"; + base0A = "A88339"; + base0B = "18974E"; + base0C = "75A738"; + base0D = "477CA1"; + base0E = "8868B3"; + base0F = "B3588E"; +} diff --git a/themes/materia.nix b/themes/materia.nix new file mode 100644 index 0000000..62fedbf --- /dev/null +++ b/themes/materia.nix @@ -0,0 +1,20 @@ +{ + name = "Materia"; + author = "Defman21"; + base00 = "263238"; + base01 = "2C393F"; + base02 = "37474F"; + base03 = "707880"; + base04 = "C9CCD3"; + base05 = "CDD3DE"; + base06 = "D5DBE5"; + base07 = "FFFFFF"; + base08 = "EC5F67"; + base09 = "EA9560"; + base0A = "FFCC00"; + base0B = "8BD649"; + base0C = "80CBC4"; + base0D = "89DDFF"; + base0E = "82AAFF"; + base0F = "EC5F67"; +} diff --git a/themes/material-darker.nix b/themes/material-darker.nix new file mode 100644 index 0000000..2382498 --- /dev/null +++ b/themes/material-darker.nix @@ -0,0 +1,20 @@ +{ + name = "Material Darker"; + author = "Nate Peterson"; + base00 = "212121"; + base01 = "303030"; + base02 = "353535"; + base03 = "4A4A4A"; + base04 = "B2CCD6"; + base05 = "EEFFFF"; + base06 = "EEFFFF"; + base07 = "FFFFFF"; + base08 = "F07178"; + base09 = "F78C6C"; + base0A = "FFCB6B"; + base0B = "C3E88D"; + base0C = "89DDFF"; + base0D = "82AAFF"; + base0E = "C792EA"; + base0F = "FF5370"; +} diff --git a/themes/material-lighter.nix b/themes/material-lighter.nix new file mode 100644 index 0000000..6635741 --- /dev/null +++ b/themes/material-lighter.nix @@ -0,0 +1,20 @@ +{ + name = "Material Lighter"; + author = "Nate Peterson"; + base00 = "FAFAFA"; + base01 = "E7EAEC"; + base02 = "CCEAE7"; + base03 = "CCD7DA"; + base04 = "8796B0"; + base05 = "80CBC4"; + base06 = "80CBC4"; + base07 = "FFFFFF"; + base08 = "FF5370"; + base09 = "F76D47"; + base0A = "FFB62C"; + base0B = "91B859"; + base0C = "39ADB5"; + base0D = "6182B8"; + base0E = "7C4DFF"; + base0F = "E53935"; +} diff --git a/themes/material-palenight.nix b/themes/material-palenight.nix new file mode 100644 index 0000000..75c6b0c --- /dev/null +++ b/themes/material-palenight.nix @@ -0,0 +1,20 @@ +{ + name = "Material Palenight"; + author = "Nate Peterson"; + base00 = "292D3E"; + base01 = "444267"; + base02 = "32374D"; + base03 = "676E95"; + base04 = "8796B0"; + base05 = "959DCB"; + base06 = "959DCB"; + base07 = "FFFFFF"; + base08 = "F07178"; + base09 = "F78C6C"; + base0A = "FFCB6B"; + base0B = "C3E88D"; + base0C = "89DDFF"; + base0D = "82AAFF"; + base0E = "C792EA"; + base0F = "FF5370"; +} diff --git a/themes/material-vivid.nix b/themes/material-vivid.nix new file mode 100644 index 0000000..9c79277 --- /dev/null +++ b/themes/material-vivid.nix @@ -0,0 +1,20 @@ +{ + name = "Material Vivid"; + author = "joshyrobot"; + base00 = "202124"; + base01 = "27292C"; + base02 = "323639"; + base03 = "44464D"; + base04 = "676C71"; + base05 = "80868B"; + base06 = "9E9E9E"; + base07 = "FFFFFF"; + base08 = "F44336"; + base09 = "FF9800"; + base0A = "FFEB3B"; + base0B = "00E676"; + base0C = "00BCD4"; + base0D = "2196F3"; + base0E = "673AB7"; + base0F = "8D6E63"; +} diff --git a/themes/material.nix b/themes/material.nix new file mode 100644 index 0000000..19b51f5 --- /dev/null +++ b/themes/material.nix @@ -0,0 +1,20 @@ +{ + name = "Material"; + author = "Nate Peterson"; + base00 = "263238"; + base01 = "2E3C43"; + base02 = "314549"; + base03 = "546E7A"; + base04 = "B2CCD6"; + base05 = "EEFFFF"; + base06 = "EEFFFF"; + base07 = "FFFFFF"; + base08 = "F07178"; + base09 = "F78C6C"; + base0A = "FFCB6B"; + base0B = "C3E88D"; + base0C = "89DDFF"; + base0D = "82AAFF"; + base0E = "C792EA"; + base0F = "FF5370"; +} diff --git a/themes/mellow-purple.nix b/themes/mellow-purple.nix new file mode 100644 index 0000000..34f4408 --- /dev/null +++ b/themes/mellow-purple.nix @@ -0,0 +1,20 @@ +{ + name = "Mellow Purple"; + author = "gidsi"; + base00 = "1E0528"; + base01 = "1A092D"; + base02 = "331354"; + base03 = "320F55"; + base04 = "873582"; + base05 = "FFEEFF"; + base06 = "FFEEFF"; + base07 = "F8C0FF"; + base08 = "00D9E9"; + base09 = "AA00A3"; + base0A = "955AE7"; + base0B = "05CB0D"; + base0C = "B900B1"; + base0D = "550068"; + base0E = "8991BB"; + base0F = "4D6FFF"; +} diff --git a/themes/mexico-light.nix b/themes/mexico-light.nix new file mode 100644 index 0000000..47d51ed --- /dev/null +++ b/themes/mexico-light.nix @@ -0,0 +1,20 @@ +{ + name = "Mexico Light"; + author = "Sheldon Johnson"; + base00 = "F8F8F8"; + base01 = "E8E8E8"; + base02 = "D8D8D8"; + base03 = "B8B8B8"; + base04 = "585858"; + base05 = "383838"; + base06 = "282828"; + base07 = "181818"; + base08 = "AB4642"; + base09 = "DC9656"; + base0A = "F79A0E"; + base0B = "538947"; + base0C = "4B8093"; + base0D = "7CAFC2"; + base0E = "96609E"; + base0F = "A16946"; +} diff --git a/themes/mocha.nix b/themes/mocha.nix new file mode 100644 index 0000000..56743be --- /dev/null +++ b/themes/mocha.nix @@ -0,0 +1,20 @@ +{ + name = "Mocha"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "3B3228"; + base01 = "534636"; + base02 = "645240"; + base03 = "7E705A"; + base04 = "B8AFAD"; + base05 = "D0C8C6"; + base06 = "E9E1DD"; + base07 = "F5EEEB"; + base08 = "CB6077"; + base09 = "D28B71"; + base0A = "F4BC87"; + base0B = "BEB55B"; + base0C = "7BBDA4"; + base0D = "8AB3B5"; + base0E = "A89BB9"; + base0F = "BB9584"; +} diff --git a/themes/monokai.nix b/themes/monokai.nix new file mode 100644 index 0000000..6d8c508 --- /dev/null +++ b/themes/monokai.nix @@ -0,0 +1,20 @@ +{ + name = "Monokai"; + author = "Wimer Hazenberg (http://www.monokai.nl)"; + base00 = "272822"; + base01 = "383830"; + base02 = "49483E"; + base03 = "75715E"; + base04 = "A59F85"; + base05 = "F8F8F2"; + base06 = "F5F4F1"; + base07 = "F9F8F5"; + base08 = "F92672"; + base09 = "FD971F"; + base0A = "F4BF75"; + base0B = "A6E22E"; + base0C = "A1EFE4"; + base0D = "66D9EF"; + base0E = "AE81FF"; + base0F = "CC6633"; +} diff --git a/themes/mountain.nix b/themes/mountain.nix new file mode 100644 index 0000000..2f3757b --- /dev/null +++ b/themes/mountain.nix @@ -0,0 +1,20 @@ +{ + name = "Mountain"; + author = "gnsfujiwara (https://github.com/gnsfujiwara)"; + base00 = "0F0F0F"; + base01 = "191919"; + base02 = "262626"; + base03 = "4C4C4C"; + base04 = "AC8A8C"; + base05 = "CACACA"; + base06 = "E7E7E7"; + base07 = "F0F0F0"; + base08 = "AC8A8C"; + base09 = "CEB188"; + base0A = "ACA98A"; + base0B = "8AAC8B"; + base0C = "8AABAC"; + base0D = "8F8AAC"; + base0E = "AC8AAC"; + base0F = "AC8A8C"; +} diff --git a/themes/nebula.nix b/themes/nebula.nix new file mode 100644 index 0000000..d3f46f4 --- /dev/null +++ b/themes/nebula.nix @@ -0,0 +1,20 @@ +{ + name = "Nebula"; + author = "Gabriel Fontes (https://github.com/Misterio77)"; + base00 = "22273B"; + base01 = "414F60"; + base02 = "5A8380"; + base03 = "6E6F72"; + base04 = "87888B"; + base05 = "A4A6A9"; + base06 = "C7C9CD"; + base07 = "8DBDAA"; + base08 = "777ABC"; + base09 = "94929E"; + base0A = "4F9062"; + base0B = "6562A8"; + base0C = "226F68"; + base0D = "4D6BB6"; + base0E = "716CAE"; + base0F = "8C70A7"; +} diff --git a/themes/nord.nix b/themes/nord.nix new file mode 100644 index 0000000..ed10ced --- /dev/null +++ b/themes/nord.nix @@ -0,0 +1,20 @@ +{ + name = "Nord"; + author = "arcticicestudio"; + base00 = "2E3440"; + base01 = "3B4252"; + base02 = "434C5E"; + base03 = "4C566A"; + base04 = "D8DEE9"; + base05 = "E5E9F0"; + base06 = "ECEFF4"; + base07 = "8FBCBB"; + base08 = "BF616A"; + base09 = "D08770"; + base0A = "EBCB8B"; + base0B = "A3BE8C"; + base0C = "88C0D0"; + base0D = "81A1C1"; + base0E = "B48EAD"; + base0F = "5E81AC"; +} diff --git a/themes/nova.nix b/themes/nova.nix new file mode 100644 index 0000000..ef26c25 --- /dev/null +++ b/themes/nova.nix @@ -0,0 +1,20 @@ +{ + name = "Nova"; + author = "George Essig (https://github.com/gessig); Trevor D. Miller (https://trevordmiller.com)", + base00 = "3C4C55"; + base01 = "556873"; + base02 = "6A7D89"; + base03 = "899BA6"; + base04 = "899BA6"; + base05 = "C5D4DD"; + base06 = "899BA6"; + base07 = "556873"; + base08 = "83AFE5"; + base09 = "7FC1CA"; + base0A = "A8CE93"; + base0B = "7FC1CA"; + base0C = "F2C38F"; + base0D = "83AFE5"; + base0E = "9A93E1"; + base0F = "F2C38F"; +} diff --git a/themes/ocean.nix b/themes/ocean.nix new file mode 100644 index 0000000..b86d0bc --- /dev/null +++ b/themes/ocean.nix @@ -0,0 +1,20 @@ +{ + name = "Ocean"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "2B303B"; + base01 = "343D46"; + base02 = "4F5B66"; + base03 = "65737E"; + base04 = "A7ADBA"; + base05 = "C0C5CE"; + base06 = "DFE1E8"; + base07 = "EFF1F5"; + base08 = "BF616A"; + base09 = "D08770"; + base0A = "EBCB8B"; + base0B = "A3BE8C"; + base0C = "96B5B4"; + base0D = "8FA1B3"; + base0E = "B48EAD"; + base0F = "AB7967"; +} diff --git a/themes/oceanicnext.nix b/themes/oceanicnext.nix new file mode 100644 index 0000000..1272a58 --- /dev/null +++ b/themes/oceanicnext.nix @@ -0,0 +1,20 @@ +{ + name = "OceanicNext"; + author = "https://github.com/voronianski/oceanic-next-color-name "; + base00 = "1B2B34"; + base01 = "343D46"; + base02 = "4F5B66"; + base03 = "65737E"; + base04 = "A7ADBA"; + base05 = "C0C5CE"; + base06 = "CDD3DE"; + base07 = "D8DEE9"; + base08 = "EC5F67"; + base09 = "F99157"; + base0A = "FAC863"; + base0B = "99C794"; + base0C = "5FB3B3"; + base0D = "6699CC"; + base0E = "C594C5"; + base0F = "AB7967"; +} diff --git a/themes/one-light.nix b/themes/one-light.nix new file mode 100644 index 0000000..3602716 --- /dev/null +++ b/themes/one-light.nix @@ -0,0 +1,20 @@ +{ + name = "One Light"; + author = "Daniel Pfeifer (http://github.com/purpleKarrot)"; + base00 = "FAFAFA"; + base01 = "F0F0F1"; + base02 = "E5E5E6"; + base03 = "A0A1A7"; + base04 = "696C77"; + base05 = "383A42"; + base06 = "202227"; + base07 = "090A0B"; + base08 = "CA1243"; + base09 = "D75F00"; + base0A = "C18401"; + base0B = "50A14F"; + base0C = "0184BC"; + base0D = "4078F2"; + base0E = "A626A4"; + base0F = "986801"; +} diff --git a/themes/onedark.nix b/themes/onedark.nix new file mode 100644 index 0000000..d176285 --- /dev/null +++ b/themes/onedark.nix @@ -0,0 +1,20 @@ +{ + name = "OneDark"; + author = "Lalit Magant (http://github.com/tilal6991)"; + base00 = "282C34"; + base01 = "353B45"; + base02 = "3E4451"; + base03 = "545862"; + base04 = "565C64"; + base05 = "ABB2BF"; + base06 = "B6BDCA"; + base07 = "C8CCD4"; + base08 = "E06C75"; + base09 = "D19A66"; + base0A = "E5C07B"; + base0B = "98C379"; + base0C = "56B6C2"; + base0D = "61AFEF"; + base0E = "C678DD"; + base0F = "BE5046"; +} diff --git a/themes/outrun-dark.nix b/themes/outrun-dark.nix new file mode 100644 index 0000000..8ceac7e --- /dev/null +++ b/themes/outrun-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Outrun Dark"; + author = "Hugo Delahousse (http://github.com/hugodelahousse/)"; + base00 = "00002A"; + base01 = "20204A"; + base02 = "30305A"; + base03 = "50507A"; + base04 = "B0B0DA"; + base05 = "D0D0FA"; + base06 = "E0E0FF"; + base07 = "F5F5FF"; + base08 = "FF4242"; + base09 = "FC8D28"; + base0A = "F3E877"; + base0B = "59F176"; + base0C = "0EF0F0"; + base0D = "66B0FF"; + base0E = "F10596"; + base0F = "F003EF"; +} diff --git a/themes/oxocarbon-dark.nix b/themes/oxocarbon-dark.nix new file mode 100644 index 0000000..eb79c76 --- /dev/null +++ b/themes/oxocarbon-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Oxocarbon Dark"; + author = "shaunsingh/IBM"; + base00 = "161616"; + base01 = "262626"; + base02 = "393939"; + base03 = "525252"; + base04 = "DDE1E6"; + base05 = "F2F4F8"; + base06 = "FFFFFF"; + base07 = "08BDBA"; + base08 = "3DDBD9"; + base09 = "78A9FF"; + base0A = "EE5396"; + base0B = "33B1FF"; + base0C = "FF7EB6"; + base0D = "42BE65"; + base0E = "BE95FF"; + base0F = "82CFFF"; +} diff --git a/themes/oxocarbon-light.nix b/themes/oxocarbon-light.nix new file mode 100644 index 0000000..0adabc8 --- /dev/null +++ b/themes/oxocarbon-light.nix @@ -0,0 +1,20 @@ +{ + name = "Oxocarbon Light"; + author = "shaunsingh/IBM"; + base00 = "F2F4F8"; + base01 = "DDE1E6"; + base02 = "525252"; + base03 = "161616"; + base04 = "262626"; + base05 = "393939"; + base06 = "525252"; + base07 = "08BDBA"; + base08 = "FF7EB6"; + base09 = "EE5396"; + base0A = "FF6F00"; + base0B = "0F62FE"; + base0C = "673AB7"; + base0D = "42BE65"; + base0E = "BE95FF"; + base0F = "37474F"; +} diff --git a/themes/pandora.nix b/themes/pandora.nix new file mode 100644 index 0000000..9f56254 --- /dev/null +++ b/themes/pandora.nix @@ -0,0 +1,20 @@ +{ + name = "pandora"; + author = "Cassandra Fox"; + base00 = "131213"; + base01 = "2F1823"; + base02 = "472234"; + base03 = "FFBEE3"; + base04 = "9B2A46"; + base05 = "F15C99"; + base06 = "81506A"; + base07 = "632227"; + base08 = "B00B69"; + base09 = "FF9153"; + base0A = "FFCC00"; + base0B = "9DDF69"; + base0C = "714CA6"; + base0D = "008080"; + base0E = "A24030"; + base0F = "A24030"; +} diff --git a/themes/papercolor-dark.nix b/themes/papercolor-dark.nix new file mode 100644 index 0000000..74fb558 --- /dev/null +++ b/themes/papercolor-dark.nix @@ -0,0 +1,20 @@ +{ + name = "PaperColor Dark"; + author = "Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme)"; + base00 = "1C1C1C"; + base01 = "AF005F"; + base02 = "5FAF00"; + base03 = "D7AF5F"; + base04 = "5FAFD7"; + base05 = "808080"; + base06 = "D7875F"; + base07 = "D0D0D0"; + base08 = "585858"; + base09 = "5FAF5F"; + base0A = "AFD700"; + base0B = "AF87D7"; + base0C = "FFAF00"; + base0D = "FF5FAF"; + base0E = "00AFAF"; + base0F = "5F8787"; +} diff --git a/themes/papercolor-light.nix b/themes/papercolor-light.nix new file mode 100644 index 0000000..a37b728 --- /dev/null +++ b/themes/papercolor-light.nix @@ -0,0 +1,20 @@ +{ + name = "PaperColor Light"; + author = "Jon Leopard (http://github.com/jonleopard) based on PaperColor Theme (https://github.com/NLKNguyen/papercolor-theme)"; + base00 = "EEEEEE"; + base01 = "AF0000"; + base02 = "008700"; + base03 = "5F8700"; + base04 = "0087AF"; + base05 = "444444"; + base06 = "005F87"; + base07 = "878787"; + base08 = "BCBCBC"; + base09 = "D70000"; + base0A = "D70087"; + base0B = "8700AF"; + base0C = "D75F00"; + base0D = "D75F00"; + base0E = "005FAF"; + base0F = "005F87"; +} diff --git a/themes/paraiso.nix b/themes/paraiso.nix new file mode 100644 index 0000000..aa7dd19 --- /dev/null +++ b/themes/paraiso.nix @@ -0,0 +1,20 @@ +{ + name = "Paraiso"; + author = "Jan T. Sott"; + base00 = "2F1E2E"; + base01 = "41323F"; + base02 = "4F424C"; + base03 = "776E71"; + base04 = "8D8687"; + base05 = "A39E9B"; + base06 = "B9B6B0"; + base07 = "E7E9DB"; + base08 = "EF6155"; + base09 = "F99B15"; + base0A = "FEC418"; + base0B = "48B685"; + base0C = "5BC4BF"; + base0D = "06B6EF"; + base0E = "815BA4"; + base0F = "E96BA8"; +} diff --git a/themes/pasque.nix b/themes/pasque.nix new file mode 100644 index 0000000..7f1d56a --- /dev/null +++ b/themes/pasque.nix @@ -0,0 +1,20 @@ +{ + name = "Pasque"; + author = "Gabriel Fontes (https://github.com/Misterio77)"; + base00 = "271C3A"; + base01 = "100323"; + base02 = "3E2D5C"; + base03 = "5D5766"; + base04 = "BEBCBF"; + base05 = "DEDCDF"; + base06 = "EDEAEF"; + base07 = "BBAADD"; + base08 = "A92258"; + base09 = "918889"; + base0A = "804EAD"; + base0B = "C6914B"; + base0C = "7263AA"; + base0D = "8E7DC6"; + base0E = "953B9D"; + base0F = "59325C"; +} diff --git a/themes/phd.nix b/themes/phd.nix new file mode 100644 index 0000000..36e8248 --- /dev/null +++ b/themes/phd.nix @@ -0,0 +1,20 @@ +{ + name = "PhD"; + author = "Hennig Hasemann (http://leetless.de/vim.html)"; + base00 = "061229"; + base01 = "2A3448"; + base02 = "4D5666"; + base03 = "717885"; + base04 = "9A99A3"; + base05 = "B8BBC2"; + base06 = "DBDDE0"; + base07 = "FFFFFF"; + base08 = "D07346"; + base09 = "F0A000"; + base0A = "FBD461"; + base0B = "99BF52"; + base0C = "72B9BF"; + base0D = "5299BF"; + base0E = "9989CC"; + base0F = "B08060"; +} diff --git a/themes/pico.nix b/themes/pico.nix new file mode 100644 index 0000000..6ff941f --- /dev/null +++ b/themes/pico.nix @@ -0,0 +1,20 @@ +{ + name = "Pico"; + author = "PICO-8 (http://www.lexaloffle.com/pico-8.php)"; + base00 = "000000"; + base01 = "1D2B53"; + base02 = "7E2553"; + base03 = "008751"; + base04 = "AB5236"; + base05 = "5F574F"; + base06 = "C2C3C7"; + base07 = "FFF1E8"; + base08 = "FF004D"; + base09 = "FFA300"; + base0A = "FFF024"; + base0B = "00E756"; + base0C = "29ADFF"; + base0D = "83769C"; + base0E = "FF77A8"; + base0F = "FFCCAA"; +} diff --git a/themes/pinky.nix b/themes/pinky.nix new file mode 100644 index 0000000..4edbd9a --- /dev/null +++ b/themes/pinky.nix @@ -0,0 +1,20 @@ +{ + name = "pinky"; + author = "Benjamin (https://github.com/b3nj5m1n)"; + base00 = "171517"; + base01 = "1B181B"; + base02 = "1D1B1D"; + base03 = "383338"; + base04 = "E7DBDB"; + base05 = "F5F5F5"; + base06 = "FFFFFF"; + base07 = "F7F3F7"; + base08 = "FFA600"; + base09 = "00FF66"; + base0A = "20DF6C"; + base0B = "FF0066"; + base0C = "6600FF"; + base0D = "00FFFF"; + base0E = "007FFF"; + base0F = "DF206C"; +} diff --git a/themes/pop.nix b/themes/pop.nix new file mode 100644 index 0000000..37cfb23 --- /dev/null +++ b/themes/pop.nix @@ -0,0 +1,20 @@ +{ + name = "Pop"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "000000"; + base01 = "202020"; + base02 = "303030"; + base03 = "505050"; + base04 = "B0B0B0"; + base05 = "D0D0D0"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "EB008A"; + base09 = "F29333"; + base0A = "F8CA12"; + base0B = "37B349"; + base0C = "00AABB"; + base0D = "0E5A94"; + base0E = "B31E8D"; + base0F = "7A2D00"; +} diff --git a/themes/porple.nix b/themes/porple.nix new file mode 100644 index 0000000..93b80ee --- /dev/null +++ b/themes/porple.nix @@ -0,0 +1,20 @@ +{ + name = "Porple"; + author = "Niek den Breeje (https://github.com/AuditeMarlow)"; + base00 = "292C36"; + base01 = "333344"; + base02 = "474160"; + base03 = "65568A"; + base04 = "B8B8B8"; + base05 = "D8D8D8"; + base06 = "E8E8E8"; + base07 = "F8F8F8"; + base08 = "F84547"; + base09 = "D28E5D"; + base0A = "EFA16B"; + base0B = "95C76F"; + base0C = "64878F"; + base0D = "8485CE"; + base0E = "B74989"; + base0F = "986841"; +} diff --git a/themes/primer-dark-dimmed.nix b/themes/primer-dark-dimmed.nix new file mode 100644 index 0000000..89caaca --- /dev/null +++ b/themes/primer-dark-dimmed.nix @@ -0,0 +1,20 @@ +{ + name = "Primer Dark Dimmed"; + author = "Jimmy Lin"; + base00 = "1C2128"; + base01 = "373E47"; + base02 = "444C56"; + base03 = "545D68"; + base04 = "768390"; + base05 = "909DAB"; + base06 = "ADBAC7"; + base07 = "CDD9E5"; + base08 = "F47067"; + base09 = "E0823D"; + base0A = "C69026"; + base0B = "57AB5A"; + base0C = "96D0FF"; + base0D = "539BF5"; + base0E = "E275AD"; + base0F = "AE5622"; +} diff --git a/themes/primer-dark.nix b/themes/primer-dark.nix new file mode 100644 index 0000000..fd6a524 --- /dev/null +++ b/themes/primer-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Primer Dark"; + author = "Jimmy Lin"; + base00 = "010409"; + base01 = "21262D"; + base02 = "30363D"; + base03 = "484F58"; + base04 = "8B949E"; + base05 = "B1BAC4"; + base06 = "C9D1D9"; + base07 = "F0F6FC"; + base08 = "FF7B72"; + base09 = "F0883E"; + base0A = "D29922"; + base0B = "3FB950"; + base0C = "A5D6FF"; + base0D = "58A6FF"; + base0E = "F778BA"; + base0F = "BD561D"; +} diff --git a/themes/primer-light.nix b/themes/primer-light.nix new file mode 100644 index 0000000..5580cdf --- /dev/null +++ b/themes/primer-light.nix @@ -0,0 +1,20 @@ +{ + name = "Primer Light"; + author = "Jimmy Lin"; + base00 = "FAFBFC"; + base01 = "E1E4E8"; + base02 = "D1D5DA"; + base03 = "959DA5"; + base04 = "444D56"; + base05 = "2F363D"; + base06 = "24292E"; + base07 = "1B1F23"; + base08 = "D73A49"; + base09 = "F66A0A"; + base0A = "FFD33D"; + base0B = "28A745"; + base0C = "79B8FF"; + base0D = "0366D6"; + base0E = "EA4AAA"; + base0F = "A04100"; +} diff --git a/themes/purpledream.nix b/themes/purpledream.nix new file mode 100644 index 0000000..962da12 --- /dev/null +++ b/themes/purpledream.nix @@ -0,0 +1,20 @@ +{ + name = "Purpledream"; + author = "malet"; + base00 = "100510"; + base01 = "302030"; + base02 = "403040"; + base03 = "605060"; + base04 = "BBB0BB"; + base05 = "DDD0DD"; + base06 = "EEE0EE"; + base07 = "FFF0FF"; + base08 = "FF1D0D"; + base09 = "CCAE14"; + base0A = "F000A0"; + base0B = "14CC64"; + base0C = "0075B0"; + base0D = "00A0F0"; + base0E = "B000D0"; + base0F = "6A2A3C"; +} diff --git a/themes/qualia.nix b/themes/qualia.nix new file mode 100644 index 0000000..bd2a3f0 --- /dev/null +++ b/themes/qualia.nix @@ -0,0 +1,20 @@ +{ + name = "Qualia"; + author = "isaacwhanson"; + base00 = "101010"; + base01 = "454545"; + base02 = "454545"; + base03 = "454545"; + base04 = "808080"; + base05 = "C0C0C0"; + base06 = "C0C0C0"; + base07 = "454545"; + base08 = "EFA6A2"; + base09 = "A3B8EF"; + base0A = "E6A3DC"; + base0B = "80C990"; + base0C = "C8C874"; + base0D = "50CACD"; + base0E = "E0AF85"; + base0F = "808080"; +} diff --git a/themes/railscasts.nix b/themes/railscasts.nix new file mode 100644 index 0000000..e363ee1 --- /dev/null +++ b/themes/railscasts.nix @@ -0,0 +1,20 @@ +{ + name = "Railscasts"; + author = "Ryan Bates (http://railscasts.com)"; + base00 = "2B2B2B"; + base01 = "272935"; + base02 = "3A4055"; + base03 = "5A647E"; + base04 = "D4CFC9"; + base05 = "E6E1DC"; + base06 = "F4F1ED"; + base07 = "F9F7F3"; + base08 = "DA4939"; + base09 = "CC7833"; + base0A = "FFC66D"; + base0B = "A5C261"; + base0C = "519F50"; + base0D = "6D9CBE"; + base0E = "B6B3EB"; + base0F = "BC9458"; +} diff --git a/themes/rebecca.nix b/themes/rebecca.nix new file mode 100644 index 0000000..60d57f5 --- /dev/null +++ b/themes/rebecca.nix @@ -0,0 +1,20 @@ +{ + name = "Rebecca"; + author = "Victor Borja (http://github.com/vic) based on Rebecca Theme (http://github.com/vic/rebecca-theme)"; + base00 = "292A44"; + base01 = "663399"; + base02 = "383A62"; + base03 = "666699"; + base04 = "A0A0C5"; + base05 = "F1EFF8"; + base06 = "CCCCFF"; + base07 = "53495D"; + base08 = "A0A0C5"; + base09 = "EFE4A1"; + base0A = "AE81FF"; + base0B = "6DFEDF"; + base0C = "8EAEE0"; + base0D = "2DE0A7"; + base0E = "7AA5FF"; + base0F = "FF79C6"; +} diff --git a/themes/rose-pine-dawn.nix b/themes/rose-pine-dawn.nix new file mode 100644 index 0000000..5880980 --- /dev/null +++ b/themes/rose-pine-dawn.nix @@ -0,0 +1,20 @@ +{ + name = "Rosé Pine Dawn"; + author = "Emilia Dunfelt "; + base00 = "FAF4ED"; + base01 = "FFFAF3"; + base02 = "F2E9DE"; + base03 = "9893A5"; + base04 = "797593"; + base05 = "575279"; + base06 = "575279"; + base07 = "CECACD"; + base08 = "B4637A"; + base09 = "EA9D34"; + base0A = "D7827E"; + base0B = "286983"; + base0C = "56949F"; + base0D = "907AA9"; + base0E = "EA9D34"; + base0F = "CECACD"; +} diff --git a/themes/rose-pine-moon.nix b/themes/rose-pine-moon.nix new file mode 100644 index 0000000..c7de774 --- /dev/null +++ b/themes/rose-pine-moon.nix @@ -0,0 +1,20 @@ +{ + name = "Rosé Pine Moon"; + author = "Emilia Dunfelt "; + base00 = "232136"; + base01 = "2A273F"; + base02 = "393552"; + base03 = "6E6A86"; + base04 = "908CAA"; + base05 = "E0DEF4"; + base06 = "E0DEF4"; + base07 = "56526E"; + base08 = "EB6F92"; + base09 = "F6C177"; + base0A = "EA9A97"; + base0B = "3E8FB0"; + base0C = "9CCFD8"; + base0D = "C4A7E7"; + base0E = "F6C177"; + base0F = "56526E"; +} diff --git a/themes/rose-pine.nix b/themes/rose-pine.nix new file mode 100644 index 0000000..cef4c98 --- /dev/null +++ b/themes/rose-pine.nix @@ -0,0 +1,20 @@ +{ + name = "Rosé Pine"; + author = "Emilia Dunfelt "; + base00 = "191724"; + base01 = "1F1D2E"; + base02 = "26233A"; + base03 = "6E6A86"; + base04 = "908CAA"; + base05 = "E0DEF4"; + base06 = "E0DEF4"; + base07 = "524F67"; + base08 = "EB6F92"; + base09 = "F6C177"; + base0A = "EBBCBA"; + base0B = "31748F"; + base0C = "9CCFD8"; + base0D = "C4A7E7"; + base0E = "F6C177"; + base0F = "524F67"; +} diff --git a/themes/sagelight.nix b/themes/sagelight.nix new file mode 100644 index 0000000..5d84e5b --- /dev/null +++ b/themes/sagelight.nix @@ -0,0 +1,20 @@ +{ + name = "Sagelight"; + author = "Carter Veldhuizen"; + base00 = "F8F8F8"; + base01 = "E8E8E8"; + base02 = "D8D8D8"; + base03 = "B8B8B8"; + base04 = "585858"; + base05 = "383838"; + base06 = "282828"; + base07 = "181818"; + base08 = "FA8480"; + base09 = "FFAA61"; + base0A = "FFDC61"; + base0B = "A0D2C8"; + base0C = "A2D6F5"; + base0D = "A0A7D2"; + base0E = "C8A0D2"; + base0F = "D2B2A0"; +} diff --git a/themes/sakura.nix b/themes/sakura.nix new file mode 100644 index 0000000..6f93e71 --- /dev/null +++ b/themes/sakura.nix @@ -0,0 +1,20 @@ +{ + name = "Sakura"; + author = "Misterio77 (http://github.com/Misterio77)"; + base00 = "FEEDF3"; + base01 = "F8E2E7"; + base02 = "E0CCD1"; + base03 = "755F64"; + base04 = "665055"; + base05 = "564448"; + base06 = "42383A"; + base07 = "33292B"; + base08 = "DF2D52"; + base09 = "F6661E"; + base0A = "C29461"; + base0B = "2E916D"; + base0C = "1D8991"; + base0D = "006E93"; + base0E = "5E2180"; + base0F = "BA0D35"; +} diff --git a/themes/sandcastle.nix b/themes/sandcastle.nix new file mode 100644 index 0000000..1733f0c --- /dev/null +++ b/themes/sandcastle.nix @@ -0,0 +1,20 @@ +{ + name = "Sandcastle"; + author = "George Essig (https://github.com/gessig)"; + base00 = "282C34"; + base01 = "2C323B"; + base02 = "3E4451"; + base03 = "665C54"; + base04 = "928374"; + base05 = "A89984"; + base06 = "D5C4A1"; + base07 = "FDF4C1"; + base08 = "83A598"; + base09 = "A07E3B"; + base0A = "A07E3B"; + base0B = "528B8B"; + base0C = "83A598"; + base0D = "83A598"; + base0E = "D75F5F"; + base0F = "A87322"; +} diff --git a/themes/selenized-black.nix b/themes/selenized-black.nix new file mode 100644 index 0000000..dcc261b --- /dev/null +++ b/themes/selenized-black.nix @@ -0,0 +1,20 @@ +{ + name = "selenized-black"; + author = "Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali"; + base00 = "181818"; + base01 = "252525"; + base02 = "3B3B3B"; + base03 = "777777"; + base04 = "777777"; + base05 = "B9B9B9"; + base06 = "DEDEDE"; + base07 = "DEDEDE"; + base08 = "ED4A46"; + base09 = "E67F43"; + base0A = "DBB32D"; + base0B = "70B433"; + base0C = "3FC5B7"; + base0D = "368AEB"; + base0E = "A580E2"; + base0F = "EB6EB7"; +} diff --git a/themes/selenized-dark.nix b/themes/selenized-dark.nix new file mode 100644 index 0000000..29a3081 --- /dev/null +++ b/themes/selenized-dark.nix @@ -0,0 +1,20 @@ +{ + name = "selenized-dark"; + author = "Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali"; + base00 = "103C48"; + base01 = "184956"; + base02 = "2D5B69"; + base03 = "72898F"; + base04 = "72898F"; + base05 = "ADBCBC"; + base06 = "CAD8D9"; + base07 = "CAD8D9"; + base08 = "FA5750"; + base09 = "ED8649"; + base0A = "DBB32D"; + base0B = "75B938"; + base0C = "41C7B9"; + base0D = "4695F7"; + base0E = "AF88EB"; + base0F = "F275BE"; +} diff --git a/themes/selenized-light.nix b/themes/selenized-light.nix new file mode 100644 index 0000000..2fa6085 --- /dev/null +++ b/themes/selenized-light.nix @@ -0,0 +1,20 @@ +{ + name = "selenized-light"; + author = "Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali"; + base00 = "FBF3DB"; + base01 = "ECE3CC"; + base02 = "D5CDB6"; + base03 = "909995"; + base04 = "909995"; + base05 = "53676D"; + base06 = "3A4D53"; + base07 = "3A4D53"; + base08 = "CC1729"; + base09 = "BC5819"; + base0A = "A78300"; + base0B = "428B00"; + base0C = "00978A"; + base0D = "006DCE"; + base0E = "825DC0"; + base0F = "C44392"; +} diff --git a/themes/selenized-white.nix b/themes/selenized-white.nix new file mode 100644 index 0000000..2d9654b --- /dev/null +++ b/themes/selenized-white.nix @@ -0,0 +1,20 @@ +{ + name = "selenized-white"; + author = "Jan Warchol (https://github.com/jan-warchol/selenized) / adapted to base16 by ali"; + base00 = "FFFFFF"; + base01 = "EBEBEB"; + base02 = "CDCDCD"; + base03 = "878787"; + base04 = "878787"; + base05 = "474747"; + base06 = "282828"; + base07 = "282828"; + base08 = "BF0000"; + base09 = "BA3700"; + base0A = "AF8500"; + base0B = "008400"; + base0C = "009A8A"; + base0D = "0054CF"; + base0E = "6B40C3"; + base0F = "DD0F9D"; +} diff --git a/themes/seti.nix b/themes/seti.nix new file mode 100644 index 0000000..db018fb --- /dev/null +++ b/themes/seti.nix @@ -0,0 +1,20 @@ +{ + name = "Seti UI"; + author = ""; + base00 = "151718"; + base01 = "282A2B"; + base02 = "3B758C"; + base03 = "41535B"; + base04 = "43A5D5"; + base05 = "D6D6D6"; + base06 = "EEEEEE"; + base07 = "FFFFFF"; + base08 = "CD3F45"; + base09 = "DB7B55"; + base0A = "E6CD69"; + base0B = "9FCA56"; + base0C = "55DBBE"; + base0D = "55B5DB"; + base0E = "A074C4"; + base0F = "8A553F"; +} diff --git a/themes/shades-of-purple.nix b/themes/shades-of-purple.nix new file mode 100644 index 0000000..946f5b9 --- /dev/null +++ b/themes/shades-of-purple.nix @@ -0,0 +1,20 @@ +{ + name = "Shades of Purple"; + author = "Iolar Demartini Junior (http://github.com/demartini) based on Shades of Purple Theme (https://github.com/ahmadawais/shades-of-purple-vscode)."; + base00 = "1E1E3F"; + base01 = "43D426"; + base02 = "F1D000"; + base03 = "808080"; + base04 = "6871FF"; + base05 = "C7C7C7"; + base06 = "FF77FF"; + base07 = "FFFFFF"; + base08 = "D90429"; + base09 = "F92A1C"; + base0A = "FFE700"; + base0B = "3AD900"; + base0C = "00C5C7"; + base0D = "6943FF"; + base0E = "FF2C70"; + base0F = "79E8FB"; +} diff --git a/themes/shadesmear-dark.nix b/themes/shadesmear-dark.nix new file mode 100644 index 0000000..7d85e7a --- /dev/null +++ b/themes/shadesmear-dark.nix @@ -0,0 +1,20 @@ +{ + name = "ShadeSmear Dark"; + author = "Kyle Giammarco (http://kyle.giammar.co)"; + base00 = "232323"; + base01 = "1C1C1C"; + base02 = "4E4E4E"; + base03 = "C0C0C0"; + base04 = "E4E4E4"; + base05 = "DBDBDB"; + base06 = "E4E4E4"; + base07 = "1C1C1C"; + base08 = "CC5450"; + base09 = "A64270"; + base0A = "307878"; + base0B = "71983B"; + base0C = "C57D42"; + base0D = "376388"; + base0E = "D7AB54"; + base0F = "6D6D6D"; +} diff --git a/themes/shadesmear-light.nix b/themes/shadesmear-light.nix new file mode 100644 index 0000000..cde2c32 --- /dev/null +++ b/themes/shadesmear-light.nix @@ -0,0 +1,20 @@ +{ + name = "ShadeSmear Light"; + author = "Kyle Giammarco (http://kyle.giammar.co)"; + base00 = "DBDBDB"; + base01 = "E4E4E4"; + base02 = "C0C0C0"; + base03 = "4E4E4E"; + base04 = "1C1C1C"; + base05 = "232323"; + base06 = "1C1C1C"; + base07 = "E4E4E4"; + base08 = "CC5450"; + base09 = "A64270"; + base0A = "307878"; + base0B = "71983B"; + base0C = "C57D42"; + base0D = "376388"; + base0E = "D7AB54"; + base0F = "6D6D6D"; +} diff --git a/themes/shapeshifter.nix b/themes/shapeshifter.nix new file mode 100644 index 0000000..be7b59d --- /dev/null +++ b/themes/shapeshifter.nix @@ -0,0 +1,20 @@ +{ + name = "Shapeshifter"; + author = "Tyler Benziger (http://tybenz.com)"; + base00 = "F9F9F9"; + base01 = "E0E0E0"; + base02 = "ABABAB"; + base03 = "555555"; + base04 = "343434"; + base05 = "102015"; + base06 = "040404"; + base07 = "000000"; + base08 = "E92F2F"; + base09 = "E09448"; + base0A = "DDDD13"; + base0B = "0ED839"; + base0C = "23EDDA"; + base0D = "3B48E3"; + base0E = "F996E2"; + base0F = "69542D"; +} diff --git a/themes/silk-dark.nix b/themes/silk-dark.nix new file mode 100644 index 0000000..39378f0 --- /dev/null +++ b/themes/silk-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Silk Dark"; + author = "Gabriel Fontes (https://github.com/Misterio77)"; + base00 = "0E3C46"; + base01 = "1D494E"; + base02 = "2A5054"; + base03 = "587073"; + base04 = "9DC8CD"; + base05 = "C7DBDD"; + base06 = "CBF2F7"; + base07 = "D2FAFF"; + base08 = "FB6953"; + base09 = "FCAB74"; + base0A = "FCE380"; + base0B = "73D8AD"; + base0C = "3FB2B9"; + base0D = "46BDDD"; + base0E = "756B8A"; + base0F = "9B647B"; +} diff --git a/themes/silk-light.nix b/themes/silk-light.nix new file mode 100644 index 0000000..d0449f6 --- /dev/null +++ b/themes/silk-light.nix @@ -0,0 +1,20 @@ +{ + name = "Silk Light"; + author = "Gabriel Fontes (https://github.com/Misterio77)"; + base00 = "E9F1EF"; + base01 = "CCD4D3"; + base02 = "90B7B6"; + base03 = "5C787B"; + base04 = "4B5B5F"; + base05 = "385156"; + base06 = "0E3C46"; + base07 = "D2FAFF"; + base08 = "CF432E"; + base09 = "D27F46"; + base0A = "CFAD25"; + base0B = "6CA38C"; + base0C = "329CA2"; + base0D = "39AAC9"; + base0E = "6E6582"; + base0F = "865369"; +} diff --git a/themes/snazzy.nix b/themes/snazzy.nix new file mode 100644 index 0000000..5275dac --- /dev/null +++ b/themes/snazzy.nix @@ -0,0 +1,20 @@ +{ + name = "Snazzy"; + author = "Chawye Hsu (https://github.com/chawyehsu) based on Hyper Snazzy Theme (https://github.com/sindresorhus/hyper-snazzy)"; + base00 = "282A36"; + base01 = "34353E"; + base02 = "43454F"; + base03 = "78787E"; + base04 = "A5A5A9"; + base05 = "E2E4E5"; + base06 = "EFF0EB"; + base07 = "F1F1F0"; + base08 = "FF5C57"; + base09 = "FF9F43"; + base0A = "F3F99D"; + base0B = "5AF78E"; + base0C = "9AEDFE"; + base0D = "57C7FF"; + base0E = "FF6AC1"; + base0F = "B2643C"; +} diff --git a/themes/solarflare-light.nix b/themes/solarflare-light.nix new file mode 100644 index 0000000..4a3c318 --- /dev/null +++ b/themes/solarflare-light.nix @@ -0,0 +1,20 @@ +{ + name = "Solar Flare Light"; + author = "Chuck Harmston (https://chuck.harmston.ch)"; + base00 = "F5F7FA"; + base01 = "E8E9ED"; + base02 = "A6AFB8"; + base03 = "85939E"; + base04 = "667581"; + base05 = "586875"; + base06 = "222E38"; + base07 = "18262F"; + base08 = "EF5253"; + base09 = "E66B2B"; + base0A = "E4B51C"; + base0B = "7CC844"; + base0C = "52CBB0"; + base0D = "33B5E1"; + base0E = "A363D5"; + base0F = "D73C9A"; +} diff --git a/themes/solarflare.nix b/themes/solarflare.nix new file mode 100644 index 0000000..a9f221c --- /dev/null +++ b/themes/solarflare.nix @@ -0,0 +1,20 @@ +{ + name = "Solar Flare"; + author = "Chuck Harmston (https://chuck.harmston.ch)"; + base00 = "18262F"; + base01 = "222E38"; + base02 = "586875"; + base03 = "667581"; + base04 = "85939E"; + base05 = "A6AFB8"; + base06 = "E8E9ED"; + base07 = "F5F7FA"; + base08 = "EF5253"; + base09 = "E66B2B"; + base0A = "E4B51C"; + base0B = "7CC844"; + base0C = "52CBB0"; + base0D = "33B5E1"; + base0E = "A363D5"; + base0F = "D73C9A"; +} diff --git a/themes/solarized-dark.nix b/themes/solarized-dark.nix new file mode 100644 index 0000000..ee8a573 --- /dev/null +++ b/themes/solarized-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Solarized Dark"; + author = "Ethan Schoonover (modified by aramisgithub)"; + base00 = "002B36"; + base01 = "073642"; + base02 = "586E75"; + base03 = "657B83"; + base04 = "839496"; + base05 = "93A1A1"; + base06 = "EEE8D5"; + base07 = "FDF6E3"; + base08 = "DC322F"; + base09 = "CB4B16"; + base0A = "B58900"; + base0B = "859900"; + base0C = "2AA198"; + base0D = "268BD2"; + base0E = "6C71C4"; + base0F = "D33682"; +} diff --git a/themes/solarized-light.nix b/themes/solarized-light.nix new file mode 100644 index 0000000..e561955 --- /dev/null +++ b/themes/solarized-light.nix @@ -0,0 +1,20 @@ +{ + name = "Solarized Light"; + author = "Ethan Schoonover (modified by aramisgithub)"; + base00 = "FDF6E3"; + base01 = "EEE8D5"; + base02 = "93A1A1"; + base03 = "839496"; + base04 = "657B83"; + base05 = "586E75"; + base06 = "073642"; + base07 = "002B36"; + base08 = "DC322F"; + base09 = "CB4B16"; + base0A = "B58900"; + base0B = "859900"; + base0C = "2AA198"; + base0D = "268BD2"; + base0E = "6C71C4"; + base0F = "D33682"; +} diff --git a/themes/spaceduck.nix b/themes/spaceduck.nix new file mode 100644 index 0000000..a89b98e --- /dev/null +++ b/themes/spaceduck.nix @@ -0,0 +1,20 @@ +{ + name = "Spaceduck"; + author = "Guillermo Rodriguez (https://github.com/pineapplegiant); packaged by Gabriel Fontes (https://github.com/Misterio77)", + base00 = "16172D"; + base01 = "1B1C36"; + base02 = "30365F"; + base03 = "686F9A"; + base04 = "818596"; + base05 = "ECF0C1"; + base06 = "C1C3CC"; + base07 = "FFFFFF"; + base08 = "E33400"; + base09 = "E39400"; + base0A = "F2CE00"; + base0B = "5CCC96"; + base0C = "00A3CC"; + base0D = "7A5CCC"; + base0E = "B3A1E6"; + base0F = "CE6F8F"; +} diff --git a/themes/spacemacs.nix b/themes/spacemacs.nix new file mode 100644 index 0000000..05700c6 --- /dev/null +++ b/themes/spacemacs.nix @@ -0,0 +1,20 @@ +{ + name = "Spacemacs"; + author = "Nasser Alshammari (https://github.com/nashamri/spacemacs-theme)"; + base00 = "1F2022"; + base01 = "282828"; + base02 = "444155"; + base03 = "585858"; + base04 = "B8B8B8"; + base05 = "A3A3A3"; + base06 = "E8E8E8"; + base07 = "F8F8F8"; + base08 = "F2241F"; + base09 = "FFA500"; + base0A = "B1951D"; + base0B = "67B11D"; + base0C = "2D9574"; + base0D = "4F97D7"; + base0E = "A31DB1"; + base0F = "B03060"; +} diff --git a/themes/standardized-dark.nix b/themes/standardized-dark.nix new file mode 100644 index 0000000..cbb65e2 --- /dev/null +++ b/themes/standardized-dark.nix @@ -0,0 +1,20 @@ +{ + name = "standardized-dark"; + author = "ali (https://github.com/ali-githb/base16-standardized-name )"; + base00 = "222222"; + base01 = "303030"; + base02 = "555555"; + base03 = "898989"; + base04 = "898989"; + base05 = "C0C0C0"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "E15D67"; + base09 = "FC804E"; + base0A = "E1B31A"; + base0B = "5DB129"; + base0C = "21C992"; + base0D = "00A3F2"; + base0E = "B46EE0"; + base0F = "B87D28"; +} diff --git a/themes/standardized-light.nix b/themes/standardized-light.nix new file mode 100644 index 0000000..76fd17d --- /dev/null +++ b/themes/standardized-light.nix @@ -0,0 +1,20 @@ +{ + name = "standardized-light"; + author = "ali (https://github.com/ali-githb/base16-standardized-name )"; + base00 = "FFFFFF"; + base01 = "EEEEEE"; + base02 = "CCCCCC"; + base03 = "767676"; + base04 = "767676"; + base05 = "444444"; + base06 = "333333"; + base07 = "222222"; + base08 = "D03E3E"; + base09 = "D7691D"; + base0A = "AD8200"; + base0B = "31861F"; + base0C = "00998F"; + base0D = "3173C5"; + base0E = "9E57C2"; + base0F = "895025"; +} diff --git a/themes/stella.nix b/themes/stella.nix new file mode 100644 index 0000000..3208dfb --- /dev/null +++ b/themes/stella.nix @@ -0,0 +1,20 @@ +{ + name = "Stella"; + author = "Shrimpram"; + base00 = "2B213C"; + base01 = "362B48"; + base02 = "4D4160"; + base03 = "655978"; + base04 = "7F7192"; + base05 = "998BAD"; + base06 = "B4A5C8"; + base07 = "EBDCFF"; + base08 = "C79987"; + base09 = "8865C6"; + base0A = "C7C691"; + base0B = "ACC79B"; + base0C = "9BC7BF"; + base0D = "A5AAD4"; + base0E = "C594FF"; + base0F = "C7AB87"; +} diff --git a/themes/still-alive.nix b/themes/still-alive.nix new file mode 100644 index 0000000..783105d --- /dev/null +++ b/themes/still-alive.nix @@ -0,0 +1,20 @@ +{ + name = "Still Alive"; + author = "Derrick McKee (derrick.mckee@gmail.com)"; + base00 = "F0F0F0"; + base01 = "F0D848"; + base02 = "FFF018"; + base03 = "F01818"; + base04 = "F00000"; + base05 = "D80000"; + base06 = "489000"; + base07 = "30A860"; + base08 = "487830"; + base09 = "183048"; + base0A = "426395"; + base0B = "5C5C6A"; + base0C = "2C3C57"; + base0D = "001878"; + base0E = "900000"; + base0F = "140C0D"; +} diff --git a/themes/summercamp.nix b/themes/summercamp.nix new file mode 100644 index 0000000..de88ae8 --- /dev/null +++ b/themes/summercamp.nix @@ -0,0 +1,20 @@ +{ + name = "summercamp"; + author = "zoe firi (zoefiri.github.io)"; + base00 = "1C1810"; + base01 = "2A261C"; + base02 = "3A3527"; + base03 = "504B38"; + base04 = "5F5B45"; + base05 = "736E55"; + base06 = "BAB696"; + base07 = "F8F5DE"; + base08 = "E35142"; + base09 = "FBA11B"; + base0A = "F2FF27"; + base0B = "5CEB5A"; + base0C = "5AEBBC"; + base0D = "489BF0"; + base0E = "FF8080"; + base0F = "F69BE7"; +} diff --git a/themes/summerfruit-dark.nix b/themes/summerfruit-dark.nix new file mode 100644 index 0000000..35639c0 --- /dev/null +++ b/themes/summerfruit-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Summerfruit Dark"; + author = "Christopher Corley (http://christop.club/)"; + base00 = "151515"; + base01 = "202020"; + base02 = "303030"; + base03 = "505050"; + base04 = "B0B0B0"; + base05 = "D0D0D0"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "FF0086"; + base09 = "FD8900"; + base0A = "ABA800"; + base0B = "00C918"; + base0C = "1FAAAA"; + base0D = "3777E6"; + base0E = "AD00A1"; + base0F = "CC6633"; +} diff --git a/themes/summerfruit-light.nix b/themes/summerfruit-light.nix new file mode 100644 index 0000000..6cb1a03 --- /dev/null +++ b/themes/summerfruit-light.nix @@ -0,0 +1,20 @@ +{ + name = "Summerfruit Light"; + author = "Christopher Corley (http://christop.club/)"; + base00 = "FFFFFF"; + base01 = "E0E0E0"; + base02 = "D0D0D0"; + base03 = "B0B0B0"; + base04 = "000000"; + base05 = "101010"; + base06 = "151515"; + base07 = "202020"; + base08 = "FF0086"; + base09 = "FD8900"; + base0A = "ABA800"; + base0B = "00C918"; + base0C = "1FAAAA"; + base0D = "3777E6"; + base0E = "AD00A1"; + base0F = "CC6633"; +} diff --git a/themes/synth-midnight-dark.nix b/themes/synth-midnight-dark.nix new file mode 100644 index 0000000..c3b8282 --- /dev/null +++ b/themes/synth-midnight-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Synth Midnight Terminal Dark"; + author = "Michaël Ball (http://github.com/michael-ball/)"; + base00 = "050608"; + base01 = "1A1B1C"; + base02 = "28292A"; + base03 = "474849"; + base04 = "A3A5A6"; + base05 = "C1C3C4"; + base06 = "CFD1D2"; + base07 = "DDDFE0"; + base08 = "B53B50"; + base09 = "EA770D"; + base0A = "C9D364"; + base0B = "06EA61"; + base0C = "42FFF9"; + base0D = "03AEFF"; + base0E = "EA5CE2"; + base0F = "CD6320"; +} diff --git a/themes/synth-midnight-light.nix b/themes/synth-midnight-light.nix new file mode 100644 index 0000000..23d5740 --- /dev/null +++ b/themes/synth-midnight-light.nix @@ -0,0 +1,20 @@ +{ + name = "Synth Midnight Terminal Light"; + author = "Michaël Ball (http://github.com/michael-ball/)"; + base00 = "DDDFE0"; + base01 = "CFD1D2"; + base02 = "C1C3C4"; + base03 = "A3A5A6"; + base04 = "474849"; + base05 = "28292A"; + base06 = "1A1B1C"; + base07 = "050608"; + base08 = "B53B50"; + base09 = "EA770D"; + base0A = "C9D364"; + base0B = "06EA61"; + base0C = "42FFF9"; + base0D = "03AEFF"; + base0E = "EA5CE2"; + base0F = "CD6320"; +} diff --git a/themes/tango.nix b/themes/tango.nix new file mode 100644 index 0000000..e7195f2 --- /dev/null +++ b/themes/tango.nix @@ -0,0 +1,20 @@ +{ + name = "Tango"; + author = "@Schnouki; based on the Tango Desktop Project", + base00 = "2E3436"; + base01 = "8AE234"; + base02 = "FCE94F"; + base03 = "555753"; + base04 = "729FCF"; + base05 = "D3D7CF"; + base06 = "AD7FA8"; + base07 = "EEEEEC"; + base08 = "CC0000"; + base09 = "EF2929"; + base0A = "C4A000"; + base0B = "4E9A06"; + base0C = "06989A"; + base0D = "3465A4"; + base0E = "75507B"; + base0F = "34E2E2"; +} diff --git a/themes/tarot.nix b/themes/tarot.nix new file mode 100644 index 0000000..bb05989 --- /dev/null +++ b/themes/tarot.nix @@ -0,0 +1,20 @@ +{ + name = "tarot"; + author = "ed (https://codeberg.org/ed)"; + base00 = "0E091D"; + base01 = "2A153C"; + base02 = "4B2054"; + base03 = "74316B"; + base04 = "8C406F"; + base05 = "AA556F"; + base06 = "C4686D"; + base07 = "DC8F7C"; + base08 = "C53253"; + base09 = "EA4D60"; + base0A = "FF6565"; + base0B = "A68E5A"; + base0C = "8C9785"; + base0D = "6E6080"; + base0E = "A45782"; + base0F = "984D51"; +} diff --git a/themes/tender.nix b/themes/tender.nix new file mode 100644 index 0000000..5ea11fb --- /dev/null +++ b/themes/tender.nix @@ -0,0 +1,20 @@ +{ + name = "tender"; + author = "Jacobo Tabernero (https://github/com/jacoborus/tender.vim)"; + base00 = "282828"; + base01 = "383838"; + base02 = "484848"; + base03 = "4C4C4C"; + base04 = "B8B8B8"; + base05 = "EEEEEE"; + base06 = "E8E8E8"; + base07 = "FEFFFF"; + base08 = "F43753"; + base09 = "DC9656"; + base0A = "FFC24B"; + base0B = "C9D05C"; + base0C = "73CEF4"; + base0D = "B3DEEF"; + base0E = "D3B987"; + base0F = "A16946"; +} diff --git a/themes/tokyo-city-dark.nix b/themes/tokyo-city-dark.nix new file mode 100644 index 0000000..40d2e6b --- /dev/null +++ b/themes/tokyo-city-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo City Dark"; + author = "Michaël Ball"; + base00 = "171D23"; + base01 = "1D252C"; + base02 = "28323A"; + base03 = "526270"; + base04 = "B7C5D3"; + base05 = "D8E2EC"; + base06 = "F6F6F8"; + base07 = "FBFBFD"; + base08 = "F7768E"; + base09 = "FF9E64"; + base0A = "B7C5D3"; + base0B = "9ECE6A"; + base0C = "89DDFF"; + base0D = "7AA2F7"; + base0E = "BB9AF7"; + base0F = "BB9AF7"; +} diff --git a/themes/tokyo-city-light.nix b/themes/tokyo-city-light.nix new file mode 100644 index 0000000..d4cf337 --- /dev/null +++ b/themes/tokyo-city-light.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo City Light"; + author = "Michaël Ball"; + base00 = "FBFBFD"; + base01 = "F6F6F8"; + base02 = "EDEFF6"; + base03 = "9699A3"; + base04 = "4C505E"; + base05 = "343B59"; + base06 = "1D252C"; + base07 = "171D23"; + base08 = "8C4351"; + base09 = "965027"; + base0A = "4C505E"; + base0B = "485E30"; + base0C = "4C505E"; + base0D = "34548A"; + base0E = "5A4A78"; + base0F = "5A4A78"; +} diff --git a/themes/tokyo-city-terminal-dark.nix b/themes/tokyo-city-terminal-dark.nix new file mode 100644 index 0000000..4866dec --- /dev/null +++ b/themes/tokyo-city-terminal-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo City Terminal Dark"; + author = "Michaël Ball"; + base00 = "171D23"; + base01 = "1D252C"; + base02 = "28323A"; + base03 = "526270"; + base04 = "B7C5D3"; + base05 = "D8E2EC"; + base06 = "F6F6F8"; + base07 = "FBFBFD"; + base08 = "D95468"; + base09 = "FF9E64"; + base0A = "EBBF83"; + base0B = "8BD49C"; + base0C = "70E1E8"; + base0D = "539AFC"; + base0E = "B62D65"; + base0F = "DD9D82"; +} diff --git a/themes/tokyo-city-terminal-light.nix b/themes/tokyo-city-terminal-light.nix new file mode 100644 index 0000000..9c101c8 --- /dev/null +++ b/themes/tokyo-city-terminal-light.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo City Terminal Light"; + author = "Michaël Ball"; + base00 = "FBFBFD"; + base01 = "F6F6F8"; + base02 = "D8E2EC"; + base03 = "B7C5D3"; + base04 = "526270"; + base05 = "28323A"; + base06 = "1D252C"; + base07 = "171D23"; + base08 = "8C4351"; + base09 = "965027"; + base0A = "8F5E15"; + base0B = "33635C"; + base0C = "0F4B6E"; + base0D = "34548A"; + base0E = "5A4A78"; + base0F = "7E5140"; +} diff --git a/themes/tokyo-night-dark.nix b/themes/tokyo-night-dark.nix new file mode 100644 index 0000000..c526d42 --- /dev/null +++ b/themes/tokyo-night-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo Night Dark"; + author = "Michaël Ball"; + base00 = "1A1B26"; + base01 = "16161E"; + base02 = "2F3549"; + base03 = "444B6A"; + base04 = "787C99"; + base05 = "A9B1D6"; + base06 = "CBCCD1"; + base07 = "D5D6DB"; + base08 = "C0CAF5"; + base09 = "A9B1D6"; + base0A = "0DB9D7"; + base0B = "9ECE6A"; + base0C = "B4F9F8"; + base0D = "2AC3DE"; + base0E = "BB9AF7"; + base0F = "F7768E"; +} diff --git a/themes/tokyo-night-light.nix b/themes/tokyo-night-light.nix new file mode 100644 index 0000000..ca244c6 --- /dev/null +++ b/themes/tokyo-night-light.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo Night Light"; + author = "Michaël Ball"; + base00 = "D5D6DB"; + base01 = "CBCCD1"; + base02 = "DFE0E5"; + base03 = "9699A3"; + base04 = "4C505E"; + base05 = "343B59"; + base06 = "1A1B26"; + base07 = "1A1B26"; + base08 = "343B58"; + base09 = "965027"; + base0A = "166775"; + base0B = "485E30"; + base0C = "3E6968"; + base0D = "34548A"; + base0E = "5A4A78"; + base0F = "8C4351"; +} diff --git a/themes/tokyo-night-storm.nix b/themes/tokyo-night-storm.nix new file mode 100644 index 0000000..de1d92e --- /dev/null +++ b/themes/tokyo-night-storm.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo Night Storm"; + author = "Michaël Ball"; + base00 = "24283B"; + base01 = "16161E"; + base02 = "343A52"; + base03 = "444B6A"; + base04 = "787C99"; + base05 = "A9B1D6"; + base06 = "CBCCD1"; + base07 = "D5D6DB"; + base08 = "C0CAF5"; + base09 = "A9B1D6"; + base0A = "0DB9D7"; + base0B = "9ECE6A"; + base0C = "B4F9F8"; + base0D = "2AC3DE"; + base0E = "BB9AF7"; + base0F = "F7768E"; +} diff --git a/themes/tokyo-night-terminal-dark.nix b/themes/tokyo-night-terminal-dark.nix new file mode 100644 index 0000000..1e46a62 --- /dev/null +++ b/themes/tokyo-night-terminal-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo Night Terminal Dark"; + author = "Michaël Ball"; + base00 = "16161E"; + base01 = "1A1B26"; + base02 = "2F3549"; + base03 = "444B6A"; + base04 = "787C99"; + base05 = "787C99"; + base06 = "CBCCD1"; + base07 = "D5D6DB"; + base08 = "F7768E"; + base09 = "FF9E64"; + base0A = "E0AF68"; + base0B = "41A6B5"; + base0C = "7DCFFF"; + base0D = "7AA2F7"; + base0E = "BB9AF7"; + base0F = "D18616"; +} diff --git a/themes/tokyo-night-terminal-light.nix b/themes/tokyo-night-terminal-light.nix new file mode 100644 index 0000000..a7a15a9 --- /dev/null +++ b/themes/tokyo-night-terminal-light.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo Night Terminal Light"; + author = "Michaël Ball"; + base00 = "D5D6DB"; + base01 = "CBCCD1"; + base02 = "DFE0E5"; + base03 = "9699A3"; + base04 = "4C505E"; + base05 = "4C505E"; + base06 = "1A1B26"; + base07 = "1A1B26"; + base08 = "8C4351"; + base09 = "965027"; + base0A = "8F5E15"; + base0B = "33635C"; + base0C = "0F4B6E"; + base0D = "34548A"; + base0E = "5A4A78"; + base0F = "655259"; +} diff --git a/themes/tokyo-night-terminal-storm.nix b/themes/tokyo-night-terminal-storm.nix new file mode 100644 index 0000000..180cb76 --- /dev/null +++ b/themes/tokyo-night-terminal-storm.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyo Night Terminal Storm"; + author = "Michaël Ball"; + base00 = "24283B"; + base01 = "1A1B26"; + base02 = "343A52"; + base03 = "444B6A"; + base04 = "787C99"; + base05 = "787C99"; + base06 = "CBCCD1"; + base07 = "D5D6DB"; + base08 = "F7768E"; + base09 = "FF9E64"; + base0A = "E0AF68"; + base0B = "41A6B5"; + base0C = "7DCFFF"; + base0D = "7AA2F7"; + base0E = "BB9AF7"; + base0F = "D18616"; +} diff --git a/themes/tokyodark-terminal.nix b/themes/tokyodark-terminal.nix new file mode 100644 index 0000000..d5e9924 --- /dev/null +++ b/themes/tokyodark-terminal.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyodark Terminal"; + author = "Tiagovla (https://github.com/tiagovla/)"; + base00 = "11121D"; + base01 = "1A1B2A"; + base02 = "212234"; + base03 = "282C34"; + base04 = "4A5057"; + base05 = "A0A8CD"; + base06 = "A0A8CD"; + base07 = "A0A8CD"; + base08 = "EE6D85"; + base09 = "F6955B"; + base0A = "D7A65F"; + base0B = "95C561"; + base0C = "38A89D"; + base0D = "7199EE"; + base0E = "A485DD"; + base0F = "773440"; +} diff --git a/themes/tokyodark.nix b/themes/tokyodark.nix new file mode 100644 index 0000000..44838c1 --- /dev/null +++ b/themes/tokyodark.nix @@ -0,0 +1,20 @@ +{ + name = "Tokyodark"; + author = "Tiagovla (https://github.com/tiagovla/)"; + base00 = "11121D"; + base01 = "151621"; + base02 = "43444F"; + base03 = "393A45"; + base04 = "1B1C27"; + base05 = "ABB2BF"; + base06 = "555661"; + base07 = "2C2D38"; + base08 = "A485DD"; + base09 = "A485DD"; + base0A = "7199EE"; + base0B = "D7A65F"; + base0C = "A485DD"; + base0D = "95C561"; + base0E = "EE6D85"; + base0F = "773440"; +} diff --git a/themes/tomorrow-night-eighties.nix b/themes/tomorrow-night-eighties.nix new file mode 100644 index 0000000..dbb230e --- /dev/null +++ b/themes/tomorrow-night-eighties.nix @@ -0,0 +1,20 @@ +{ + name = "Tomorrow Night Eighties"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "2D2D2D"; + base01 = "393939"; + base02 = "515151"; + base03 = "999999"; + base04 = "B4B7B4"; + base05 = "CCCCCC"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "F2777A"; + base09 = "F99157"; + base0A = "FFCC66"; + base0B = "99CC99"; + base0C = "66CCCC"; + base0D = "6699CC"; + base0E = "CC99CC"; + base0F = "A3685A"; +} diff --git a/themes/tomorrow-night.nix b/themes/tomorrow-night.nix new file mode 100644 index 0000000..47de0e7 --- /dev/null +++ b/themes/tomorrow-night.nix @@ -0,0 +1,20 @@ +{ + name = "Tomorrow Night"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "1D1F21"; + base01 = "282A2E"; + base02 = "373B41"; + base03 = "969896"; + base04 = "B4B7B4"; + base05 = "C5C8C6"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "CC6666"; + base09 = "DE935F"; + base0A = "F0C674"; + base0B = "B5BD68"; + base0C = "8ABEB7"; + base0D = "81A2BE"; + base0E = "B294BB"; + base0F = "A3685A"; +} diff --git a/themes/tomorrow.nix b/themes/tomorrow.nix new file mode 100644 index 0000000..5e1cb8a --- /dev/null +++ b/themes/tomorrow.nix @@ -0,0 +1,20 @@ +{ + name = "Tomorrow"; + author = "Chris Kempson (http://chriskempson.com)"; + base00 = "FFFFFF"; + base01 = "E0E0E0"; + base02 = "D6D6D6"; + base03 = "8E908C"; + base04 = "969896"; + base05 = "4D4D4C"; + base06 = "282A2E"; + base07 = "1D1F21"; + base08 = "C82829"; + base09 = "F5871F"; + base0A = "EAB700"; + base0B = "718C00"; + base0C = "3E999F"; + base0D = "4271AE"; + base0E = "8959A8"; + base0F = "A3685A"; +} diff --git a/themes/tube.nix b/themes/tube.nix new file mode 100644 index 0000000..1c9d24c --- /dev/null +++ b/themes/tube.nix @@ -0,0 +1,20 @@ +{ + name = "London Tube"; + author = "Jan T. Sott"; + base00 = "231F20"; + base01 = "1C3F95"; + base02 = "5A5758"; + base03 = "737171"; + base04 = "959CA1"; + base05 = "D9D8D8"; + base06 = "E7E7E8"; + base07 = "FFFFFF"; + base08 = "EE2E24"; + base09 = "F386A1"; + base0A = "FFD204"; + base0B = "00853E"; + base0C = "85CEBC"; + base0D = "009DDC"; + base0E = "98005D"; + base0F = "B06110"; +} diff --git a/themes/twilight.nix b/themes/twilight.nix new file mode 100644 index 0000000..529c4d9 --- /dev/null +++ b/themes/twilight.nix @@ -0,0 +1,20 @@ +{ + name = "Twilight"; + author = "David Hart (https://github.com/hartbit)"; + base00 = "1E1E1E"; + base01 = "323537"; + base02 = "464B50"; + base03 = "5F5A60"; + base04 = "838184"; + base05 = "A7A7A7"; + base06 = "C3C3C3"; + base07 = "FFFFFF"; + base08 = "CF6A4C"; + base09 = "CDA869"; + base0A = "F9EE98"; + base0B = "8F9D6A"; + base0C = "AFC4DB"; + base0D = "7587A6"; + base0E = "9B859D"; + base0F = "9B703F"; +} diff --git a/themes/unikitty-dark.nix b/themes/unikitty-dark.nix new file mode 100644 index 0000000..e219126 --- /dev/null +++ b/themes/unikitty-dark.nix @@ -0,0 +1,20 @@ +{ + name = "Unikitty Dark"; + author = "Josh W Lewis (@joshwlewis)"; + base00 = "2E2A31"; + base01 = "4A464D"; + base02 = "666369"; + base03 = "838085"; + base04 = "9F9DA2"; + base05 = "BCBABE"; + base06 = "D8D7DA"; + base07 = "F5F4F7"; + base08 = "D8137F"; + base09 = "D65407"; + base0A = "DC8A0E"; + base0B = "17AD98"; + base0C = "149BDA"; + base0D = "796AF5"; + base0E = "BB60EA"; + base0F = "C720CA"; +} diff --git a/themes/unikitty-light.nix b/themes/unikitty-light.nix new file mode 100644 index 0000000..566c5fa --- /dev/null +++ b/themes/unikitty-light.nix @@ -0,0 +1,20 @@ +{ + name = "Unikitty Light"; + author = "Josh W Lewis (@joshwlewis)"; + base00 = "FFFFFF"; + base01 = "E1E1E2"; + base02 = "C4C3C5"; + base03 = "A7A5A8"; + base04 = "89878B"; + base05 = "6C696E"; + base06 = "4F4B51"; + base07 = "322D34"; + base08 = "D8137F"; + base09 = "D65407"; + base0A = "DC8A0E"; + base0B = "17AD98"; + base0C = "149BDA"; + base0D = "775DFF"; + base0E = "AA17E6"; + base0F = "E013D0"; +} diff --git a/themes/unikitty-reversible.nix b/themes/unikitty-reversible.nix new file mode 100644 index 0000000..d113c92 --- /dev/null +++ b/themes/unikitty-reversible.nix @@ -0,0 +1,20 @@ +{ + name = "Unikitty Reversible"; + author = "Josh W Lewis (@joshwlewis)"; + base00 = "2E2A31"; + base01 = "4B484E"; + base02 = "69666B"; + base03 = "878589"; + base04 = "A5A3A6"; + base05 = "C3C2C4"; + base06 = "E1E0E1"; + base07 = "FFFFFF"; + base08 = "D8137F"; + base09 = "D65407"; + base0A = "DC8A0E"; + base0B = "17AD98"; + base0C = "149BDA"; + base0D = "7864FA"; + base0E = "B33CE8"; + base0F = "D41ACD"; +} diff --git a/themes/uwunicorn.nix b/themes/uwunicorn.nix new file mode 100644 index 0000000..6ca33b2 --- /dev/null +++ b/themes/uwunicorn.nix @@ -0,0 +1,20 @@ +{ + name = "UwUnicorn"; + author = "Fernando Marques (https://github.com/RakkiUwU) and Gabriel Fontes (https://github.com/Misterio77)"; + base00 = "241B26"; + base01 = "2F2A3F"; + base02 = "46354A"; + base03 = "6C3CB2"; + base04 = "7E5F83"; + base05 = "EED5D9"; + base06 = "D9C2C6"; + base07 = "E4CCD0"; + base08 = "877BB6"; + base09 = "DE5B44"; + base0A = "A84A73"; + base0B = "C965BF"; + base0C = "9C5FCE"; + base0D = "6A9EB5"; + base0E = "78A38F"; + base0F = "A3A079"; +} diff --git a/themes/vice.nix b/themes/vice.nix new file mode 100644 index 0000000..dd7e559 --- /dev/null +++ b/themes/vice.nix @@ -0,0 +1,20 @@ +{ + name = "vice"; + author = "Thomas Leon Highbaugh thighbaugh@zoho.com"; + base00 = "17191E"; + base01 = "22262D"; + base02 = "3C3F4C"; + base03 = "383A47"; + base04 = "555E70"; + base05 = "8B9CBE"; + base06 = "B2BFD9"; + base07 = "F4F4F7"; + base08 = "FF29A8"; + base09 = "85FFE0"; + base0A = "F0FFAA"; + base0B = "0BADFF"; + base0C = "8265FF"; + base0D = "00EAFF"; + base0E = "00F6D9"; + base0F = "FF3D81"; +} diff --git a/themes/vulcan.nix b/themes/vulcan.nix new file mode 100644 index 0000000..e7a6e73 --- /dev/null +++ b/themes/vulcan.nix @@ -0,0 +1,20 @@ +{ + name = "vulcan"; + author = "Andrey Varfolomeev"; + base00 = "041523"; + base01 = "122339"; + base02 = "003552"; + base03 = "7A5759"; + base04 = "6B6977"; + base05 = "5B778C"; + base06 = "333238"; + base07 = "214D68"; + base08 = "818591"; + base09 = "9198A3"; + base0A = "ADB4B9"; + base0B = "977D7C"; + base0C = "977D7C"; + base0D = "977D7C"; + base0E = "9198A3"; + base0F = "977D7C"; +} diff --git a/themes/windows-10-light.nix b/themes/windows-10-light.nix new file mode 100644 index 0000000..6409a3b --- /dev/null +++ b/themes/windows-10-light.nix @@ -0,0 +1,20 @@ +{ + name = "Windows 10 Light"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "F2F2F2"; + base01 = "E5E5E5"; + base02 = "D9D9D9"; + base03 = "CCCCCC"; + base04 = "ABABAB"; + base05 = "767676"; + base06 = "414141"; + base07 = "0C0C0C"; + base08 = "C50F1F"; + base09 = "F9F1A5"; + base0A = "C19C00"; + base0B = "13A10E"; + base0C = "3A96DD"; + base0D = "0037DA"; + base0E = "881798"; + base0F = "16C60C"; +} diff --git a/themes/windows-10.nix b/themes/windows-10.nix new file mode 100644 index 0000000..7cce7f3 --- /dev/null +++ b/themes/windows-10.nix @@ -0,0 +1,20 @@ +{ + name = "Windows 10"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "0C0C0C"; + base01 = "2F2F2F"; + base02 = "535353"; + base03 = "767676"; + base04 = "B9B9B9"; + base05 = "CCCCCC"; + base06 = "DFDFDF"; + base07 = "F2F2F2"; + base08 = "E74856"; + base09 = "C19C00"; + base0A = "F9F1A5"; + base0B = "16C60C"; + base0C = "61D6D6"; + base0D = "3B78FF"; + base0E = "B4009E"; + base0F = "13A10E"; +} diff --git a/themes/windows-95-light.nix b/themes/windows-95-light.nix new file mode 100644 index 0000000..dd30dd8 --- /dev/null +++ b/themes/windows-95-light.nix @@ -0,0 +1,20 @@ +{ + name = "Windows 95 Light"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "FCFCFC"; + base01 = "E0E0E0"; + base02 = "C4C4C4"; + base03 = "A8A8A8"; + base04 = "7E7E7E"; + base05 = "545454"; + base06 = "2A2A2A"; + base07 = "000000"; + base08 = "A80000"; + base09 = "FCFC54"; + base0A = "A85400"; + base0B = "00A800"; + base0C = "00A8A8"; + base0D = "0000A8"; + base0E = "A800A8"; + base0F = "54FC54"; +} diff --git a/themes/windows-95.nix b/themes/windows-95.nix new file mode 100644 index 0000000..1a63976 --- /dev/null +++ b/themes/windows-95.nix @@ -0,0 +1,20 @@ +{ + name = "Windows 95"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "000000"; + base01 = "1C1C1C"; + base02 = "383838"; + base03 = "545454"; + base04 = "7E7E7E"; + base05 = "A8A8A8"; + base06 = "D2D2D2"; + base07 = "FCFCFC"; + base08 = "FC5454"; + base09 = "A85400"; + base0A = "FCFC54"; + base0B = "54FC54"; + base0C = "54FCFC"; + base0D = "5454FC"; + base0E = "FC54FC"; + base0F = "00A800"; +} diff --git a/themes/windows-highcontrast-light.nix b/themes/windows-highcontrast-light.nix new file mode 100644 index 0000000..10da6a5 --- /dev/null +++ b/themes/windows-highcontrast-light.nix @@ -0,0 +1,20 @@ +{ + name = "Windows High Contrast Light"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "FCFCFC"; + base01 = "E8E8E8"; + base02 = "D4D4D4"; + base03 = "C0C0C0"; + base04 = "7E7E7E"; + base05 = "545454"; + base06 = "2A2A2A"; + base07 = "000000"; + base08 = "800000"; + base09 = "FCFC54"; + base0A = "808000"; + base0B = "008000"; + base0C = "008080"; + base0D = "000080"; + base0E = "800080"; + base0F = "54FC54"; +} diff --git a/themes/windows-highcontrast.nix b/themes/windows-highcontrast.nix new file mode 100644 index 0000000..fa4d45d --- /dev/null +++ b/themes/windows-highcontrast.nix @@ -0,0 +1,20 @@ +{ + name = "Windows High Contrast"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "000000"; + base01 = "1C1C1C"; + base02 = "383838"; + base03 = "545454"; + base04 = "A2A2A2"; + base05 = "C0C0C0"; + base06 = "DEDEDE"; + base07 = "FCFCFC"; + base08 = "FC5454"; + base09 = "808000"; + base0A = "FCFC54"; + base0B = "54FC54"; + base0C = "54FCFC"; + base0D = "5454FC"; + base0E = "FC54FC"; + base0F = "008000"; +} diff --git a/themes/windows-nt-light.nix b/themes/windows-nt-light.nix new file mode 100644 index 0000000..a36a5ee --- /dev/null +++ b/themes/windows-nt-light.nix @@ -0,0 +1,20 @@ +{ + name = "Windows NT Light"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "FFFFFF"; + base01 = "EAEAEA"; + base02 = "D5D5D5"; + base03 = "C0C0C0"; + base04 = "A0A0A0"; + base05 = "808080"; + base06 = "404040"; + base07 = "000000"; + base08 = "800000"; + base09 = "FFFF00"; + base0A = "808000"; + base0B = "008000"; + base0C = "008080"; + base0D = "000080"; + base0E = "800080"; + base0F = "00FF00"; +} diff --git a/themes/windows-nt.nix b/themes/windows-nt.nix new file mode 100644 index 0000000..e1bc486 --- /dev/null +++ b/themes/windows-nt.nix @@ -0,0 +1,20 @@ +{ + name = "Windows NT"; + author = "Fergus Collins (https://github.com/C-Fergus)"; + base00 = "000000"; + base01 = "2A2A2A"; + base02 = "555555"; + base03 = "808080"; + base04 = "A1A1A1"; + base05 = "C0C0C0"; + base06 = "E0E0E0"; + base07 = "FFFFFF"; + base08 = "FF0000"; + base09 = "808000"; + base0A = "FFFF00"; + base0B = "00FF00"; + base0C = "00FFFF"; + base0D = "0000FF"; + base0E = "FF00FF"; + base0F = "008000"; +} diff --git a/themes/woodland.nix b/themes/woodland.nix new file mode 100644 index 0000000..d60cce8 --- /dev/null +++ b/themes/woodland.nix @@ -0,0 +1,20 @@ +{ + name = "Woodland"; + author = "Jay Cornwall (https://jcornwall.com)"; + base00 = "231E18"; + base01 = "302B25"; + base02 = "48413A"; + base03 = "9D8B70"; + base04 = "B4A490"; + base05 = "CABCB1"; + base06 = "D7C8BC"; + base07 = "E4D4C8"; + base08 = "D35C5C"; + base09 = "CA7F32"; + base0A = "E0AC16"; + base0B = "B7BA53"; + base0C = "6EB958"; + base0D = "88A4D3"; + base0E = "BB90E2"; + base0F = "B49368"; +} diff --git a/themes/xcode-dusk.nix b/themes/xcode-dusk.nix new file mode 100644 index 0000000..797498c --- /dev/null +++ b/themes/xcode-dusk.nix @@ -0,0 +1,20 @@ +{ + name = "XCode Dusk"; + author = "Elsa Gonsiorowski (https://github.com/gonsie)"; + base00 = "282B35"; + base01 = "3D4048"; + base02 = "53555D"; + base03 = "686A71"; + base04 = "7E8086"; + base05 = "939599"; + base06 = "A9AAAE"; + base07 = "BEBFC2"; + base08 = "B21889"; + base09 = "786DC5"; + base0A = "438288"; + base0B = "DF0002"; + base0C = "00A0BE"; + base0D = "790EAD"; + base0E = "B21889"; + base0F = "C77C48"; +} diff --git a/themes/zenbones.nix b/themes/zenbones.nix new file mode 100644 index 0000000..7eddc27 --- /dev/null +++ b/themes/zenbones.nix @@ -0,0 +1,20 @@ +{ + name = "Zenbones"; + author = "mcchrish"; + base00 = "191919"; + base01 = "DE6E7C"; + base02 = "819B69"; + base03 = "B77E64"; + base04 = "6099C0"; + base05 = "B279A7"; + base06 = "66A5AD"; + base07 = "BBBBBB"; + base08 = "3D3839"; + base09 = "E8838F"; + base0A = "8BAE68"; + base0B = "D68C67"; + base0C = "61ABDA"; + base0D = "CF86C1"; + base0E = "65B8C1"; + base0F = "8E8E8E"; +} diff --git a/themes/zenburn.nix b/themes/zenburn.nix new file mode 100644 index 0000000..7c321e5 --- /dev/null +++ b/themes/zenburn.nix @@ -0,0 +1,20 @@ +{ + name = "Zenburn"; + author = "elnawe"; + base00 = "383838"; + base01 = "404040"; + base02 = "606060"; + base03 = "6F6F6F"; + base04 = "808080"; + base05 = "DCDCCC"; + base06 = "C0C0C0"; + base07 = "FFFFFF"; + base08 = "DCA3A3"; + base09 = "DFAF8F"; + base0A = "E0CF9F"; + base0B = "5F7F5F"; + base0C = "93E0E3"; + base0D = "7CB8BB"; + base0E = "DC8CC3"; + base0F = "000000"; +}