feat: migrate to Stylix
This commit is contained in:
@ -1,26 +0,0 @@
|
||||
// SCSS Variables
|
||||
// Generated by 'wal'
|
||||
$wallpaper: "/home/sadorowo/images/wallpapers/youtube_Sheri_170.jpg";
|
||||
|
||||
// Special
|
||||
$background: #f9f6f3;
|
||||
$foreground: #251F23;
|
||||
$cursor: #251F23;
|
||||
|
||||
// Colors
|
||||
$color0: #f9f6f3;
|
||||
$color1: #AB8772;
|
||||
$color2: #D69768;
|
||||
$color3: #727188;
|
||||
$color4: #897A85;
|
||||
$color5: #79869C;
|
||||
$color6: #A29597;
|
||||
$color7: #251F23;
|
||||
$color8: #82766c;
|
||||
$color9: #AB8772;
|
||||
$color10: #D69768;
|
||||
$color11: #727188;
|
||||
$color12: #897A85;
|
||||
$color13: #79869C;
|
||||
$color14: #A29597;
|
||||
$color15: #251F23;
|
@ -1,4 +1,4 @@
|
||||
@use '../colors' as *;
|
||||
@use '../../../theme_colors.scss' as *;
|
||||
|
||||
window.bar {
|
||||
font-weight: bold;
|
||||
@ -10,17 +10,17 @@ window.bar {
|
||||
>.inner {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
padding: 0.25rem 1rem;
|
||||
margin: 0;
|
||||
|
||||
* { color: $color0; }
|
||||
* { color: $base00; }
|
||||
}
|
||||
|
||||
.tray .item {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
|
||||
image {
|
||||
padding: 0;
|
||||
|
@ -1,10 +1,10 @@
|
||||
@use '../colors' as *;
|
||||
@use '../../../theme_colors.scss' as *;
|
||||
|
||||
window.battery_info {
|
||||
font-weight: bold;
|
||||
|
||||
>box {
|
||||
border: 1px solid $color0;
|
||||
border: 1px solid $base00;
|
||||
border-radius: 10px;
|
||||
margin: 8px;
|
||||
}
|
||||
@ -12,7 +12,7 @@ window.battery_info {
|
||||
>.inner {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
padding: 0.75rem 3rem;
|
||||
margin: 0;
|
||||
|
||||
@ -22,7 +22,7 @@ window.battery_info {
|
||||
|
||||
* {
|
||||
transition: all 0.2s ease-in-out;
|
||||
color: $color0;
|
||||
color: $base00;
|
||||
}
|
||||
}
|
||||
|
||||
@ -33,24 +33,24 @@ window.battery_info {
|
||||
|
||||
window.battery_info button {
|
||||
transition: all 0.2s ease-in-out;
|
||||
background: $color5;
|
||||
border: 2px solid $color0;
|
||||
background: $base0B;
|
||||
border: 2px solid $base00;
|
||||
margin: 5px;
|
||||
|
||||
&:hover {
|
||||
background: $color0;
|
||||
background: $base00;
|
||||
|
||||
* {
|
||||
color: $color5;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: $color0;
|
||||
border: 0.5px solid $color5;
|
||||
background: $base00;
|
||||
border: 0.5px solid $base0B;
|
||||
|
||||
* {
|
||||
color: $color5;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
}
|
@ -1,51 +1,51 @@
|
||||
@use '../colors' as *;
|
||||
@use '../../../theme_colors.scss' as *;
|
||||
|
||||
.clipboard {
|
||||
entry {
|
||||
background: $color5;
|
||||
color: $color0;
|
||||
background: $base0B;
|
||||
color: $base00;
|
||||
padding: 8px 12px;
|
||||
border: none;
|
||||
|
||||
margin-bottom: 6px;
|
||||
|
||||
&:focus {
|
||||
outline: 2px solid $color0;
|
||||
outline: 2px solid $base00;
|
||||
}
|
||||
}
|
||||
|
||||
.entry.primary {
|
||||
background: $color3;
|
||||
background: $base00;
|
||||
|
||||
&:hover>.content {
|
||||
color: $color3;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
|
||||
.entry {
|
||||
padding: 10px;
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
border-radius: 8px;
|
||||
transition: background 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
background: $color0;
|
||||
background: $base00;
|
||||
|
||||
>.content {
|
||||
color: $color5;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
color: $color0;
|
||||
color: $base00;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
}
|
||||
}
|
||||
|
||||
.not-found {
|
||||
background: $color5;
|
||||
color: $color0;
|
||||
background: $base0B;
|
||||
color: $base00;
|
||||
font-size: 14px;
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
|
@ -1,31 +1,31 @@
|
||||
@use '../colors' as *;
|
||||
@use '../../../theme_colors.scss' as *;
|
||||
|
||||
.launcher {
|
||||
entry {
|
||||
background: $color5;
|
||||
color: $color0;
|
||||
background: $base0B;
|
||||
color: $base00;
|
||||
padding: 8px 12px;
|
||||
border: none;
|
||||
|
||||
margin-bottom: 6px;
|
||||
|
||||
&:focus {
|
||||
outline: 2px solid $color0;
|
||||
outline: 2px solid $base00;
|
||||
}
|
||||
}
|
||||
|
||||
.application {
|
||||
padding: 10px;
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
border-radius: 8px;
|
||||
transition: background 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
background: $color0;
|
||||
background: $base00;
|
||||
|
||||
box>.name,
|
||||
box>.description {
|
||||
color: $color5;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
|
||||
@ -34,20 +34,20 @@
|
||||
}
|
||||
|
||||
.name {
|
||||
color: $color0;
|
||||
color: $base00;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.description {
|
||||
color: $color0;
|
||||
color: $base00;
|
||||
font-size: 12px;
|
||||
}
|
||||
}
|
||||
|
||||
.not-found {
|
||||
background: $color5;
|
||||
color: $color0;
|
||||
background: $base0B;
|
||||
color: $base00;
|
||||
font-size: 14px;
|
||||
padding: 10px;
|
||||
border-radius: 8px;
|
||||
|
@ -1,10 +1,10 @@
|
||||
@use '../colors' as *;
|
||||
@use '../../../theme_colors.scss' as *;
|
||||
|
||||
window.quick_settings {
|
||||
font-weight: bold;
|
||||
|
||||
>box {
|
||||
border: 1px solid $color0;
|
||||
border: 1px solid $base00;
|
||||
border-radius: 10px;
|
||||
margin: 8px;
|
||||
}
|
||||
@ -12,13 +12,13 @@ window.quick_settings {
|
||||
>.inner {
|
||||
border-bottom-left-radius: 0;
|
||||
border-bottom-right-radius: 0;
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
padding: 0.75rem 3rem;
|
||||
margin: 0;
|
||||
|
||||
* {
|
||||
transition: all 0.2s ease-in-out;
|
||||
color: $color0;
|
||||
color: $base00;
|
||||
}
|
||||
}
|
||||
|
||||
@ -29,11 +29,11 @@ window.quick_settings {
|
||||
|
||||
window.qs_bluetooth {
|
||||
>.inner {
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
padding: 0.75rem 3rem;
|
||||
border-radius: 10px;
|
||||
|
||||
* { color: $color0; }
|
||||
* { color: $base00; }
|
||||
}
|
||||
|
||||
.device {
|
||||
@ -47,24 +47,24 @@ window.qs_bluetooth {
|
||||
|
||||
window.quick_settings button, window.qs_bluetooth button {
|
||||
transition: all 0.2s ease-in-out;
|
||||
background: $color5;
|
||||
border: 2px solid $color0;
|
||||
background: $base0B;
|
||||
border: 2px solid $base00;
|
||||
margin: 5px;
|
||||
|
||||
&:hover {
|
||||
background: $color0;
|
||||
background: $base00;
|
||||
|
||||
* {
|
||||
color: $color5;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
|
||||
&.active {
|
||||
background: $color0;
|
||||
border: 0.5px solid $color5;
|
||||
background: $base00;
|
||||
border: 0.5px solid $base0B;
|
||||
|
||||
* {
|
||||
color: $color5;
|
||||
color: $base0B;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
@use '../../../theme_colors.scss' as *;
|
||||
|
||||
@use 'variables' as *;
|
||||
@use 'colors' as *;
|
||||
@use 'mixins';
|
||||
@use 'classes';
|
||||
@use 'components';
|
||||
@ -9,11 +10,11 @@
|
||||
}
|
||||
|
||||
separator {
|
||||
background: $color0;
|
||||
background: $base00;
|
||||
}
|
||||
|
||||
popover>contents, calendar {
|
||||
background: $color5;
|
||||
background: $base0B;
|
||||
}
|
||||
|
||||
button, button:hover {
|
||||
@ -21,7 +22,7 @@ button, button:hover {
|
||||
}
|
||||
|
||||
popover modelbutton {
|
||||
&:hover, &:focus { background: $color6; }
|
||||
&:hover, &:focus { background: $base0C; }
|
||||
}
|
||||
|
||||
image {
|
||||
|
Reference in New Issue
Block a user