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" white = "#B4BDC3"
yellow = "#B77E64" yellow = "#B77E64"
[colors.primary] [colors.primary]
background = "#1C1917" background = "#141D1C"
foreground = "#B4BDC3" foreground = "#9BAFAC"

View File

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

View File

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

View File

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

View File

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