mirror of
https://github.com/basecamp/omarchy.git
synced 2025-07-27 20:29:24 +00:00
73 lines
916 B
CSS
73 lines
916 B
CSS
@define-color mauve #cba6f7;
|
|
@define-color text #cdd6f4;
|
|
@define-color base #1e1e2e;
|
|
|
|
* {
|
|
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
|
font-size: 18px;
|
|
}
|
|
|
|
window {
|
|
margin: 0px;
|
|
padding: 20px;
|
|
background-color: @base;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: @base;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 0;
|
|
padding: 20px;
|
|
border: none;
|
|
background-color: @base;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0;
|
|
padding: 0;
|
|
border: none;
|
|
background-color: @base;
|
|
}
|
|
|
|
#input {
|
|
margin: 0;
|
|
padding: 10px;
|
|
border: none;
|
|
background-color: @base;
|
|
color: @text;
|
|
}
|
|
|
|
#input:focus {
|
|
outline: none;
|
|
box-shadow: none;
|
|
border: none;
|
|
}
|
|
|
|
#text {
|
|
margin: 5px;
|
|
border: none;
|
|
color: @text;
|
|
}
|
|
|
|
#entry {
|
|
background-color: @base;
|
|
}
|
|
|
|
#entry:selected {
|
|
outline: none;
|
|
border: none;
|
|
}
|
|
|
|
#entry:selected #text {
|
|
color: @mauve;
|
|
}
|
|
|
|
#entry image {
|
|
-gtk-icon-transform: scale(0.7);
|
|
}
|