37 lines
491 B
SCSS
37 lines
491 B
SCSS
/* @use "~/.cache/wal/colors.scss" as cols; */
|
|
|
|
* { all: unset; }
|
|
|
|
// Variable Color's
|
|
$background: #1A1B26;
|
|
$foreground: #A9B1D6;
|
|
|
|
$black: #24283B;
|
|
$gray: #565F89;
|
|
$red: #F7768E;
|
|
$green: #73DACA;
|
|
$yellow: #E0AF68;
|
|
$blue: #7AA2F7;
|
|
$magenta: #BB9AF7;
|
|
$cyan: #7DCFFF;
|
|
$white: $foreground;
|
|
|
|
.bar{
|
|
background-color: $background;
|
|
border-radius: 20px;
|
|
padding: 5px;
|
|
// font-size: contain;
|
|
}
|
|
|
|
.icons{
|
|
margin: .3rem;
|
|
}
|
|
|
|
.launcher{
|
|
color: $cyan;
|
|
}
|
|
|
|
.tooltip {
|
|
background-color: white;
|
|
}
|