mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 15:46:21 +00:00
18 lines
271 B
SCSS
18 lines
271 B
SCSS
$black: black;
|
|
$white: white;
|
|
$cyan: #13fefe;
|
|
|
|
:root {
|
|
--foreground: #{$white};
|
|
--background: #{$black};
|
|
--color: #{$cyan};
|
|
--card-border-color: #{rgba($white, .250)};
|
|
--btn-bg-color: #{$white};
|
|
--btn-color: #{$black};
|
|
}
|
|
|
|
.btn-secondary {
|
|
border: none;
|
|
}
|
|
|
|
|