Skip to content

Commit 972a19d

Browse files
committed
New color scheme
1 parent 78ca7b0 commit 972a19d

File tree

4 files changed

+19
-23
lines changed

4 files changed

+19
-23
lines changed

src/scss/coder.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
@import 'table';
44

55
#coder {
6-
background-color: $color5;
6+
background-color: $color4;
77
}
88

99
.box-stat {
10-
color: $color3;
10+
color: $color1;
1111
font-size: .8em;
1212
text-align: center;
1313
width: 12em;
@@ -19,17 +19,17 @@
1919
}
2020

2121
.boxes {
22-
background-color: $color1;
22+
background-color: $color3;
2323
padding: 1em 0;
2424
}
2525

2626
.boxes .box-stat:not(:last-child) {
27-
border-right: 1px solid $color3;
27+
border-right: 1px solid $color1;
2828
margin-right: 1px;
2929
}
3030

3131
.ct-series-a .ct-bar {
32-
stroke: $color5;
32+
stroke: $color2;
3333
}
3434

3535
.main {

src/scss/nav.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
nav {
2-
background-color: $color4;
2+
background-color: $color1;
33
padding: .5em 0;
44
position: static;
55
}

src/scss/palette.scss

Lines changed: 5 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
1-
/* Coolors Exported Palette - coolors.co/dcdcdd-c5c3c6-46494c-4c5c68-98c1d9 */
2-
3-
/* HSL */
4-
$color1: hsla(240%, 1%, 86%, 1);
5-
$color2: hsla(280%, 3%, 77%, 1);
6-
$color3: hsla(210%, 4%, 29%, 1);
7-
$color4: hsla(206%, 16%, 35%, 1);
8-
$color5: hsla(202%, 46%, 72%, 1);
9-
10-
/* RGB */
11-
$color1: rgba(220, 220, 221, 1);
12-
$color2: rgba(197, 195, 198, 1);
13-
$color3: rgba(70, 73, 76, 1);
14-
$color4: rgba(76, 92, 104, 1);
15-
$color5: rgba(152, 193, 217, 1);
1+
$color1: rgba(19, 41, 61, 1);
2+
$color2: rgba(0, 100, 148, 1);
3+
$color3: #6CC0E5;
4+
$color4: #e3ffff;
5+
$color5: rgba(232, 241, 242, 1);

src/scss/style.scss

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
$base-font-family: Roboto, sans-serif;
2+
$base-heading-font-family: Arial Black;
13
$base-link-color: #0000ee;
24
$base-link-hover-color: #0000ff;
35

@@ -6,7 +8,7 @@ $base-link-hover-color: #0000ff;
68
@import 'blockquote';
79

810
body {
9-
background-color: $color1;
11+
background-color: $color5;
1012
}
1113

1214
a {
@@ -24,7 +26,7 @@ img {
2426
}
2527

2628
.box-search {
27-
background-color: $color5;
29+
background-color: $color3;
2830
border: none;
2931
padding: 4em;
3032
}
@@ -39,6 +41,10 @@ img {
3941
background-color: #fff;
4042
}
4143

44+
.main h2 {
45+
margin: 1rem 0;
46+
}
47+
4248
.padh {
4349
padding: 0 1em;
4450
}

0 commit comments

Comments
 (0)