add more colors from c3groc to the 35c3 theme

This commit is contained in:
msquare 2018-11-24 17:22:15 +01:00
parent c6c4792e0d
commit b36721f0c2
1 changed files with 21 additions and 13 deletions

View File

@ -32,17 +32,17 @@ THE SOFTWARE.
// //
//## Gray and brand colors for use across Bootstrap. //## Gray and brand colors for use across Bootstrap.
@gray-darker: #222; // #222 @gray-darker: darken(@gray-dark, 20%);
@gray-dark: #282828; // #333 @gray-dark: darken(@gray, 20%);
@gray: rgb(77, 77, 76); // #555 @gray: #4d4d4c; // BEBOOT
@gray-light: rgb(97, 97, 96); // #999 @gray-light: lighten(@gray, 20%);
@gray-lighter: #ADAFAE; // #eee @gray-lighter: lighten(@gray-light, 20%);
@brand-primary: rgb(0, 132, 176); @brand-primary: #0084b0; // FRESH
@brand-success: rgb(0, 163, 86); @brand-success: #00a356; // HOPE
@brand-info: #5bc0de; @brand-info: #18386b; // BASE
@brand-warning: #f0ad4e; @brand-warning: #f9b000; // GLINT
@brand-danger: #d9534f; @brand-danger: #e40429; // BEAT
//== Scaffolding //== Scaffolding
@ -50,12 +50,12 @@ THE SOFTWARE.
//## Settings for some of the most global styles. //## Settings for some of the most global styles.
//** Background color for `<body>`. //** Background color for `<body>`.
@body-bg: #060606; @body-bg: #000;
//** Global text color on `<body>`. //** Global text color on `<body>`.
@text-color: @gray-light; @text-color: @gray-lighter;
//** Global textual link color. //** Global textual link color.
@link-color: @brand-primary; @link-color: @brand-success;
//** Link hover color set via `darken()` function. //** Link hover color set via `darken()` function.
@link-hover-color: @link-color; @link-hover-color: @link-color;
@ -1047,3 +1047,11 @@ a.thumbnail.active {
.btn-primary { .btn-primary {
background-image: linear-gradient(to right, rgb(0, 132, 176) , rgb(0, 163, 86)); background-image: linear-gradient(to right, rgb(0, 132, 176) , rgb(0, 163, 86));
} }
.label-warning {
color: #000;
}
#content a:not(.btn) {
text-decoration: underline;
}