Files
system/my-bulma-project.scss
Xuan Loi ae1ea57130 changes
2026-01-09 17:25:23 +07:00

30 lines
506 B
SCSS

// Set your brand colors
$primary: #3392ec; //#008000;
$findata: #ff8829; //#F4F7F8;
$warning: #ff8829;
$sitecolor: hsl(0, 0%, 14%);
// Path to Bulma's sass folder
@use "bulma/sass" with (
$family-primary: 'Arial, sans-serif;',
$primary: $primary,
$warning: $warning,
$body-color: $sitecolor
);
a {
color: inherit !important;
};
a:hover {
color: $primary !important;
};
strong, label {
color: $sitecolor !important;
}
.hyperlink:hover {
cursor: pointer;
color: $primary !important;
}