60 lines
1.1 KiB
CSS
60 lines
1.1 KiB
CSS
@define-color color_primary #55ffbb;
|
|
@define-color color_secondary #62ff57;
|
|
@define-color color_tertiary #ff579a;
|
|
@define-color color_bg #1b110e;
|
|
@define-color color_bg_secondary #000000;
|
|
@define-color color_alt_bg #024942;
|
|
@define-color color_gray #222222;
|
|
@define-color color_text_light #F0F0F0;
|
|
@define-color color_text_dark #1b110e;
|
|
@define-color color_white #FFFFFF;
|
|
|
|
window {
|
|
margin: 0px;
|
|
border: 1px solid @color_primary;
|
|
background-color: @color_bg;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#input {
|
|
padding: 4px 8px;
|
|
margin: 6px;
|
|
color: @color_text_light;
|
|
background-color: @color_alt_bg;
|
|
border: 1px solid @color_primary;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#inner-box {
|
|
background-color: @color_bg;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 4px;
|
|
padding: 4px;
|
|
background-color: @color_bg;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
padding: 4px;
|
|
}
|
|
|
|
#text {
|
|
margin: 2px 8px;
|
|
color: @color_primary;
|
|
}
|
|
|
|
#entry {
|
|
border-radius: 4px;
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: @color_alt_bg;
|
|
border: 1px solid @color_primary;
|
|
}
|
|
|
|
#text:selected {
|
|
color: @color_tertiary;
|
|
}
|