diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 7e50e3f..ea26819 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -67,29 +67,45 @@ font: draw_bold_text_with_bright_colors: true colors: + # Default colors primary: - background: '0xffffff' - foreground: '0x4d4d4c' + background: '0x1d1f21' + foreground: '0xc5c8c6' + # Colors the cursor will use if `custom_cursor_colors` is true + cursor: + text: '0x1d1f21' + cursor: '0xc5c8c6' + + # Normal colors normal: black: '0x1d1f21' - red: '0xc82829' - green: '0x718c00' - yellow: '0xf5871f' - blue: '0x4271ae' - magenta: '0x8959a8' - cyan: '0x3e999f' - white: '0x565656' - + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x8abeb7' + white: '0xc5c8c6' + + # Bright colors bright: - black: '0x8e908c' - red: '0xff3334' - green: '0x89aa00' - yellow: '0xeab700' - blue: '0x5795e6' - magenta: '0xb777e0' - cyan: '0x66bdc3' - white: '0x262626' + black: '0x969896' + red: '0xcc6666' + green: '0xb5bd68' + yellow: '0xf0c674' + blue: '0x81a2be' + magenta: '0xb294bb' + cyan: '0x8abeb7' + white: '0xffffff' + + indexed_colors: + - { index: 16, color: '0xde935f' } + - { index: 17, color: '0xa3685a' } + - { index: 18, color: '0x282a2e' } + - { index: 19, color: '0x373b41' } + - { index: 20, color: '0xb4b7b4' } + - { index: 21, color: '0xe0e0e0' } cursor: # Values for `style`: diff --git a/dunst/.config/dunst/dunstrc b/dunst/.config/dunst/dunstrc index cf6be76..8abb48c 100644 --- a/dunst/.config/dunst/dunstrc +++ b/dunst/.config/dunst/dunstrc @@ -64,7 +64,7 @@ frame_width = 1 # Defines color of the frame around the notification window. - frame_color = "#ffffff" + frame_color = "#1d1f21" # Define a color for the separator. # possible values are: @@ -275,25 +275,25 @@ [urgency_low] # IMPORTANT: colors have to be defined in quotation marks. # Otherwise the "#" and following would be interpreted as a comment. - background = "#ffffff" - foreground = "#000000" - frame_color = "#ffffff" + background = "#1d1f21" + foreground = "#c5c8c6" + frame_color = "#1d1f21" timeout = 10 # Icon for notifications with low urgency, uncomment to enable #icon = /path/to/icon [urgency_normal] - background = "#ffffff" - foreground = "#000000" - frame_color = "#ffffff" + background = "#1d1f21" + foreground = "#c5c8c6" + frame_color = "#1d1f21" timeout = 10 # Icon for notifications with normal urgency, uncomment to enable #icon = /path/to/icon [urgency_critical] - background = "#ffffff" - foreground = "#000000" - frame_color = "#ffffff" + background = "#1d1f21" + foreground = "#c5c8c6" + frame_color = "#1d1f21" timeout = 0 # Icon for notifications with critical urgency, uncomment to enable #icon = /path/to/icon diff --git a/emacs/.config/emacs/config.el b/emacs/.config/emacs/config.el index ac23bfb..e29b50a 100644 --- a/emacs/.config/emacs/config.el +++ b/emacs/.config/emacs/config.el @@ -3,7 +3,7 @@ user-mail-address "elalmqvist@gmail.com") ;; Theme -(load-theme 'doom-tomorrow-day t) +(load-theme 'doom-tomorrow-night t) ;; Font size (set-face-attribute 'default nil :height 140 :family "Fira Code") diff --git a/emacs/.config/emacs/init.el b/emacs/.config/emacs/init.el index d593013..6d5f599 100644 --- a/emacs/.config/emacs/init.el +++ b/emacs/.config/emacs/init.el @@ -44,7 +44,7 @@ '(elcord-idle-message "Thinking...") '(elcord-idle-timer 300) '(elcord-quiet t) - '(elcord-use-major-mode-as-main-icon nil) + '(elcord-use-major-mode-as-main-icon t) '(evil-undo-system 'undo-redo) '(package-selected-packages '(scss-mode yaml-mode ligature evil-smartparens smartparens web-mode sublimity typescript-mode glsl-mode format-all hl-todo elcord evil-tabs evil-commentary format-all auto-complete editorconfig haskell-mode counsel ivy go-mode rust-mode use-package treemacs-evil treemacs projectile doom-themes lsp-mode evil))) diff --git a/eww/.config/eww/eww.scss b/eww/.config/eww/eww.scss index bade153..562a201 100644 --- a/eww/.config/eww/eww.scss +++ b/eww/.config/eww/eww.scss @@ -4,25 +4,25 @@ $icon-size: 18px; $logo-size: 22px; // Basic colors +$blue: #81a2be; +$cyan: #add9ff; $black: #1d1f21; -$red: #c82829; -$green: #718c00; -$yellow: #eab700; -$blue: #4271ae; -$magenta: #8959a8; -$cyan: #66bdc3; -$white: #d6d6d6; +$red: #cc6666; +$green: #b5bd68; +$yellow: #f0c674; +$magenta: #b294bb; +$white: #c5c8c6; // Colors -$bg-color: #fff; -$bg-alt-color: #d6d6d6; -$fg-color: #4d4d4c; -$fg-alt-color: #4d4d4c; -$fg-sel-color: $blue; -$fg-desel-color: #c9c9c9; -$border-color: #d6d6d6; +$bg-color: #1d1f21; +$bg-alt-color: #131519; +$fg-color: #c5c8c6; +$fg-alt-color: #5f5f5f; +$fg-sel-color: $cyan; +$fg-desel-color: $fg-alt-color; +$border-color: #434549; -$fg-accent: $blue; +$fg-accent: $cyan; // Misc $anim-transition: 150ms; @@ -41,9 +41,8 @@ tooltip { .bar-1, .bar-2 { background-color: $bg-color; - color: $fg-color; + color: $fg-alt-color; border-right: solid 1px $border-color; - padding: 0.3rem; } .segment-end { @@ -57,10 +56,7 @@ button { // Workspaces .workspaces { - // background-color: $bg-alt-color; // padding: .3rem; - // border: solid 1px $black; - // border-radius: $font-size; } .workspaces > button { @@ -77,6 +73,7 @@ button.active { // font-weight: bold; color: $fg-sel-color; } + button.inactive { color: $fg-desel-color; } @@ -107,7 +104,7 @@ scale trough { // Colors for the buttons .lock:hover { - color: $white; + color: $blue; } .quit:hover { color: $green; @@ -131,11 +128,9 @@ scale trough { // Control .control { margin-bottom: $logo-size; - padding: 0.5rem; - margin: 0; + margin-bottom: 0.5rem; font-family: Material Icons; font-size: 1.6em; - border-radius: 5px; } .icon { @@ -157,11 +152,11 @@ scale trough { // Time .time { + // color: $fg-alt-color; font-size: 11px; font-weight: bold; - border-top: solid 2px $border-color; - padding: 1rem 0; - padding-bottom: 0rem; + border-top: solid 2px $fg-alt-color; + padding-top: 1rem; margin-bottom: 0.5rem; } @@ -170,7 +165,6 @@ scale trough { margin: 0 0.8rem; margin-top: 6px; font-size: $logo-size; - // opacity: 0.6; } .logo-seperator { diff --git a/leftwm/.config/leftwm/themes/gruv/theme.ron b/leftwm/.config/leftwm/themes/gruv/theme.ron index 8c4152f..88c2472 100644 --- a/leftwm/.config/leftwm/themes/gruv/theme.ron +++ b/leftwm/.config/leftwm/themes/gruv/theme.ron @@ -2,7 +2,7 @@ ( border_width: 1, margin: 16, - default_border_color: "#d6d6d6", - focused_border_color: "#565656", - floating_border_color: "#f6f6f6", + default_border_color: "#434549", + focused_border_color: "#636569", + floating_border_color: "#434549", ) diff --git a/oh-my-zsh/.oh-my-zsh/custom/themes/almtech2.zsh-theme b/oh-my-zsh/.oh-my-zsh/custom/themes/almtech2.zsh-theme index 801eae7..ffd1359 100644 --- a/oh-my-zsh/.oh-my-zsh/custom/themes/almtech2.zsh-theme +++ b/oh-my-zsh/.oh-my-zsh/custom/themes/almtech2.zsh-theme @@ -35,7 +35,5 @@ ZSH_THEME_GIT_PROMPT_SHA_BEFORE=" %{$WHITE%}[%{$YELLOW%}" ZSH_THEME_GIT_PROMPT_SHA_AFTER="%{$WHITE%}]" # Prompt format -PROMPT=' -%{$BLUE%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%} -%{$BLUE%}>%{$RESET_COLOR%} ' +PROMPT='%{$BLUE%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}%{$BLUE%}>%{$RESET_COLOR%} ' RPROMPT='%{$GREEN%}$(git_current_branch)$(git_prompt_short_sha)$(git_prompt_status)%{$RESET_COLOR%}' diff --git a/rofi/.config/rofi/doomsidebar.rasi b/rofi/.config/rofi/doomsidebar.rasi index 57517da..3a14f6e 100644 --- a/rofi/.config/rofi/doomsidebar.rasi +++ b/rofi/.config/rofi/doomsidebar.rasi @@ -1,49 +1,35 @@ * { - text-color: #000; + text-color: #efefef; background-color: rgba(1, 0, 0, 0); dark: #282828; border-color: #1d1f21; // Black - black: #fff; - blackop: #eee; - lightblack: #222222; - // - // Red - red: #cc241d; - lightred: #cc241d; - // - // Green - green: #98971a; - lightgreen: #98971a; - // - // Yellow - yellow: #d79921; - lightyellow: #d79921; - // - // Blue - blue: #4271ae; - lightblue: #4271ae; - // - // Magenta - magenta: #b16286; - lightmagenta: #b16286; - // - // Cyan - cyan: #458588; - lightcyan: #458588; - // - // White - white: #a89984; - lightwhite: #a89984; + blue: #81a2be; + lightblue: #81a2be; + cyan: #add9ff; + lightcyan: #add9ff; + black: #1d1f21; + lightblack: #1d1f21; + blackop: #1d1f21aa; + red: #cc6666; + lightred: #cc6666; + green: #b5bd68; + lightgreen: #b5bd68; + yellow: #f0c674; + lightyellow: #f0c674; + magenta: #b294bb; + lightmagenta: #b294bb; + white: #c5c8c6; + lightwhite: #c5c8c6; // // Bold, Italic, Underline - highlight: bold #ffffff; + highlight: bold #ccc; } window { /* height: 14em; */ - width: 24em; + /* width: 24em; */ height: 100%; - /* width: 100%; */ + width: 100%; location: west; /* anchor: center; */ text-color: @lightwhite;