mirror of
https://0xacab.org/sutty/sutty
synced 2025-02-17 00:31:46 +00:00
32 lines
627 B
SCSS
32 lines
627 B
SCSS
$black: black;
|
|
$white: white;
|
|
$grey: grey;
|
|
$cyan: #13fefe;
|
|
$magenta: #f206f9;
|
|
|
|
$colors: (
|
|
"black": $black,
|
|
"white": $white,
|
|
"cyan": $cyan,
|
|
"magenta": $magenta
|
|
);
|
|
|
|
// Redefinir variables de Bootstrap
|
|
$primary: $magenta;
|
|
$secondary: $black;
|
|
$jumbotron-bg: transparent;
|
|
$enable-rounded: false;
|
|
$form-feedback-valid-color: $cyan;
|
|
$form-feedback-invalid-color: $magenta;
|
|
$form-feedback-icon-valid-color: $black;
|
|
$component-active-bg: $magenta;
|
|
$font-family-sans-serif: 'Saira', sans-serif;
|
|
|
|
$spacers: (
|
|
2-plus: 0.75rem
|
|
);
|
|
|
|
@import './fonts';
|
|
@import 'bootstrap/scss/bootstrap';
|
|
@import './styles';
|
|
@import './new_editor';
|