dotfiles/home/private_dot_config/eww/eww.scss

120 lines
1.7 KiB
SCSS
Raw Normal View History

2024-01-22 06:28:52 -06:00
@use "sass:list";
@use "sass:math";
@import "scss/Catppuccin";
2024-07-25 12:01:43 -05:00
$accent: $sky;
2024-01-22 06:28:52 -06:00
* {
all: unset; //Unsets everything so you can style everything from scratch
}
$tag-palette: (
$lavender,
$flamingo,
$maroon,
$yellow,
$green,
$teal,
$blue,
$sky,
$rosewater,
);
// colors
2024-05-31 09:34:53 -05:00
$background: $base;
$foreground: $text;
2024-01-22 06:28:52 -06:00
.debug {
background-color: $red;
border: 1px dashed;
}
//Global Styles
.bar {
color: $foreground;
padding: 2px 5px;
2024-05-31 09:34:53 -05:00
// font-family:"FiraCode Nerd Font Propo";
2024-01-22 06:28:52 -06:00
font-family:"FiraCode Nerd Font Propo";
font-size: 16px;
}
.panel {
margin: 5px;
background-color: $background;
border: 2px solid;
border-radius: 15px;
padding: 3px 10px;
border-color: $accent;
box-shadow: 1px 1px 3px $accent;
}
.ws-button {
border-style: solid;
padding:0px 10px;
border-radius: 5px;
}
.ws-button-open {
border-width: 0px 0px 2px;
border-style: solid;
}
// color each tag bubble from palette
@each $color in $tag-palette {
.ws-button-#{index($tag-palette,$color)} {
2024-05-28 13:22:10 -05:00
color: $color;
2024-01-22 06:28:52 -06:00
}
2024-05-30 17:35:13 -05:00
.ws-button-active-#{index($tag-palette,$color)}{
color: $background;
background: $color;
}
2024-01-22 06:28:52 -06:00
}
.workspaces {
padding: 0;
border-radius: 15px;
padding: 0 5px;
}
.active {
all: unset;
border-radius: 0;
padding-top: 0;
padding-bottom: 0;
}
.box-launcher {
background-color: $accent;
color: $background;
font-size: 1.1em;
font-weight: bold;
border-radius: 15px;
}
.button-launcher {
padding-left: 12px;
padding-right: 12px;
}
.clock {
margin-left: 10px;
margin-right: 20px;
}
.sysinfo {
margin-left: 10px;
margin-right: 10px;
}
.icon-ws-layout {
margin-right: 10px;
}
.update {
margin-right: 10px;
}
.separator {
margin: 0px 5px;
}