Files
web/my-bulma-project.scss
2026-05-22 09:57:12 +07:00

75 lines
1.5 KiB
SCSS

@use "sass:string";
$red: #ff2e4e;
$orange: #fd8206;
$yellow: #eec704;
$green: #16d164;
$cyan: #03c2c2;
$blue: #1678ff;
$purple: #833bff;
$pink: #ff2bdd;
@use "bulma/sass" with (
$family-primary: string.unquote("'Inter', 'SF Pro', 'Helvetica', 'Arial', sans-serif"),
$family-monospace: string.unquote("'Roboto Mono', monospace"),
$primary: $blue,
$link: $blue,
$info: $cyan,
$success: $green,
$warning: $yellow,
$danger: $red,
$custom-colors: (
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"cyan": $cyan,
"blue": $blue,
"purple": $purple,
"pink": $pink,
),
$spacing-values: (
"auto": auto,
"px": 1px,
"full": 100%,
"min": min-content,
"max": max-content,
"fit": fit-content,
"0": 0,
"0\\.5": 0.125rem,
"1": 0.25rem,
"1\\.5": 0.375rem,
"2": 0.5rem,
"2\\.5": 0.625rem,
"3": 0.75rem,
"3\\.5": 0.875rem,
"4": 1rem,
"4\\.5": 1.125rem,
"5": 1.25rem,
"5\\.5": 1.375rem,
"6": 1.5rem,
"6\\.5": 1.625rem,
"7": 1.75rem,
"7\\.5": 1.875rem,
"8": 2rem,
"8\\.5": 2.125rem,
"9": 2.25rem,
"9\\.5": 2.375rem,
"10": 2.5rem,
"11": 2.75rem,
"12": 3rem,
"14": 3.5rem,
"16": 4rem,
"20": 5rem,
"24": 6rem,
"28": 7rem,
"32": 8rem,
"36": 9rem,
"40": 10rem,
"44": 11rem,
"48": 12rem,
)
);
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");