summary refs log tree commit diff
path: root/.config/alacritty/papercolor_dark.color.yml
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-12-07 19:17:57 +0100
committerRobert Günzler <r@gnzler.io>2021-01-21 19:39:11 +0100
commit5836abb773b2b5e32ea4c1d2469ab0503bd50083 (patch)
treea100357213b5927a0759b48b66d8025a72812823 /.config/alacritty/papercolor_dark.color.yml
parent04db98668639cb0b431d50e5963f6b156d728078 (diff)
alacritty: use yaml references more in colorscheme
Diffstat (limited to '.config/alacritty/papercolor_dark.color.yml')
-rw-r--r--.config/alacritty/papercolor_dark.color.yml45
1 files changed, 23 insertions, 22 deletions
diff --git a/.config/alacritty/papercolor_dark.color.yml b/.config/alacritty/papercolor_dark.color.yml
index 7fe2264..4ed9e69 100644
--- a/.config/alacritty/papercolor_dark.color.yml
+++ b/.config/alacritty/papercolor_dark.color.yml
@@ -1,25 +1,14 @@
-colors:
-  primary:
-    background: &bg '#1c1c1c'
-    foreground: &fg '#d0d0d0'
-
-  cursor:
-    text: *bg
-    cursor: *fg
-
-  selection:
-   text: '#251c16'
-   background: '#fffffc'
 
+colors:
   normal:
-    black:   '#1c1c1c'
+    black: &black  '#1c1c1c'
     red:     '#af005f'
     green:   '#5faf00'
     yellow:  '#d7af5f'
     blue:    '#5fafd7'
     magenta: '#808080'
     cyan:    '#d7875f'
-    white:   '#d0d0d0'
+    white: &white  '#d0d0d0'
 
   bright:
     black:   '#585858'
@@ -32,13 +21,25 @@ colors:
     white:   '#fffffc'
 
   #dim:
-  #  black:   '0x000000'
-  #  red:     '0x8c3336'
-  #  green:   '0x7a8530'
-  #  yellow:  '0x97822e'
-  #  blue:    '0x506d8f'
-  #  magenta: '0x80638e'
-  #  cyan:    '0x497e7a'
-  #  white:   '0x9a9a9a'
+  #  black:   '#000000'
+  #  red:     '#8c3336'
+  #  green:   '#7a8530'
+  #  yellow:  '#97822e'
+  #  blue:    '#506d8f'
+  #  magenta: '#80638e'
+  #  cyan:    '#497e7a'
+  #  white:   '#9a9a9a'
+
+  primary:
+    background: *black
+    foreground: *white
+
+  cursor:
+    text: *black
+    cursor: *white
+
+  selection:
+   text: '#251c16'
+   background: '#fffffc'
 
   indexed_colors: []