changed colors

This commit is contained in:
Alexey 2025-08-18 16:20:18 +03:00
commit 610fada91d
5 changed files with 60 additions and 52 deletions

View file

@ -2,50 +2,50 @@
import = [] import = []
live_config_reload = true live_config_reload = true
[window] [window]
opacity = 0.7 opacity = 0.5
[font] [font]
normal = { family = "Source Code Pro", style = "Regular" } normal = { family = "FantasqueSansM Nerd Font", style = "Regular" }
size = 11 size = 13
[colors] [colors]
draw_bold_text_with_bright_colors = true draw_bold_text_with_bright_colors = true
[colors.primary] [colors.primary]
foreground = "#ffffff" foreground = "#d3c6aa"
dim_foreground = "#f0dada" dim_foreground = "#d3c6aa"
bright_foreground = "#ffffff" bright_foreground = "#dfddc8"
background = "#2c3746" background = "#3a464c"
[colors.normal] [colors.normal]
black = "#176ef1" black = "#3a464c"
red = "#fd3762" red = "#e67e80"
green = "#2aacaa" green = "#a7c080"
yellow = "#f7c067" yellow = "#dbcc7f"
blue = "#f77067" blue = "#7fbbb3"
magenta = "#cb75f7" magenta = "#d699b6"
cyan = "#5cc6d1" cyan = "#83c092"
white = "#9cacad" white = "#d3c6aa"
[colors.bright] [colors.bright]
black = "#1874ff" black = "#5c6a72"
red = "#ff4772" red = "#f8fff2"
green = "#2ebdbb" green = "#8da101"
yellow = "#ffc66a" yellow = "#dfa000"
blue = "#ff7c77" blue = "#3a94c5"
magenta = "#ce79ff" magenta = "#df69ba"
cyan = "#60ccd8" cyan = "#35a77c"
white = "#aabcbd" white = "#dfddc8"
[colors.dim] [colors.dim]
black = "#156bdc" black = "#3a464c"
red = "#f22c57" red = "#e67e80"
green = "#28a09c" green = "#a7c080"
yellow = "#ddab5c" yellow = "#dbcc7f"
blue = "#df635d" blue = "#7fbbb3"
magenta = "#af69dd" magenta = "#d699b6"
cyan = "#4fb0b3" cyan = "#83c092"
white = "#879596" white = "#d3c6aa"
[cursor.style] [cursor.style]
shape = "Underline" shape = "Underline"

View file

@ -8,14 +8,6 @@ vim.o.cursorline = true
vim.cmd( 'syntax enable' ) vim.cmd( 'syntax enable' )
vim.cmd( 'filetype plugin indent on' ) vim.cmd( 'filetype plugin indent on' )
vim.cmd( 'colorscheme slate' )
vim.cmd [[
highlight Normal guibg=NONE ctermbg=NONE
highlight NonText guibg=NONE ctermbg=NONE
highlight EndOfBuffer guibg=NONE ctermbg=NONE
]]
vim.cmd [[ vim.cmd [[
call plug#begin() call plug#begin()
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
@ -28,9 +20,20 @@ vim.cmd [[
Plug 'hrsh7th/cmp-path' Plug 'hrsh7th/cmp-path'
Plug 'hrsh7th/cmp-cmdline' Plug 'hrsh7th/cmp-cmdline'
Plug 'hrsh7th/nvim-cmp' Plug 'hrsh7th/nvim-cmp'
Plug 'stevedylandev/ansi-nvim'
call plug#end() call plug#end()
]] ]]
vim.cmd( 'colorscheme ansi' )
vim.opt.termguicolors = false
vim.cmd [[
highlight Normal guibg=NONE ctermbg=NONE
highlight NonText guibg=NONE ctermbg=NONE
highlight EndOfBuffer guibg=NONE ctermbg=NONE
]]
local cmp = require 'cmp' local cmp = require 'cmp'
cmp.setup({ cmp.setup({

View file

@ -80,11 +80,11 @@ local inputs = {
local river_options = { local river_options = {
-- Theme options -- Theme options
['border-width'] = 2, ['border-width'] = 2,
['border-color-focused'] = '0xeceff4', ['border-color-focused'] = '0x83c092',
['border-color-unfocused'] = '0x81a1c1', ['border-color-unfocused'] = '0x35a77c',
['border-color-urgent'] = '0xbf616a', ['border-color-urgent'] = '0xf85552',
['xcursor-theme'] = { 'Vimix-cursors', 24 }, ['xcursor-theme'] = { 'Vimix-cursors', 24 },
['background-color'] = '0x2e3440', ['background-color'] = '0x343f44',
-- Other options -- Other options
['set-repeat'] = { 25, 300 }, ['set-repeat'] = { 25, 300 },

View file

@ -59,7 +59,7 @@
"temperature", "temperature",
"backlight", "backlight",
"battery", "battery",
"river/tags", "river/tags"
], ],
"modules-center": [ "modules-center": [
"river/window" "river/window"
@ -169,6 +169,6 @@
"car": "", "car": "",
"default": ["", "", ""] "default": ["", "", ""]
}, },
"on-click": "pavucontrol" "on-click": "alacritty -e 'pulsemixer'"
} }
}] }]

View file

@ -1,13 +1,13 @@
* { * {
/* `otf-font-awesome` is required to be installed for icons */ /* `otf-font-awesome` is required to be installed for icons */
font-family: FontAwesome, SourceCodePro; font-family: FantasqueSansM Nerd Font;
font-size: 13px; font-size: 13px;
} }
window#waybar { window#waybar {
background-color: rgba(44, 37, 46, 0.7); background-color: rgba(50, 70, 76, 0.5);
padding-bottom: 6px; padding-bottom: 6px;
border-bottom: 2px solid rgba(129, 161, 193, 0.5); border-bottom: 2px solid rgba(53, 167, 124, 0.5);
color: #ffffff; color: #ffffff;
transition-property: background-color; transition-property: background-color;
transition-duration: .5s; transition-duration: .5s;
@ -59,12 +59,12 @@ button:hover {
} }
#tags button.focused { #tags button.focused {
background-color: #64727D; background-color: #3a464c;
box-shadow: inset 0 -3px #ffffff; box-shadow: inset 0 -3px #ffffff;
} }
#tags button.urgent { #tags button.urgent {
background-color: #eb4d4b; background-color: #d3c6aa;
} }
#clock, #clock,
@ -81,7 +81,7 @@ button:hover {
margin: 0 3px; margin: 0 3px;
padding: 0 8px; padding: 0 8px;
color: #ffffff; color: #ffffff;
border: 2px solid #81a1c1; border: 2px solid #35a77c;
} }
#cpu, #cpu,
@ -100,11 +100,16 @@ button:hover {
#network:hover, #network:hover,
#pulseaudio:hover, #pulseaudio:hover,
#mpd:hover { #mpd:hover {
border: 2px solid #eceff4; border: 2px solid #83c092;
} }
#window { #window {
margin: 0 4px; margin: 0 4px;
font-size: 12px;
}
#mpd {
font-size: 11px;
} }
@keyframes blink { @keyframes blink {