This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/wayland/eww/config/eww.scss

108 lines
1.6 KiB
SCSS
Raw Normal View History

2024-01-21 18:43:45 +00:00
$bg: rgb(40, 40, 40);
$fg: rgb(235, 219, 178);
2024-01-11 03:47:13 +00:00
$widgetbg: rgb(80, 73, 69);
$border: rgb(102, 92, 84);
2024-01-21 18:43:45 +00:00
$wsfg: rgb(235, 219, 178);
$wsbg: rgb(60, 56, 54);
$activewsbg: rgb(102, 92, 84);
2024-01-11 03:47:13 +00:00
$border_radius: 6px;
* {
2024-01-21 18:43:45 +00:00
all: unset;
min-width: 0;
2024-01-11 03:47:13 +00:00
}
.panel {
2024-01-21 18:43:45 +00:00
background: rgba($bg, 0.8);
color: $fg;
font-size: 14px;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
border-bottom: 4px solid $border;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
@mixin widget {
font-size: 12px;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
background-color: $widgetbg;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
margin-top: 0.25em;
margin-bottom: 0.25em;
margin-left: 0.8em;
margin-right: 0.8em;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
padding-left: 0.8em;
padding-right: 0.8em;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
border-radius: $border-radius;
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.widget-workspace {
@include widget;
padding: 0;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.workspace {
font-size: 14px;
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.workspace-button {
padding: 0 1em 0 1em;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
:first-child {
border-radius: $border-radius 0 0 $border-radius;
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
:last-child {
border-radius: 0 $border-radius $border-radius 0;
}
2024-01-11 03:47:13 +00:00
}
2024-01-21 18:43:45 +00:00
.workspace-active {
background: $fg;
color: $bg;
border-radius: $border-radius;
2024-01-11 03:47:13 +00:00
}
2024-01-21 18:43:45 +00:00
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.widget-activewindow {
font-size: 12px;
margin: 0 0 0 1em;
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.widget-systray {
@include widget;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
menu,
menu menu {
font-size: 14px;
border-radius: $border-radius;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
background: $widgetbg;
color: $fg;
border: 1px solid $border;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
padding: 0.3em;
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
:hover {
background: $fg;
color: $widgetbg;
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
>separator {
border-top: 1px solid;
margin: 0.5em 0 0.5em 0;
padding: 0;
}
2024-01-11 03:47:13 +00:00
}
2024-01-21 18:43:45 +00:00
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.widget-music {
@include widget;
}
2024-01-11 03:47:13 +00:00
2024-01-21 18:43:45 +00:00
.widget-time {
@include widget;
font-size: 14px;
}
}