Configuration files for my GNU/Linux installation.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
dotfiles/eww/.config/eww/eww.scss

88 lines
1.2 KiB

// Font stuff
$font-size: 16px;
$icon-size: 20px;
$logo-size: 24px;
// Basic color
$bg-color: #181818;
$bg-alt-color: #242424;
$fg-color: #ebdbb2;
$fg-alt-color: #635c4b;
$border-color: #484848;
// Colors
$black: #121212;
$red: #f7768c;
$green: #9ece6a;
$yellow: #e0af68;
$blue: #aabbff;
$magenta: #ad8ee6;
$cyan: #449dab;
$white: #787c99;
// Misc
$anim-delay: 250ms;
* {
all: unset; //Unsets everything so you can style everything from scratch
font-family: "Hack Mono";
transition: opacity $anim-delay;
// color: $fg-color;
}
// Bar styles
.time-thing {
opacity: 0.2;
}
.bar-1, .bar-2 {
background-color: $bg-color;
color: $fg-color;
border-right: solid 1px $border-color;
}
// Styles on classes (see eww.yuck for more information)
button.ws {
color: $fg-color;
font-size: $font-size;
margin: 4px;
}
button.ws:hover {
color: $yellow;
opacity: 1.0;
}
.icon {
opacity: 0.8;
font-size: $icon-size;
}
.icon:hover {
opacity: 1.0;
}
.logo {
margin-top: $font-size;
font-size: $icon-size;
// opacity: 0.8;
}
.logo:hover {
color: red;
}
.workspaces {
// background-color: $black;
// border-radius: $font-size;
// border: 1px solid $border-color;
}
.ws-active {
font-weight: bold;
}
.ws-inactive {
opacity: 0.2;
}