Skip to content

Commit f07f60f

Browse files
committed
update logo and color scheme across components
1 parent 5ff8ae0 commit f07f60f

File tree

15 files changed

+24
-39
lines changed

15 files changed

+24
-39
lines changed
38 KB
Loading
9.41 KB
Loading

assets-src/styles/sass/00-settings/_colors.scss

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $teal: #39cccc;
2424
$aqua: #7fdbff;
2525
$blue: #0073d8;
2626
$navy: #001f3f;
27-
$purple: #920ba6;
27+
$purple: #75336c;
2828
$fuchsia: #f012be;
2929
$grey: #aaa;
3030
$mercury-grey: #e5e5e5;
@@ -38,21 +38,17 @@ $red: #e93737;
3838
$light-red: #ec7070;
3939
$coral: #fc7750;
4040
$light-coral: #fea78d;
41-
$deep-yellow: #f9c818;
4241
$yellow: #f9dc4a;
4342
$deep-green: #0a4343;
4443
$teal-green: #237978;
4544
$aqua: #1bc0d7;
4645
$light-blue: #cbe0fb;
47-
$sky-blue: #6bc8fe;
48-
$azure: #0075ff;
4946
$w3c-blue: #005a9c;
50-
$blue: #005797;
51-
$deep-blue: #024488;
47+
$deep-blue: #002a56;
5248
$pink: #ddb0c8;
5349
$light-pink: #eeccdc;
5450
$storm-gray: #545454;
55-
$twiki-gray: #bdbdbd;
51+
$twiki-gray: #cac9c9;
5652
$mist-gray: #f8f8fb;
5753

5854

@@ -63,12 +59,12 @@ $border-color: $twiki-gray;
6359
$input-border-color: $storm-gray;
6460
$focus-color: $yellow;
6561

66-
$link-color: $blue;
62+
$link-color: $w3c-blue;
6763
$link-color--visited: $purple;
6864
$link-color--hover: $deep-blue;
6965

7066
$success-color: #046704;
71-
$info-color: $w3c-blue;
67+
$info-color: $deep-blue;
7268
$warning-color: #c28605;
7369
$error-color: #a82615;
7470

assets-src/styles/sass/50-core-components/_cards.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
}
4040

4141
&.talk {
42-
border-color: $deep-yellow;
42+
border-color: $deep-blue;
4343
}
4444

4545
&.workshop {

assets-src/styles/sass/50-core-components/_evangelists.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
}
3131

3232
.component--evangelists__list {
33-
background-color: $w3c-blue;
33+
background-color: $deep-blue;
3434
border-radius: rem(6);
3535
color: $white;
3636
overflow: hidden;

assets-src/styles/sass/50-core-components/_logo.scss

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44

55
.logo {
66
display: block;
7-
height: rem(44);
87
position: relative;
9-
width: rem(66);
8+
max-width: rem(80);
9+
10+
> img {
11+
display: block;
12+
width: 100%;
13+
}
1014

11-
@include mq($bp-tab-large) {
12-
height: rem(52);
13-
width: rem(78);
15+
@include mq($bp-lap){
16+
max-width: rem(115);
1417
}
18+
1519
}
1620

1721
.logo--member {

assets-src/styles/sass/50-core-components/_navigation.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
}
88

99
#global-nav {
10-
border-bottom: solid 1px $border-color;
1110
display: block;
1211
padding-bottom: rem(18);
1312
padding-top: rem(18);
@@ -24,7 +23,6 @@
2423
flex-wrap: wrap;
2524

2625
@include mq($max-width) {
27-
align-items: flex-end;
2826
flex-wrap: nowrap;
2927
position: relative;
3028
}

assets-src/styles/sass/50-core-components/_quotes.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
.component--quote {
66
@include txt-saturn;
7-
color: $w3c-blue;
7+
color: $deep-blue;
88
font-weight: bold;
99
margin-inline-end: 0;
1010
margin-inline-start: rem(10);
1111
padding: rem(20);
1212
position: relative;
1313

1414
&::before {
15-
background-color: $w3c-blue;
15+
background-color: $deep-blue;
1616
border-radius: rem(5);
1717
left: rem(-10);
1818
width: rem(10);

assets-src/styles/sass/50-core-components/_slide.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
}
4141

4242
&::before {
43-
background-color: $w3c-blue;
43+
background-color: $deep-blue;
4444
border-radius: rem(5);
4545
content: '';
4646
height: 100%;

assets-src/styles/sass/50-core-components/_toc.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
// Only apply the border to the top level list
1919
.toc > ul {
20-
border-inline-start: solid 3px $deep-yellow;
20+
border-inline-start: solid 3px $w3c-blue;
2121
}
2222

2323
.toc ul {

0 commit comments

Comments
 (0)