1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-30 11:24:21 +01:00
fab-manager/app/assets/stylesheets/app.colors.scss

141 lines
1.8 KiB
SCSS
Raw Normal View History

2020-03-24 18:17:26 +01:00
.bg-light {
background-color: $brand-light;
}
2015-05-05 03:10:25 +02:00
2016-03-23 18:39:41 +01:00
//.bg-red { background-color: $red; color: white; }
//.bg-red-dark { background-color: $red-dark; }
//.bg-yellow { background-color: $yellow !important; }
2020-03-24 18:17:26 +01:00
.bg-token {
background-color: rgba(230, 208, 137, 0.49);
}
.bg-machine {
background-color: $beige;
}
.bg-space {
background-color: $cyan;
}
.bg-formation {
background-color: $violet;
}
.bg-event {
background-color: $japonica;
}
.bg-atelier {
background-color: $blue;
}
.bg-stage {
background-color: $violet;
}
.bg-success {
background-color: $brand-success;
}
.bg-info {
background-color: $brand-info;
}
.border-machine {
border-color: $beige !important;
}
.border-space {
border-color: $cyan !important;
}
.border-formation {
border-color: $violet !important;
}
.border-event {
border-color: $japonica !important;
}
.bg-black-light {
background-color: #424242 !important;
}
2015-05-05 03:10:25 +02:00
.bg-white {
2020-03-24 18:17:26 +01:00
background-color: #fff;
color: $text-color;
a {
color: $link-color;
&:hover {
color: darken($link-color, 10%);
}
}
.text-muted {
color: $text-muted !important;
}
}
.bg-white-only {
background-color: #fff;
}
.bg-empty {
background-color: transparent;
}
.text-black {
color: #000 !important;
}
.text-black-light {
color: #424242 !important;
}
.text-gray {
color: #5a5a5a !important;
}
.text-white {
color: #fff !important;
}
2016-03-23 18:39:41 +01:00
//.text-yellow { color: $yellow !important; }
2020-03-24 18:17:26 +01:00
.text-blue {
color: $blue;
}
.text-muted {
color: $text-muted;
}
.text-danger, .red {
color: $red !important;
}
.text-red-only {
color: $red !important;
}
.text-purple {
color: $violet !important;
}
.text-japonica {
color: $japonica !important;
}
.text-beige {
color: $beige !important;
}
.text-cyan {
color: $cyan !important;
}
.text-green, .green {
color: #79C84A !important;
}