all 3 color themes for camp and high contrast theme

This commit is contained in:
msquare 2019-07-14 13:09:08 +02:00
parent 10d0428f64
commit 6ca0e8e81a
10 changed files with 3229 additions and 31 deletions

View File

@ -59,13 +59,16 @@ return [
// Available themes
'available_themes' => [
'8' => 'Engelsystem cccamp19 dark (2019)',
'10' => 'Engelsystem cccamp19 green (2019)',
'9' => 'Engelsystem cccamp19 yellow (2019)',
'8' => 'Engelsystem cccamp19 blue (2019)',
'7' => 'Engelsystem 35c3 dark (2018)',
'6' => 'Engelsystem 34c3 dark (2017)',
'5' => 'Engelsystem 34c3 light (2017)',
'4' => 'Engelsystem 33c3 (2016)',
'3' => 'Engelsystem 32c3 (2015)',
'2' => 'Engelsystem cccamp15',
'11' => 'Engelsystem high contrast',
'0' => 'Engelsystem light',
'1' => 'Engelsystem dark',
],

View File

@ -980,10 +980,6 @@ table,
}
}
legend {
color: #fff;
}
.input-group-addon {
background-color: @btn-default-bg;
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -980,10 +980,6 @@ table,
}
}
legend {
color: #fff;
}
.input-group-addon {
background-color: @btn-default-bg;
}

View File

@ -993,10 +993,6 @@ table,
}
}
legend {
color: #fff;
}
.input-group-addon {
background-color: @btn-default-bg;
}

View File

@ -993,10 +993,6 @@ table,
}
}
legend {
color: @gray-darker;
}
.input-group-addon {
background-color: @btn-default-bg;
}

View File

@ -40,7 +40,7 @@ THE SOFTWARE.
@brand-primary: #0076ba;
@brand-success: #99ba00;
@brand-info: #ffc600;
@brand-info: #0076ba;
@brand-warning: #ffc600;
@brand-danger: #d9534f;
@ -164,7 +164,7 @@ THE SOFTWARE.
@btn-font-weight: normal;
@btn-default-color: #000;
@btn-default-bg: @gray;
@btn-default-bg: @gray-light;
@btn-default-border: darken(@btn-default-bg, 10%);
@ -454,11 +454,11 @@ THE SOFTWARE.
@pagination-bg: @gray-darker;
@pagination-border: @gray-dark;
@pagination-hover-color: #fff;
@pagination-hover-color: #000;
@pagination-hover-bg: @component-active-bg;
@pagination-hover-border: transparent;
@pagination-active-color: #fff;
@pagination-active-color: #000;
@pagination-active-bg: @brand-primary;
@pagination-active-border: transparent;
@ -769,9 +769,9 @@ THE SOFTWARE.
//
//##
@badge-color: #fff;
@badge-color: #000;
//** Linked badge text color on hover
@badge-link-hover-color: #fff;
@badge-link-hover-color: #000;
@badge-bg: @brand-primary;
//** Badge text color in active nav link
@ -853,7 +853,7 @@ THE SOFTWARE.
//** Abbreviations and acronyms border color
@abbr-border-color: @gray-light;
//** Headings small color
@headings-small-color: @gray-light;
@headings-small-color: @brand-primary;
//** Blockquote small color
@blockquote-small-color: @gray;
//** Blockquote font size
@ -980,10 +980,6 @@ table,
}
}
legend {
color: #fff;
}
.input-group-addon {
background-color: @btn-default-bg;
}
@ -1055,7 +1051,13 @@ a.thumbnail.active {
strong {
font-weight: lighter;
color: @brand-primary;
text-shadow: 0 0 10px @brand-primary;
text-shadow:
0 0 10px @brand-primary,
0 0 20px @brand-primary,
0 0 30px @brand-primary,
0 0 40px @brand-primary,
0 0 70px @brand-primary,
0 0 80px @brand-primary;
}
}
@ -1063,4 +1065,12 @@ h1 {
font-weight: lighter;
color: @brand-primary;
text-shadow: 0 0 10px @brand-primary;
.icon-icon_angel {
background-color: @brand-primary;
}
}
.panel-title {
color: #fff;
}

File diff suppressed because it is too large Load Diff

View File

@ -23,7 +23,7 @@ const plugins = [
const themeEntries = {};
for (let i = 0; i < 9; i++) {
for (let i = 0; i < 12; i++) {
themeEntries[`theme${i}`] = `./resources/assets/themes/theme${i}.less`;
}