119 lines
1.5 KiB
SCSS
119 lines
1.5 KiB
SCSS
$crust: #181926;
|
|
$mantle: #1e2030;
|
|
$base: #24273a;
|
|
|
|
$surface0: #363a4f;
|
|
$surface1: #494d64;
|
|
$surface2: #5b6078;
|
|
|
|
$rosewater: #f4dbd6;
|
|
$flamingo: #dd7878;
|
|
$pink: #ea76cb;
|
|
$mauve: #8839ef;
|
|
|
|
:root {
|
|
font-family: JetBrainsMono Nerd Font;
|
|
color: $mauve;
|
|
}
|
|
|
|
button {
|
|
all: initial;
|
|
|
|
font-family: inherit;
|
|
|
|
label:hover {
|
|
background: $crust;
|
|
}
|
|
}
|
|
|
|
label {
|
|
all: initial;
|
|
|
|
font-family: inherit;
|
|
color: $mauve;
|
|
padding: 4px 12px;
|
|
background: $mantle;
|
|
border: 4px solid $crust;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.no-styles {
|
|
all: initial;
|
|
}
|
|
|
|
.active {
|
|
label {
|
|
background: $crust;
|
|
}
|
|
}
|
|
|
|
.Arch {
|
|
-gtk-icon-size: 24px;
|
|
padding: 4px 10px;
|
|
border-radius: 8px;
|
|
background: $crust;
|
|
|
|
&:hover {
|
|
background: $surface0;
|
|
}
|
|
}
|
|
|
|
.Pywal {
|
|
label {
|
|
font-size: 18px;
|
|
padding: 6px 16px 6px 10px;
|
|
}
|
|
}
|
|
|
|
.Tray > * {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
.Workspaces {
|
|
background: $mantle;
|
|
padding: 2px;
|
|
margin: 2px;
|
|
border-radius: 8px;
|
|
border: 4px solid $crust;
|
|
|
|
> * {
|
|
margin: 4px;
|
|
}
|
|
}
|
|
|
|
.WirePlumberMenu {
|
|
contents {
|
|
all: initial;
|
|
}
|
|
|
|
arrow {
|
|
all: initial;
|
|
}
|
|
|
|
button {
|
|
margin: 4px 0;
|
|
}
|
|
|
|
box {
|
|
padding: 4px 12px;
|
|
border-radius: 8px;
|
|
border: 4px solid $crust;
|
|
background: rgba($color: $mantle, $alpha: 0.9);
|
|
}
|
|
}
|
|
|
|
window.Bar {
|
|
background: transparent;
|
|
|
|
> centerbox {
|
|
background: rgba($color: $base, $alpha: 0.75);
|
|
border-bottom: 4px solid $crust;
|
|
|
|
> box {
|
|
margin: 6px;
|
|
& > * {
|
|
margin: 0 4px;
|
|
}
|
|
}
|
|
}
|
|
}
|