66 lines
771 B
SCSS
66 lines
771 B
SCSS
* {
|
|
all: unset;
|
|
}
|
|
|
|
/* Widgets */
|
|
.lorem-text {
|
|
background: darkgrey;
|
|
color: black;
|
|
}
|
|
|
|
.workspace{
|
|
background: #ffffff;
|
|
color: #000000;
|
|
|
|
&--activ{
|
|
background: #000000;
|
|
color: #ffffff;
|
|
}
|
|
}
|
|
|
|
.activewindow{
|
|
background: #98C379;
|
|
color: #ffffff;
|
|
|
|
&--xwayland{
|
|
background: red;
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
.music {
|
|
background: transparent;
|
|
color: transparent;
|
|
|
|
&--off {
|
|
background: transparent;
|
|
color: transparent;
|
|
}
|
|
|
|
&--on {
|
|
background: #8ce513;
|
|
color: #010101;
|
|
}
|
|
|
|
&--spotify {
|
|
background: #17d860;
|
|
color: #282828;
|
|
}
|
|
|
|
&--firefox {
|
|
background: #fd8728;
|
|
color: #010101;
|
|
}
|
|
|
|
&--mpv {
|
|
background: #420042;
|
|
color: white;
|
|
}
|
|
|
|
&--chromium {
|
|
background: #1a73e8;
|
|
color: white;
|
|
}
|
|
}
|
|
|