chore: move theme color var definition in palette.scss
This commit is contained in:
parent
45a74a1591
commit
7b882ecb6b
2 changed files with 23 additions and 20 deletions
|
@ -57,26 +57,6 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Couleurs du theme
|
|
||||||
|
|
||||||
$color-link: get-color("link");
|
|
||||||
$color-selection: get-color("selection");
|
|
||||||
$color-mark: get-color("mark");
|
|
||||||
$color-font: get-color("font");
|
|
||||||
$color-font-light: get-color("font-light");
|
|
||||||
|
|
||||||
$color-primary: get-color("primary");
|
|
||||||
$color-secondary: get-color("secondary");
|
|
||||||
$color-warning: get-color("warning");
|
|
||||||
$color-danger: get-color("danger");
|
|
||||||
$color-info: get-color("info");
|
|
||||||
$color-success: get-color("success");
|
|
||||||
|
|
||||||
$color-muted: get-color("muted");
|
|
||||||
|
|
||||||
$color-background: get-color("background");
|
|
||||||
$color-background-alt: get-color("background-alt");
|
|
||||||
|
|
||||||
// fonction texte et background
|
// fonction texte et background
|
||||||
|
|
||||||
@mixin text-color($text-color) {
|
@mixin text-color($text-color) {
|
||||||
|
|
|
@ -45,3 +45,26 @@ $semantics: (
|
||||||
"info":"skyblue",
|
"info":"skyblue",
|
||||||
"success":"green",
|
"success":"green",
|
||||||
"muted":"grey");
|
"muted":"grey");
|
||||||
|
|
||||||
|
// **Couleurs du theme**
|
||||||
|
// Ne pas retirer ces couleurs, qui
|
||||||
|
// sont essentielle pour que le framework functionne.
|
||||||
|
// Pour les modifier, modifier le contenu du tableau $semantics.
|
||||||
|
|
||||||
|
$color-link: get-color("link");
|
||||||
|
$color-selection: get-color("selection");
|
||||||
|
$color-mark: get-color("mark");
|
||||||
|
$color-font: get-color("font");
|
||||||
|
$color-font-light: get-color("font-light");
|
||||||
|
|
||||||
|
$color-primary: get-color("primary");
|
||||||
|
$color-secondary: get-color("secondary");
|
||||||
|
$color-warning: get-color("warning");
|
||||||
|
$color-danger: get-color("danger");
|
||||||
|
$color-info: get-color("info");
|
||||||
|
$color-success: get-color("success");
|
||||||
|
|
||||||
|
$color-muted: get-color("muted");
|
||||||
|
|
||||||
|
$color-background: get-color("background");
|
||||||
|
$color-background-alt: get-color("background-alt");
|
||||||
|
|
Loading…
Reference in a new issue