Minor tweaks

lightmode
E. Almqvist 2 years ago
parent 678d9037a9
commit 70008fdf19
  1. 55
      alacritty/.config/alacritty/alacritty.yml
  2. 30
      dunst/.config/dunst/dunstrc
  3. 7
      nvim/.config/nvim/init.vim
  4. 10
      rofi/.config/rofi/doomsidebar.rasi

@ -3,7 +3,7 @@ env:
TERM: xterm-256color TERM: xterm-256color
window: window:
opacity: 1.0 opacity: 0.9
padding: padding:
x: 8 x: 8
y: 8 y: 8
@ -54,7 +54,7 @@ font:
style: Bold Italic style: Bold Italic
# Point size # Point size
size: 10 size: 9
# Offset is the extra space around each character. `offset.y` can be thought of # Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing. # as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -65,22 +65,53 @@ font:
# If `true`, bold text is drawn using the bright color variants. # If `true`, bold text is drawn using the bright color variants.
draw_bold_text_with_bright_colors: true draw_bold_text_with_bright_colors: true
#colors:
# # Default colors
# primary:
# background: '0x18191c'
# foreground: '0xafafaf'
#
# # Normal colors
# normal:
# black: '0x21242b'
# red: '0xff6c6b'
# green: '0x98be65'
# yellow: '0xecbe7b'
# blue: '0x51afef'
# magenta: '0xc678dd'
# cyan: '0x46d9ff'
# white: '0xbbc2cf'
# Colors (Gruvbox dark)
colors: colors:
# Default colors # Default colors
primary: primary:
background: '0x18191c' # hard contrast: background = '0x1d2021'
foreground: '0xafafaf' background: '0x1d2021'
# soft contrast: background = '0x32302f'
foreground: '0xebdbb2'
# Normal colors # Normal colors
normal: normal:
black: '0x21242b' black: '0x282828'
red: '0xff6c6b' red: '0xcc241d'
green: '0x98be65' green: '0x98971a'
yellow: '0xecbe7b' yellow: '0xd79921'
blue: '0x51afef' blue: '0x458588'
magenta: '0xc678dd' magenta: '0xb16286'
cyan: '0x46d9ff' cyan: '0x689d6a'
white: '0xbbc2cf' white: '0xa89984'
# Bright colors
bright:
black: '0x928374'
red: '0xfb4934'
green: '0xb8bb26'
yellow: '0xfabd2f'
blue: '0x83a598'
magenta: '0xd3869b'
cyan: '0x8ec07c'
white: '0xebdbb2'
cursor: cursor:
# Values for `style`: # Values for `style`:

@ -29,7 +29,7 @@
# the top and down respectively. # the top and down respectively.
# The width can be negative. In this case the actual width is the # The width can be negative. In this case the actual width is the
# screen width minus the width defined in within the geometry option. # screen width minus the width defined in within the geometry option.
geometry = "320x5-20+20" geometry = "340x25-20+10"
# Show how many messages are currently hidden (because of geometry). # Show how many messages are currently hidden (because of geometry).
indicate_hidden = yes indicate_hidden = yes
@ -51,20 +51,20 @@
# Draw a line of "separator_height" pixel height between two # Draw a line of "separator_height" pixel height between two
# notifications. # notifications.
# Set to 0 to disable. # Set to 0 to disable.
separator_height = 2 separator_height = 12
# Padding between text and separator. # Padding between text and separator.
padding = 12 padding = 24
# Horizontal padding. # Horizontal padding.
horizontal_padding = 8 horizontal_padding = 12
# Defines width in pixels of frame around the notification window. # Defines width in pixels of frame around the notification window.
# Set to 0 to disable. # Set to 0 to disable.
frame_width = 1 frame_width = 1
# Defines color of the frame around the notification window. # Defines color of the frame around the notification window.
frame_color = "#282c34" frame_color = "#1d2021"
# Define a color for the separator. # Define a color for the separator.
# possible values are: # possible values are:
@ -86,7 +86,7 @@
### Text ### ### Text ###
font = Hack 12 font = Fira Code 14
# The spacing between lines. If the height is smaller than the # The spacing between lines. If the height is smaller than the
# font height, it will get raised to the font height. # font height, it will get raised to the font height.
@ -275,25 +275,25 @@
[urgency_low] [urgency_low]
# IMPORTANT: colors have to be defined in quotation marks. # IMPORTANT: colors have to be defined in quotation marks.
# Otherwise the "#" and following would be interpreted as a comment. # Otherwise the "#" and following would be interpreted as a comment.
background = "#282c34" background = "#1d2021"
foreground = "#ffffff" foreground = "#ebdbb2"
frame_color = "#272727" frame_color = "#1d2021"
timeout = 10 timeout = 10
# Icon for notifications with low urgency, uncomment to enable # Icon for notifications with low urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon
[urgency_normal] [urgency_normal]
background = "#282c34" background = "#1d2021"
foreground = "#ffffff" foreground = "#ebdbb2"
frame_color = "#272727" frame_color = "#1d2021"
timeout = 10 timeout = 10
# Icon for notifications with normal urgency, uncomment to enable # Icon for notifications with normal urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon
[urgency_critical] [urgency_critical]
background = "#282c34" background = "#1d2021"
foreground = "#ffffff" foreground = "#ebdbb2"
frame_color = "#272727" frame_color = "#1d2021"
timeout = 0 timeout = 0
# Icon for notifications with critical urgency, uncomment to enable # Icon for notifications with critical urgency, uncomment to enable
#icon = /path/to/icon #icon = /path/to/icon

@ -31,12 +31,10 @@ call plug#begin('~/.config/nvim/plugged')
Plug 'lervag/vimtex' Plug 'lervag/vimtex'
Plug 'mikelue/vim-maven-plugin' Plug 'mikelue/vim-maven-plugin'
Plug 'sheerun/vim-polyglot' Plug 'sheerun/vim-polyglot'
" Plug 'vim-airline/vim-airline'
" Plug 'vim-airline/vim-airline-themes'
Plug 'projekt0n/github-nvim-theme' Plug 'projekt0n/github-nvim-theme'
Plug 'pantharshit00/vim-prisma' Plug 'pantharshit00/vim-prisma'
Plug 'axelf4/vim-haskell' Plug 'axelf4/vim-haskell'
"Plug 'neovimhaskell/haskell-vim' Plug 'ellisonleao/gruvbox.nvim'
call plug#end() call plug#end()
set nocompatible set nocompatible
@ -67,7 +65,8 @@ let g:ruby_recommended_style = 0
set clipboard+=unnamedplus set clipboard+=unnamedplus
" Theme " Theme
colors github_dark set background=dark
colors gruvbox
let &showbreak = '↳ ' let &showbreak = '↳ '
set laststatus=0 ruler set laststatus=0 ruler
set nu set nu

@ -1,12 +1,12 @@
* { * {
text-color: #f6f6f6; text-color: #eddbb2;
background-color: rgba(1,0,0,0); background-color: rgba(1,0,0,0);
dark: #282c34; dark: #1d2021;
border-color: #1d1f21; border-color: #1d1f21;
// Black // Black
black: #282c34; black: #1d2021;
blackop: #282c34ef; blackop: #1d2021ef;
lightblack: #282c34; lightblack: #1d2021;
// //
// Red // Red
red: #ff6c6b; red: #ff6c6b;

Loading…
Cancel
Save