mirror of
https://git.sr.ht/~rouven/nixos-config
synced 2025-04-25 16:08:30 +02:00
started to configure colors
This commit is contained in:
parent
bc562bc58d
commit
3a2d061875
3 changed files with 90 additions and 58 deletions
|
@ -1,4 +1,4 @@
|
|||
{ config, pkgs, ... }:
|
||||
{ config, pkgs, nix-colors, ... }:
|
||||
{
|
||||
programs.alacritty = {
|
||||
enable = true;
|
||||
|
@ -14,8 +14,8 @@
|
|||
|
||||
colors = {
|
||||
primary = {
|
||||
background = "#282a36";
|
||||
foreground = "#f8f8f2";
|
||||
background = "#${config.colorScheme.colors.base00}";
|
||||
foreground = "#${config.colorScheme.colors.base05}";
|
||||
};
|
||||
cursor = {
|
||||
text = "CellBackground";
|
||||
|
@ -25,57 +25,33 @@
|
|||
text = "CellBackground";
|
||||
cursor = "CellForeground";
|
||||
};
|
||||
search = {
|
||||
matches = {
|
||||
foreground = "#44475a";
|
||||
background = "#50fa7b";
|
||||
};
|
||||
focused_match = {
|
||||
foreground = "#44475a";
|
||||
background = "#ffb86c";
|
||||
};
|
||||
footer_bar = {
|
||||
background = "#282a36";
|
||||
foreground = "#f8f8f2";
|
||||
};
|
||||
};
|
||||
line_indicator = {
|
||||
foreground = null;
|
||||
background = null;
|
||||
};
|
||||
#search = {
|
||||
#matches = {
|
||||
#foreground = "#44475a";
|
||||
#background = "#50fa7b";
|
||||
#};
|
||||
#focused_match = {
|
||||
#foreground = "#44475a";
|
||||
#background = "#ffb86c";
|
||||
#};
|
||||
#footer_bar = {
|
||||
#background = "#282a36";
|
||||
#foreground = "#f8f8f2";
|
||||
#};
|
||||
#};
|
||||
selection = {
|
||||
text = "CellForeground";
|
||||
background = "#44475a";
|
||||
background = "#${config.colorScheme.colors.base03}";
|
||||
};
|
||||
normal = {
|
||||
black = "#21222c";
|
||||
red = "#ff5555";
|
||||
green = "#50fa7b";
|
||||
yellow = "#f1fa8c";
|
||||
blue = "#bd93f9";
|
||||
magenta = "#ff79c6";
|
||||
cyan = "#8be9fd";
|
||||
white = "#bfbfbf";
|
||||
};
|
||||
bright = {
|
||||
black = "#4d4d4d";
|
||||
red = "#ff6e67";
|
||||
green = "#5af78e";
|
||||
yellow = "#f4f99d";
|
||||
blue = "#caa9fa";
|
||||
magenta = "#ff92d0";
|
||||
cyan = "#9aedfe";
|
||||
white = "#e6e6e6";
|
||||
};
|
||||
dim = {
|
||||
black = "#14151b";
|
||||
red = "#ff2222";
|
||||
green = "#1ef956";
|
||||
yellow = "#ebf85b";
|
||||
blue = "#4d5b86";
|
||||
magenta = "#ff46b0";
|
||||
cyan = "#59dffc";
|
||||
white = "#e6e6d1";
|
||||
black = "#${config.colorScheme.colors.base01}";
|
||||
red = "#${config.colorScheme.colors.base08}";
|
||||
green = "#${config.colorScheme.colors.base0A}";
|
||||
yellow = "#${config.colorScheme.colors.base0B}";
|
||||
blue = "#${config.colorScheme.colors.base0D}";
|
||||
magenta = "#${config.colorScheme.colors.base0E}";
|
||||
cyan = "#${config.colorScheme.colors.base0C}";
|
||||
white = "#${config.colorScheme.colors.base05}";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue