5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-02 13:34:16 +00:00
panel/app/assets/stylesheets/dark.scss

35 lines
418 B
SCSS

$black: black;
$white: white;
$cyan: #13fefe;
:root {
--foreground: #{$white};
--background: #{$black};
--color: #{$cyan};
}
.btn {
background-color: $white;
}
.btn-secondary {
background-color: $white;
color: $black;
border: none;
&:hover {
color: $black;
background-color: $cyan;
}
&:active {
background-color: $cyan;
}
&:focus {
box-shadow: 0 0 0 0.2rem $cyan;
}
}