From a604c075fc9b26998cd075230b37bbcb80c80d51 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yaroslav=20de=20la=20Pe=C3=B1a=20Smirnov?= Date: Tue, 1 Dec 2020 23:47:32 +0300 Subject: Changes to color scheme Updated the colors for: * Alacritty * Bemenu * Waybar * Sway --- dotfiles/.config/alacritty/alacritty.yml | 156 +++++++++---------------------- dotfiles/.config/bemenurc | 10 +- dotfiles/.config/sway/config | 8 +- dotfiles/.config/waybar/config | 2 +- dotfiles/.config/waybar/style.css | 5 +- 5 files changed, 56 insertions(+), 125 deletions(-) (limited to 'dotfiles/.config') diff --git a/dotfiles/.config/alacritty/alacritty.yml b/dotfiles/.config/alacritty/alacritty.yml index 9a76a16..6daa657 100644 --- a/dotfiles/.config/alacritty/alacritty.yml +++ b/dotfiles/.config/alacritty/alacritty.yml @@ -164,113 +164,47 @@ font: # Colors schemes: - # Ultramar +### Ultramar ### ultramar_dark: &dark - primary: - background: '#1b1e25' - foreground: '#ece7d4' - - # Bright and dim foreground colors - # - # The dimmed foreground color is calculated automatically if it is not present. - # If the bright foreground color is not set, or `draw_bold_text_with_bright_colors` - # is `false`, the normal foreground color will be used. - #dim_foreground: '#828482' - #bright_foreground: '#eaeaea' - - # Cursor colors - # - # Colors which should be used to draw the terminal cursor. - # - # Allowed values are CellForeground and CellBackground, which reference the - # affected cell, or hexadecimal colors like #ff00ff. - cursor: - cursor: '#ffffff' - # text: CellBackground - - # Vi mode cursor colors - # - # Colors for the cursor when the vi mode is active. - # - # Allowed values are CellForeground and CellBackground, which reference the - # affected cell, or hexadecimal colors like #ff00ff. - #vi_mode_cursor: - # text: CellBackground - # cursor: CellForeground - - # Selection colors - # - # Colors which should be used to draw the selection area. - # - # Allowed values are CellForeground and CellBackground, which reference the - # affected cell, or hexadecimal colors like #ff00ff. - #selection: - # text: CellBackground - # background: CellForeground - - # Search colors - # - # Colors used for the search bar and match highlighting. - search: - # Allowed values are CellForeground and CellBackground, which reference the - # affected cell, or hexadecimal colors like #ff00ff. - matches: - foreground: '#000000' - background: '#b2872f' + primary: + background: '#151517' + foreground: '#fcf8e2' + + cursor: + cursor: '#ffffff' + + search: + matches: + foreground: '#000000' + background: '#b2872f' bar: - background: '#252832' - foreground: '#e5e9f0' - - # Normal colors - normal: - black: '#1d2021' - red: '#b73030' - green: '#7ea95a' - yellow: '#b2872f' - blue: '#3f6e90' - magenta: '#9c6992' - cyan: '#5b8277' - white: '#a1a6b2' - - # Bright colors - bright: - black: '#434c5e' - red: '#c45c5c' - green: '#9eba86' - yellow: '#e2b55a' - blue: '#81acc1' - magenta: '#b48ead' - cyan: '#7fac96' - white: '#e5e9f0' - - # Dim colors - # - # If the dim colors are not set, they will be calculated automatically based - # on the `normal` colors. - #dim: - # black: '#131415' - # red: '#864343' - # green: '#777c44' - # yellow: '#9e824c' - # blue: '#556a7d' - # magenta: '#75617b' - # cyan: '#5b7d78' - # white: '#828482' - - # Indexed Colors - # - # The indexed colors include all colors from 16 to 256. - # When these are not set, they're filled with sensible defaults. - # - # Example: - # `- { index: 16, color: '#ff00ff' }` - # - #indexed_colors: [] + background: '#252832' + foreground: '#e5e9f0' + + normal: + black: '#33333a' + red: '#b73030' + green: '#6d974b' + yellow: '#b2872f' + blue: '#3f6e90' + magenta: '#9c6992' + cyan: '#5b8277' + white: '#d2d0c8' + + bright: + black: '#676775' + red: '#c45c5c' + green: '#92b078' + yellow: '#e2b55a' + blue: '#81acc1' + magenta: '#b48ead' + cyan: '#7fac96' + white: '#faf6e5' ultramar_light: &light primary: - background: '#fbf3d1' + background: '#faf6e5' foreground: '#1b1e25' cursor: @@ -281,30 +215,28 @@ schemes: background: '#b2872f' bar: - background: '#252832' - foreground: '#e5e9f0' + background: '#252832' + foreground: '#e5e9f0' - # Normal colors normal: - black: '#1d2021' + black: '#151517' red: '#b73030' - green: '#7ea95a' + green: '#6d974b' yellow: '#b2872f' blue: '#3f6e90' magenta: '#9c6992' cyan: '#5b8277' - white: '#a1a6b2' + white: '#91908d' - # Bright colors bright: - black: '#434c5e' + black: '#33333a' red: '#c45c5c' - green: '#9eba86' + green: '#92b078' yellow: '#e2b55a' - blue: '#81acc1' + blue: '#75a2b8' magenta: '#b48ead' cyan: '#7fac96' - white: '#e5e9f0' + white: '#b0afa8' colors: *dark diff --git a/dotfiles/.config/bemenurc b/dotfiles/.config/bemenurc index 3b016cb..a05d7b2 100755 --- a/dotfiles/.config/bemenurc +++ b/dotfiles/.config/bemenurc @@ -5,19 +5,19 @@ BEMENU_BACKEND=wayland BEMENU_FN="monospace 10" ## textcolour for title -BEMENU_TF="#D8DEE9" +BEMENU_TF="#d8dee9" ## background colour for unselected menu-items -BEMENU_NB="#1D2021" +BEMENU_NB="#232328" ## textcolour for unselected menu-items -BEMENU_NF="#D8DEE9" +BEMENU_NF="#faf6e5" ## background colour for highlighted menu-items -BEMENU_HB="#5B8277" +BEMENU_HB="#7fac96" ## textcolour for highlighted menu-items -BEMENU_HF="#E5E9F0" +BEMENU_HF="#151517" ## command for the terminal application to be used: TERMINAL_CMD="terminal -e" diff --git a/dotfiles/.config/sway/config b/dotfiles/.config/sway/config index fbdad45..116a0fc 100644 --- a/dotfiles/.config/sway/config +++ b/dotfiles/.config/sway/config @@ -24,13 +24,13 @@ font pango:monospace 9 # Theme colors # class border backgr. text indic. child_border - client.focused #5b8277 #7fac96 #1d2021 #9eba86 #5b8277 - client.focused_inactive #000000 #252832 #5b8277 #000000 #000000 - client.unfocused #000000 #252832 #d8dee9 #000000 #000000 + client.focused #5b8277 #7fac96 #151517 #9eba86 #5b8277 + client.focused_inactive #000000 #33333a #7fac96 #000000 #000000 + client.unfocused #000000 #33333a #faf6e5 #000000 #000000 client.urgent #cb4b16 #fdf6e3 #1abc9c #268bd2 #cb4b16 client.placeholder #ffffff #0c0c0c #ffffff #ffffff #3f6e90 - client.background #2b2c2b + client.background #1b1e25 titlebar_padding 6 2 titlebar_border_thickness 2 diff --git a/dotfiles/.config/waybar/config b/dotfiles/.config/waybar/config index ad7ec38..1712bb2 100644 --- a/dotfiles/.config/waybar/config +++ b/dotfiles/.config/waybar/config @@ -19,8 +19,8 @@ "custom/mail-status", "custom/pac-status", "custom/news-status", - "custom/torrent-status", "memory", + "custom/torrent-status", "custom/vpn-status", "network", "backlight", diff --git a/dotfiles/.config/waybar/style.css b/dotfiles/.config/waybar/style.css index 887c3ab..5af71da 100644 --- a/dotfiles/.config/waybar/style.css +++ b/dotfiles/.config/waybar/style.css @@ -4,7 +4,7 @@ } window#waybar { background: #000000; - color: #e5e9f0; + color: #faf6e5; min-height: 0; } #custom-right-arrow-cyan, #custom-left-arrow-cyan { @@ -33,14 +33,13 @@ window#waybar { color: #000000; } #tray, -#memory, #battery, #network, #backlight, #custom-vpn-status, #custom-torrent-status, #workspaces { - background: #1d2021; + background: #232328; border-top: 2px solid #000000; border-bottom: 2px solid #000000; } -- cgit v1.2.3