waybar/feline/alacritty: use my colors

This commit is contained in:
Łukasz Pankowski 2024-07-05 01:34:48 +02:00
parent 728b00c2ca
commit 10e03987be
5 changed files with 17 additions and 16 deletions

View File

@ -22,5 +22,5 @@ red = "#DE6E7C"
white = "#B4BDC3"
yellow = "#B77E64"
[colors.primary]
background = "#1C1917"
foreground = "#B4BDC3"
background = "#141D1C"
foreground = "#9BAFAC"

View File

@ -22,5 +22,5 @@ red = "#A8334C"
white = "#2C363C"
yellow = "#944927"
[colors.primary]
background = "#F0EDEC"
foreground = "#2C363C"
background = "#F0F1F1"
foreground = "#141D1C"

View File

@ -1,10 +1,10 @@
* {
background-color: #352f2d;
color: #afa099;
background-color: #3f4947;
color: #9bafac;
}
#workspaces button.active {
border-bottom: 3px solid #afa099;
border-bottom: 3px solid #9bafac;
}
#workspaces button.urgent {

View File

@ -1,10 +1,11 @@
* {
background-color: #e1dcd9;
color: #2c363c;
background-color: #dde4e3;
color: #2c3131;
}
#workspaces button.active {
border-bottom: 3px solid #2c363c;
border-bottom: 3px solid #2c3131;
}
#workspaces button.urgent {

View File

@ -2,12 +2,12 @@ local function feline_config(_, opts)
local feline = require('feline')
local dark_theme = {
bg = '#615853',
bg2 = '#352f2d',
bg = '#5a605f',
bg2 = '#2b3231',
black = '#403833',
skyblue = '#61abda',
cyan = '#65b8c1',
fg = '#b4bdc3',
fg = '#9bafac',
green = '#8bae68',
oceanblue = '#6099c0',
magenta = '#cf86c1',
@ -20,12 +20,12 @@ local function feline_config(_, opts)
feline.add_theme('dark', dark_theme)
local light_theme = {
bg = '#e1dcd9',
bg2 = '#d6cdc9',
bg = '#dde4e3',
bg2 = '#b3cbc8',
black = '#c4b6af',
skyblue = '#1d5573',
cyan = '#2b747c',
fg = '#2c363c',
fg = '#2c3131',
green = '#3f5a22',
oceanblue = '#286486',
magenta = '#7b3b70',