This commit is contained in:
2024-02-27 13:55:59 -07:00
parent 8bef0233ba
commit 33df980fa6
36 changed files with 586 additions and 241 deletions

View File

@@ -1,7 +1,7 @@
# Kaolin-dark scheme by alternateved (http://github.com/alternateved)
# Inspired by (https://github.com/ogdenwebb/emacs-kaolin-themes)
{ config, ... }: {
{ config, lib, ... }: {
custom.colors = {
base00 = "#18181B";
base01 = "#222225";
@@ -21,7 +21,7 @@
base0F = "#E36D5B";
};
custom.colors.kitty.enable = false;
# custom.colors.kitty.enable = false;
programs.kitty.settings = with config.custom.colors; {
## name: Kaolin Dark
## author: Ogden Webb
@@ -30,15 +30,16 @@
# The basic colors
foreground = base07;
background = "#000000";
# background = base00;
# background = "#000000";
background = base00;
selection_foreground = base00;
selection_background = base07;
# Cursor colors
cursor = base07;
cursor_text_color = "#ffffff";
# cursor_text_color = "#ffffff";
cursor_text_color = base00;
# kitty window border colors
active_border_color = base0C;