forked from Shinonome/dots-hyprland
48 lines
1.1 KiB
SCSS
48 lines
1.1 KiB
SCSS
.themer-menu-box {
|
|
@include window;
|
|
background-color: $colorbg;
|
|
border: 3px solid $border;
|
|
// color: $colortext;
|
|
}
|
|
|
|
.themer-title {
|
|
font-family: 'Gabarito', 'Material Symbols Rounded';
|
|
font-weight: bold;
|
|
font-size: 15pt;
|
|
padding: .6rem;
|
|
}
|
|
|
|
.themer-prompt {
|
|
font-family: 'Gabarito', 'Material Symbols Rounded';
|
|
font-size: 12pt;
|
|
padding: .6rem;
|
|
}
|
|
|
|
.themer-input {
|
|
font-family: 'Gabarito', 'Material Symbols Rounded';
|
|
background-color: $surface0;
|
|
border-radius: 10px;
|
|
padding: 3px;
|
|
margin-top: 2px;
|
|
margin-bottom: 2px;
|
|
border: 2px solid $overlay0;
|
|
}
|
|
.themer-input:focus {
|
|
border: 2px solid $colortext;
|
|
}
|
|
|
|
.themer-color-preview {
|
|
min-height: 25px;
|
|
min-width: 25px;
|
|
border-radius: 5px;
|
|
border-width: 55px;
|
|
}
|
|
|
|
.preview-0 { background-color: $color0; }
|
|
.preview-1 { background-color: $color1; }
|
|
.preview-2 { background-color: $color2; }
|
|
.preview-3 { background-color: $color3; }
|
|
.preview-4 { background-color: $color4; }
|
|
.preview-5 { background-color: $color5; }
|
|
.preview-6 { background-color: $color6; }
|
|
.preview-7 { background-color: $color7; } |