mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
Adding class for colors
This commit is contained in:
parent
251f51bab2
commit
8c3ea5b866
@ -2732,6 +2732,50 @@ th {
|
||||
.fa-medium:before {
|
||||
content: ""; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-blue {
|
||||
color: #334d5c; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-green {
|
||||
color: #43b29d; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-green-dark {
|
||||
color: #328474; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-yellow {
|
||||
color: #eec84a; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-orange {
|
||||
color: #e2793d; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-red {
|
||||
color: #df4949; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-gray {
|
||||
color: #ececec; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-beige {
|
||||
color: #cabb9f; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-pink {
|
||||
color: #dd506d; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-dark-gray {
|
||||
color: #333333; }
|
||||
|
||||
@media -sass-debug-info{filename{font-family:file\:\/\/\/Users\/marcu\/Projects\/Chill\/vendor\/chill-project\/main\/Resources\/public\/sass\/custom\/config\/_colors\.scss}line{font-family:\0000318}}
|
||||
.chill-light-gray {
|
||||
color: #b2b2b2; }
|
||||
|
||||
/*
|
||||
// Flash Colors
|
||||
$alert-color: $light-yellow;
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,3 +1,4 @@
|
||||
|
||||
$chill-blue: #334d5c;
|
||||
$chill-green: #43b29d;
|
||||
$chill-green-dark: #328474;
|
||||
@ -7,12 +8,21 @@ $chill-red: #df4949;
|
||||
$chill-gray: #ececec;
|
||||
$chill-beige :#cabb9f;
|
||||
$chill-pink :#dd506d;
|
||||
|
||||
$chill-dark-gray: #333333;
|
||||
$chill-light-gray: #b2b2b2;
|
||||
|
||||
$color-name: "blue" "green" "green-dark" "yellow" "orange" "red" "gray" "beige" "pink" "dark-gray" "light-gray";
|
||||
$color-code: #334d5c #43b29d #328474 #eec84a #e2793d #df4949 #ececec #cabb9f #dd506d #333333 #b2b2b2;
|
||||
|
||||
@for $i from 1 through length($color-name) {
|
||||
.chill-#{nth($color-name, $i)} {
|
||||
color: nth($color-code, $i);
|
||||
}
|
||||
}
|
||||
|
||||
$orange: $chill-orange;
|
||||
$red: $chill-red;
|
||||
$green: $chill-green;
|
||||
$blue: $chill-blue;
|
||||
$yellow: $chill-yellow;
|
||||
$yellow: $chill-yellow;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user