wip: dnsc-machine setup
This commit is contained in:
parent
914c19b1ba
commit
acabf7761e
1 changed files with 38 additions and 24 deletions
|
|
@ -72,21 +72,39 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
style = ''
|
style = ''
|
||||||
@define-color cc-bg #0f0b15;
|
@define-color bg #0f0b15;
|
||||||
@define-color noti-border-color #dcd7ba;
|
@define-color bg-secondary #1d202f;
|
||||||
@define-color noti-bg #11111b;
|
@define-color fg #ffffff;
|
||||||
@define-color noti-bg-darker #2b2b39;
|
@define-color fg_alt #bf8a9f;
|
||||||
@define-color noti-bg-hover #1b1b2b;
|
@define-color fg_dim #807c9f;
|
||||||
@define-color noti-bg-focus #1b1b1b;
|
@define-color bg #0f0b15;
|
||||||
@define-color noti-close-bg #dcd7ba;
|
@define-color bg_secondary #1d202f;
|
||||||
@define-color noti-close-bg-hover #dcd7ba;
|
@define-color grey #807c9f;
|
||||||
@define-color text-color #dcd7ba;
|
@define-color grey_bright #807c9f;
|
||||||
@define-color text-color-disabled #828282;
|
@define-color red #f47359;
|
||||||
@define-color bg-selected #7e9cd8;
|
@define-color red_bright #ff6a7a;
|
||||||
@define-color red-base #c34043;
|
@define-color red_subtle_bg #67182f;
|
||||||
@define-color red-hover #e46876;
|
@define-color green #29a444;
|
||||||
@define-color green-base #98bb6c;
|
@define-color green_bright #00a392;
|
||||||
@define-color blue-base #7e9cd8;
|
@define-color green_subtle_bg #10452f;
|
||||||
|
@define-color yellow #b58a52;
|
||||||
|
@define-color yellow_bright #df9080;
|
||||||
|
@define-color yellow_brighter #FCC1B6;
|
||||||
|
@define-color yellow_subtle_bg #54362a;
|
||||||
|
@define-color blue #3f95f6;
|
||||||
|
@define-color blue_bright #029fff;
|
||||||
|
@define-color blue_subtle_bg #2a346e;
|
||||||
|
@define-color blue_subtle_dark_bg #003045;
|
||||||
|
@define-color magenta #d369af;
|
||||||
|
@define-color magenta_bright #af85ea;
|
||||||
|
@define-color magenta_brighter #c57faf;
|
||||||
|
@define-color magenta_subtle_bg #572454;
|
||||||
|
@define-color magenta_subtle_bg_darker #331531;
|
||||||
|
@define-color cyan #4fbaef;
|
||||||
|
@define-color cyan_bright #35afbf;
|
||||||
|
@define-color cyan_subtle_bg #133d56;
|
||||||
|
@define-color silver #b8c6d5;
|
||||||
|
@define-color silver_bright #ffffff;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: "VictorMono Nerd Font", monospace;
|
font-family: "VictorMono Nerd Font", monospace;
|
||||||
|
|
@ -96,7 +114,7 @@
|
||||||
.control-center .notification-row:focus,
|
.control-center .notification-row:focus,
|
||||||
.control-center .notification-row:hover {
|
.control-center .notification-row:hover {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
background: @noti-bg-darker;
|
background: @bg;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notification-row {
|
.notification-row {
|
||||||
|
|
@ -125,11 +143,12 @@
|
||||||
.widget-mpris>box>button,
|
.widget-mpris>box>button,
|
||||||
.widget-mpris-player,
|
.widget-mpris-player,
|
||||||
.widget-mpris-album-art {
|
.widget-mpris-album-art {
|
||||||
border-radius: 5;
|
border-radius: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notification {
|
.notification {
|
||||||
background: @cc-bg;
|
background: @bg;
|
||||||
|
opacity: 0.9;
|
||||||
border: none;
|
border: none;
|
||||||
margin: 3px -2px 3px 0;
|
margin: 3px -2px 3px 0;
|
||||||
}
|
}
|
||||||
|
|
@ -141,16 +160,11 @@
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin-top: 5px;
|
margin-top: 5px;
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
opacity: 0;
|
|
||||||
transition: opacity 0.2s ease-in-out;
|
transition: opacity 0.2s ease-in-out;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.notification:hover .close-button {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.close-button:hover {
|
.close-button:hover {
|
||||||
background: @red-hover;
|
background: @red-hover;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue