summaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-10 21:28:27 +0100
committerGustaf Rydholm <gustaf.rydholm@gmail.com>2021-03-10 21:28:27 +0100
commitfefff7951e07d599a236617a6ccf4278176e99a5 (patch)
treee1454ea0941286773048db2e8dc04096b70089b0 /.config
parent1ad10fb4dfafcd7dd189a25ca69f6961985484d2 (diff)
fixed bg in color scheme
Diffstat (limited to '.config')
-rw-r--r--.config/alacritty/alacritty.yml2
-rw-r--r--.config/nvim/lua/statusline.lua4
-rw-r--r--.config/rofi/config.rasi56
3 files changed, 31 insertions, 31 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
index 3d1f644..fee4078 100644
--- a/.config/alacritty/alacritty.yml
+++ b/.config/alacritty/alacritty.yml
@@ -5,7 +5,7 @@
colors:
# Default colors
primary:
- background: '#0A0A0A'
+ background: '#131313'
foreground: '#d8d8d8'
# Colors the cursor will use if `custom_cursor_colors` is true
diff --git a/.config/nvim/lua/statusline.lua b/.config/nvim/lua/statusline.lua
index a745a8e..931484a 100644
--- a/.config/nvim/lua/statusline.lua
+++ b/.config/nvim/lua/statusline.lua
@@ -6,9 +6,9 @@ gl.short_line_list = {"LuaTree", "packager", "Floaterm", "coc-eplorer"}
local colors = {
- bg = "#0A0A0A",
+ bg = "#131313",
fg = "#d0d0d0",
- line_bg = "#0A0A0A",
+ line_bg = "#131313",
fg_green = "#90a959",
yellow = "#f4bf75",
cyan = "#75b5aa",
diff --git a/.config/rofi/config.rasi b/.config/rofi/config.rasi
index a5f5c94..5c2818e 100644
--- a/.config/rofi/config.rasi
+++ b/.config/rofi/config.rasi
@@ -161,47 +161,47 @@ configuration {
//----------------------
* {
- nord0: #0A0A0A;
- nord1: #3B4252;
- nord2: #434C5E;
- nord3: #585858;
- nord4: #d8d8d8;
- nord5: #E5E9F0;
- nord6: #ECEFF4;
- nord7: #8FBCBB;
- nord8: #88C0D0;
- nord9: #81A1C1;
- nord10: #181818;
- nord11: #BF616A;
- nord12: #D08770;
- nord13: #EBCB8B;
- nord14: #A3BE8C;
- nord15: #B48EAD;
- background: @nord0;
- foreground: @nord4;
- selected-normal-foreground: @nord4;
+ color0: #131313;
+ color1: #3B4252;
+ color2: #434C5E;
+ color3: #585858;
+ color4: #d8d8d8;
+ color5: #E5E9F0;
+ color6: #ECEFF4;
+ color7: #8FBCBB;
+ color8: #88C0D0;
+ color9: #81A1C1;
+ color10: #181818;
+ color11: #BF616A;
+ color12: #D08770;
+ color13: #EBCB8B;
+ color14: #A3BE8C;
+ color15: #B48EAD;
+ background: @color0;
+ foreground: @color4;
+ selected-normal-foreground: @color4;
normal-foreground: @foreground;
- alternate-normal-background: @nord0;
- selected-urgent-foreground: @nord4;
+ alternate-normal-background: @color0;
+ selected-urgent-foreground: @color4;
urgent-foreground: @foreground;
- alternate-urgent-background: @nord0;
+ alternate-urgent-background: @color0;
active-foreground: @foreground;
selected-active-foreground: @foreground;
- alternate-active-background: @nord0;
- bordercolor: @nord10;
+ alternate-active-background: @color0;
+ bordercolor: @color10;
alternate-normal-foreground: @foreground;
normal-background: @background;
- selected-normal-background: @nord3;
- border-color: @nord10;
+ selected-normal-background: @color3;
+ border-color: @color10;
spacing: 2;
separatorcolor: @blue;
urgent-background: @background;
- selected-urgent-background: @nord3;
+ selected-urgent-background: @color3;
alternate-urgent-foreground: @urgent-foreground;
background-color: @background;
alternate-active-foreground: @active-foreground;
active-background: @background;
- selected-active-background: @nord3;
+ selected-active-background: @color3;
}