mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 12:29:19 -08:00
Trying out the nord color scheme.
Might migrate away pretty soon, not sure yet.
This commit is contained in:
parent
7e4b442fd9
commit
e47f7f8905
4 changed files with 25 additions and 24 deletions
|
|
@ -1,22 +1,22 @@
|
||||||
rec {
|
rec {
|
||||||
base16 = {
|
base16 = {
|
||||||
color0 = "#292a44";
|
color0 = "#2e3440";
|
||||||
color1 = "#a0a0c5";
|
color1 = "#bf616a";
|
||||||
color2 = "#6dfedf";
|
color2 = "#a3be8c";
|
||||||
color3 = "#ae81ff";
|
color3 = "#ebcb8b";
|
||||||
color4 = "#2de0a7";
|
color4 = "#81a1c1";
|
||||||
color5 = "#7aa5ff";
|
color5 = "#b48ead";
|
||||||
color6 = "#8eaee0";
|
color6 = "#88c0d0";
|
||||||
color7 = "#f1eff8";
|
color7 = "#e5e9f0";
|
||||||
|
|
||||||
color8 = "#666699";
|
color8 = "#4c566a";
|
||||||
color9 = "#efe4a1";
|
color9 = "#d08770";
|
||||||
color10 = "#663399";
|
color10 = "#3b4252";
|
||||||
color11 = "#383a62";
|
color11 = "#434c5e";
|
||||||
color12 = "#a0a0c5";
|
color12 = "#d8dee9";
|
||||||
color13 = "#ccccff";
|
color13 = "#eceff4";
|
||||||
color14 = "#ff79c6";
|
color14 = "#5e81ac";
|
||||||
color15 = "#53495d";
|
color15 = "#8fbcbb";
|
||||||
|
|
||||||
color16 = "#fd971f";
|
color16 = "#fd971f";
|
||||||
color17 = "#cc6633";
|
color17 = "#cc6633";
|
||||||
|
|
|
||||||
|
|
@ -218,7 +218,7 @@ in {
|
||||||
colors = {
|
colors = {
|
||||||
focused = {
|
focused = {
|
||||||
border = colors.bright.black;
|
border = colors.bright.black;
|
||||||
background = colors.yellow;
|
background = colors.base16.color4;
|
||||||
text = colors.black;
|
text = colors.black;
|
||||||
indicator = colors.green;
|
indicator = colors.green;
|
||||||
childBorder = colors.bright.black;
|
childBorder = colors.bright.black;
|
||||||
|
|
@ -232,8 +232,8 @@ in {
|
||||||
};
|
};
|
||||||
unfocused = {
|
unfocused = {
|
||||||
border = colors.bright.black;
|
border = colors.bright.black;
|
||||||
background = colors.black;
|
background = colors.base16.color8;
|
||||||
text = colors.bright.black;
|
text = colors.base16.color12;
|
||||||
indicator = colors.bright.black;
|
indicator = colors.bright.black;
|
||||||
childBorder = colors.bright.black;
|
childBorder = colors.bright.black;
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -42,16 +42,16 @@
|
||||||
#workspaces button:last-child { margin-right: 0px }
|
#workspaces button:last-child { margin-right: 0px }
|
||||||
|
|
||||||
#workspaces button.focused {
|
#workspaces button.focused {
|
||||||
color: ${colors.base16.color1};
|
color: ${colors.base16.color5};
|
||||||
border-bottom-color: ${colors.base16.color1}
|
border-bottom-color: ${colors.base16.color5}
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button:hover {
|
#workspaces button:hover {
|
||||||
transition: none;
|
transition: none;
|
||||||
box-shadow: inherit;
|
box-shadow: inherit;
|
||||||
text-shadow: inherit;
|
text-shadow: inherit;
|
||||||
color: ${colors.base16.color3};
|
color: ${colors.base16.color2};
|
||||||
border-bottom-color: ${colors.base16.color3}
|
border-bottom-color: ${colors.base16.color2}
|
||||||
}
|
}
|
||||||
|
|
||||||
#mpd { border-color: #5af78e }
|
#mpd { border-color: #5af78e }
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,8 @@
|
||||||
;; There are two ways to load a theme. Both assume the theme is installed and
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||||
;; `load-theme' function. This is the default:
|
;; `load-theme' function. This is the default:
|
||||||
(setq doom-theme 'doom-one)
|
|
||||||
|
(setq doom-theme 'doom-nord)
|
||||||
|
|
||||||
;; If you use `org' and don't want your org files in the default location below,
|
;; If you use `org' and don't want your org files in the default location below,
|
||||||
;; change `org-directory'. It must be set before org loads!
|
;; change `org-directory'. It must be set before org loads!
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue