-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.nix
40 lines (38 loc) · 1.12 KB
/
theme.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
font = {
family = "Iosevka Nerd Font";
regularStyle = "Regular";
boldStyle = "Bold";
italicStyle = "Italic";
boldItalicStyle = "Bold Italic";
# INFO: The size is handled by each application independently
};
colors = {
bg_dim = "#232A2E"; # Dimmed background
bg0 = "#2D353B"; # Default background
bg1 = "#343F44"; # Cursor line background, lighter
bg2 = "#3D484D"; # Cursor line background, lighter still
bg3 = "#475258"; # Popup menu background, even lighter
bg4 = "#4F585E"; # Window split seperator, lighter still
bg5 = "#56635f"; # Lighter
bg_visual = "#543A48"; # Visual selection
bg_red = "#514045"; # Error
bg_green = "#425047"; # Hints
bg_blue = "#3A515D"; # Info
bg_yellow = "#4D4C43"; # Warning
fg = "#D3C6AA"; # Default foreground
red = "#E67E80";
orange = "#E69875";
yellow = "#DBBC7F";
green = "#A7C080";
aqua = "#83C092";
blue = "#7FBBB3";
purple = "#D699B6";
grey0 = "#7A8478";
grey1 = "#859289";
grey2 = "#9DA9A0";
statusline1 = "#A7C080";
statusline2 = "#D3C6AA";
statusline3 = "#E67E80";
};
}