diff --git a/theming/colorScheme.icy b/theming/colorScheme.icy new file mode 100644 index 0000000..0f48ae7 --- /dev/null +++ b/theming/colorScheme.icy @@ -0,0 +1,25 @@ +{ + colorScheme = { + slug = "icy"; + name = "Icy Dark"; + author = "icyphox.ga"; + palette = { + base00 = "#021012"; # Default Background + base01 = "#031619"; # Lighter Background (Used for status bars, line number and folding marks) + base02 = "#041f23"; # Selection Background + base03 = "#052e34"; # Comments, Invisibles, Line Highlighting + base04 = "#064048"; # Dark Foreground (Used for status bars) + base05 = "#095b67"; # Default Foreground, Caret, Delimiters, Operators + base06 = "#0c7c8c"; # Light Foreground (Not often used) + base07 = "#109cb0"; # Light Background (Not often used) + base08 = "#16c1d9"; # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted + base09 = "#b3ebf2"; # Integers, Boolean, Constants, XML Attributes, Markup Link Url + base0A = "#80deea"; # Classes, Markup Bold, Search Text Background + base0B = "#4dd0e1"; # Strings, Inherited Class, Markup Code, Diff Inserted + base0C = "#26c6da"; # Support, Regular Expressions, Escape Characters, Markup Quotes + base0D = "#00bcd4"; # Functions, Methods, Attribute IDs, Headings + base0E = "#00acc1"; # Keywords, Storage, Selector, Markup Italic, Diff Changed + base0F = "#0097a7"; # Deprecated, Opening/Closing Embedded Language Tags, e.g. + }; + }; +} diff --git a/theming/colorScheme.nix b/theming/colorScheme.nix index 0f48ae7..ced78c1 100644 --- a/theming/colorScheme.nix +++ b/theming/colorScheme.nix @@ -1,25 +1,25 @@ { colorScheme = { - slug = "icy"; - name = "Icy Dark"; - author = "icyphox.ga"; + slug = "red"; + name = "Hermit Red"; + author = "@hertog@tech.lgbt"; palette = { - base00 = "#021012"; # Default Background - base01 = "#031619"; # Lighter Background (Used for status bars, line number and folding marks) - base02 = "#041f23"; # Selection Background - base03 = "#052e34"; # Comments, Invisibles, Line Highlighting - base04 = "#064048"; # Dark Foreground (Used for status bars) - base05 = "#095b67"; # Default Foreground, Caret, Delimiters, Operators - base06 = "#0c7c8c"; # Light Foreground (Not often used) - base07 = "#109cb0"; # Light Background (Not often used) - base08 = "#16c1d9"; # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted - base09 = "#b3ebf2"; # Integers, Boolean, Constants, XML Attributes, Markup Link Url - base0A = "#80deea"; # Classes, Markup Bold, Search Text Background - base0B = "#4dd0e1"; # Strings, Inherited Class, Markup Code, Diff Inserted - base0C = "#26c6da"; # Support, Regular Expressions, Escape Characters, Markup Quotes - base0D = "#00bcd4"; # Functions, Methods, Attribute IDs, Headings - base0E = "#00acc1"; # Keywords, Storage, Selector, Markup Italic, Diff Changed - base0F = "#0097a7"; # Deprecated, Opening/Closing Embedded Language Tags, e.g. + base00 = "#120002"; # Default Background + base01 = "#190003"; # Lighter Background (Used for status bars, line number and folding marks) + base02 = "#230004"; # Selection Background + base03 = "#340005"; # Comments, Invisibles, Line Highlighting + base04 = "#480006"; # Dark Foreground (Used for status bars) + base05 = "#670009"; # Default Foreground, Caret, Delimiters, Operators + base06 = "#8C000C"; # Light Foreground (Not often used) + base07 = "#B00010"; # Light Background (Not often used) + base08 = "#D90016"; # Variables, XML Tags, Markup Link Text, Markup Lists, Diff Deleted + base09 = "#F2B3B3"; # Integers, Boolean, Constants, XML Attributes, Markup Link Url + base0A = "#EA8080"; # Classes, Markup Bold, Search Text Background + base0B = "#E14D4D"; # Strings, Inherited Class, Markup Code, Diff Inserted + base0C = "#DA0026"; # Support, Regular Expressions, Escape Characters, Markup Quotes + base0D = "#D40000"; # Functions, Methods, Attribute IDs, Headings + base0E = "#C10000"; # Keywords, Storage, Selector, Markup Italic, Diff Changed + base0F = "#A70000"; # Deprecated, Opening/Closing Embedded Language Tags, e.g. }; }; }