2026-01-20 11:28:37 +00:00
|
|
|
@use '@beeline/design-tokens/scss/font-face';
|
|
|
|
|
@use "@beeline/design-tokens/scss/iconfont/iconfont" with (
|
|
|
|
|
$font-path-iconfont: '../assets/fonts/iconfont'
|
|
|
|
|
);
|
|
|
|
|
@use "@beeline/design-tokens/scss/iconfont/icons";
|
2025-07-24 14:10:21 +03:00
|
|
|
@use '@beeline/design-tokens/scss/tokens/themes/dark';
|
|
|
|
|
@use '@beeline/design-tokens/scss/tokens/themes';
|
|
|
|
|
|
2025-03-27 13:43:31 +06:00
|
|
|
:root {
|
|
|
|
|
--color-text-active: rgba(9, 11, 22, 0.94);
|
|
|
|
|
--color-text-inactive: rgba(25, 28, 52, 0.7);
|
|
|
|
|
--color-gradient-magma: linear-gradient(-46deg, #1a73e8 0%, #bc00b8 49.44%, #f55555 100%);
|
|
|
|
|
|
|
|
|
|
// Button
|
|
|
|
|
--color-button-contained-background-color: #fdd835;
|
|
|
|
|
--color-button-contained-hover-background-color: #fdc435;
|
|
|
|
|
--color-button-contained-text-color: rgba(9, 11, 22, 0.94);
|
2025-07-24 14:10:21 +03:00
|
|
|
|
|
|
|
|
@include themes.theme();
|
2025-03-27 13:43:31 +06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.dark {
|
|
|
|
|
--color-text-active: rgba(255, 255, 255, 0.87);
|
|
|
|
|
--color-text-inactive: rgba(255, 255, 255, 0.6);
|
2025-07-24 14:10:21 +03:00
|
|
|
|
|
|
|
|
@include themes.theme(dark.$theme);
|
2025-03-27 13:43:31 +06:00
|
|
|
}
|