mirror of
https://github.com/nmasur/dotfiles
synced 2025-07-05 15:00:14 +00:00
experiment with themes and colors
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
{ pkgs, identity, gui, ... }: {
|
||||
{ config, pkgs, identity, gui, ... }: {
|
||||
|
||||
home-manager.users.${identity.user} = {
|
||||
xsession.windowManager.i3.config.terminal = "alacritty";
|
||||
@ -14,7 +14,7 @@
|
||||
x = 20;
|
||||
y = 20;
|
||||
};
|
||||
opacity = 0.7;
|
||||
opacity = config.theme.opacity;
|
||||
};
|
||||
scrolling.history = 10000;
|
||||
font = {
|
||||
@ -39,36 +39,37 @@
|
||||
action = "ToggleViMode";
|
||||
}
|
||||
];
|
||||
colors = {
|
||||
primary = {
|
||||
background = "#282828";
|
||||
foreground = "#d5c4a1";
|
||||
};
|
||||
cursor = {
|
||||
text = "#1d2021";
|
||||
cursor = "#d5c4a1";
|
||||
};
|
||||
normal = {
|
||||
black = "#1d2021";
|
||||
red = "#fb4934";
|
||||
green = "#b8bb26";
|
||||
yellow = "#fabd2f";
|
||||
blue = "#83a598";
|
||||
magenta = "#d3869b";
|
||||
cyan = "#8ec07c";
|
||||
white = "#d5c4a1";
|
||||
};
|
||||
bright = {
|
||||
black = "#665c54";
|
||||
red = "#fe8019";
|
||||
green = "#3c3836";
|
||||
yellow = "#504945";
|
||||
blue = "#bdae93";
|
||||
magenta = "#ebdbb2";
|
||||
cyan = "#d65d0e";
|
||||
white = "#fbf1c7";
|
||||
};
|
||||
};
|
||||
colors = config.theme.colors;
|
||||
# colors = {
|
||||
# primary = {
|
||||
# background = "#282828";
|
||||
# foreground = "#d5c4a1";
|
||||
# };
|
||||
# cursor = {
|
||||
# text = "#1d2021";
|
||||
# cursor = "#d5c4a1";
|
||||
# };
|
||||
# normal = {
|
||||
# black = "#1d2021";
|
||||
# red = "#fb4934";
|
||||
# green = "#b8bb26";
|
||||
# yellow = "#fabd2f";
|
||||
# blue = "#83a598";
|
||||
# magenta = "#d3869b";
|
||||
# cyan = "#8ec07c";
|
||||
# white = "#d5c4a1";
|
||||
# };
|
||||
# bright = {
|
||||
# black = "#665c54";
|
||||
# red = "#fe8019";
|
||||
# green = "#3c3836";
|
||||
# yellow = "#504945";
|
||||
# blue = "#bdae93";
|
||||
# magenta = "#ebdbb2";
|
||||
# cyan = "#d65d0e";
|
||||
# white = "#fbf1c7";
|
||||
# };
|
||||
# };
|
||||
draw_bold_text_with_bright_colors = false;
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user