Skip to content

Commit 8ee6abf

Browse files
committed
fixed up colors of some minor elements
1 parent c6bdedc commit 8ee6abf

File tree

4 files changed

+8
-19
lines changed

4 files changed

+8
-19
lines changed

src/routes/Header.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@
3939
width: 100vw;
4040
transition: border-color 0.2s 0s;
4141
animation: fadein 0.2s 0s both;
42-
border-bottom: 2px solid var(--violet-700);
42+
border-bottom: 2px solid var(--violet-900);
4343
background-color: var(--violet-100);
4444
}
4545
@keyframes fadein {
4646
0% {
4747
border-bottom-color: transparent;
4848
}
4949
100% {
50-
border-bottom-color: var(--violet-700);
50+
border-bottom-color: var(--violet-900);
5151
}
5252
}
5353
div.hide {

src/routes/Nicknames.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
}
3232
.main > li {
3333
padding: var(--gap-0-5);
34-
outline: 2px solid var(--violet);
34+
outline: 2px solid var(--violet-700);
3535
outline-offset: -1px;
3636
flex-grow: 1;
3737
width: 300px;

src/routes/styles/global.css

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,30 +5,19 @@
55
}
66

77
:root {
8+
--white: #ffffff;
9+
--black: #1e1729;
10+
--purple-500: #aba3f1;
811
--blue-700: #5bcefa;
912
--indigo-700: #8ea5f8;
1013
--lavender-700: #d7a0f7;
1114
--violet-100: #040421;
1215
--pink-700: #f5a9b8;
13-
--white: #ffffff;
14-
--black: #1e1729;
15-
--purple-500: #aba3f1;
16-
--lime: #86ec99;
17-
--ivy: #65d656;
18-
--forest: #6a9955;
19-
--moss: #335122;
20-
--pine: #172a18;
2116
--gold-100: #413900;
2217
--gold-300: #846905;
2318
--gold-500: #ce9409;
2419
--gold-700: #ffd140;
2520
--gold-900: #fff4b8;
26-
--clay: #f59778;
27-
--grapefruit: #d16969;
28-
--sky: #9cdcfe;
29-
--water: #86b6ec;
30-
--spring: #4fc1ff;
31-
--violet: #aba3f1;
3221
--sea-100: #193632;
3322
--sea-300: #345348;
3423
--sea-500: #6e9d87;

src/routes/styles/scrollbar.css

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

99
::-webkit-scrollbar-thumb {
10-
background-color: var(--violet);
10+
background-color: var(--violet-900);
1111
margin: 0.1rem;
1212
}
1313

1414
::-webkit-scrollbar-thumb:hover {
15-
background-color: var(--ultraviolet);
15+
background-color: var(--violet-700);
1616
}

0 commit comments

Comments
 (0)