Skip to content

Commit 476f86c

Browse files
committed
refactor colors
1 parent fe090c7 commit 476f86c

File tree

144 files changed

+827
-771
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+827
-771
lines changed

Grayjay.Desktop.Web/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!DOCTYPE html>
2-
<html lang="en" style="background-color: #1b1b1b">
2+
<html lang="en" style="background-color: var(--black-color-2)">
33
<head>
44
<meta charset="utf-8" />
55
<meta name="viewport" content="width=device-width, initial-scale=1" />

Grayjay.Desktop.Web/src/assets/icons/nodevicesfound.svg

Lines changed: 2 additions & 2 deletions
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading
Lines changed: 1 addition & 1 deletion
Loading

Grayjay.Desktop.Web/src/components/ButtonGroup/index.module.css

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
padding: 0px 8px;
1616
gap: 4px;
1717
border-radius: 99px;
18-
border: 1px solid rgba(255, 255, 255, 0.07);
18+
border: 1px solid rgb(from var(--white-color) r g b / 0.07);
1919
background: rgba(99, 101, 240, 0.00);
20-
color: #8C8C8C;
20+
color: var(--grey-color-4);
2121
font-feature-settings: 'clig' off, 'liga' off;
2222
font-family: Inter;
2323
font-size: 16px;
@@ -31,6 +31,6 @@
3131
}
3232

3333
.containerButton.active {
34-
background: rgba(255, 255, 255, 0.06);
35-
color: #FFF;
34+
background: rgb(from var(--white-color) r g b / 0.06);
35+
color: var(--white-color);
3636
}

Grayjay.Desktop.Web/src/components/CommentView/index.module.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
}
2020

2121
.text {
22-
color: #D9D9D9;
22+
color: var(--grey-color-3);
2323
leading-trim: both;
2424
text-edge: cap;
2525
font-family: Inter;
@@ -35,7 +35,7 @@
3535
}
3636

3737
.text > a {
38-
color: #019BE7;
38+
color: var(--blue-color-1);
3939
text-decoration: none;
4040
}
4141

@@ -71,7 +71,7 @@
7171
}
7272

7373
.authorName {
74-
color: #FFF;
74+
color: var(--white-color);
7575
leading-trim: both;
7676
text-edge: cap;
7777
font-family: Inter;
@@ -82,7 +82,7 @@
8282
}
8383

8484
.metadata {
85-
color: #888;
85+
color: var(--grey-color-4);
8686
leading-trim: both;
8787
text-edge: cap;
8888
font-family: Inter;
@@ -100,9 +100,9 @@
100100
align-items: center;
101101
gap: 4px;
102102
border-radius: 99px;
103-
border: 1px solid #454545;
103+
border: 1px solid var(--grey-color-7);
104104
overflow: hidden;
105-
color: #FFF;
105+
color: var(--white-color);
106106
text-align: center;
107107
font-family: Inter;
108108
font-size: 14px;

Grayjay.Desktop.Web/src/components/EmptyContentView/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
}
88
.noSubs .title {
99
margin-top: 16px;
10-
color: #FFF;
10+
color: var(--white-color);
1111

1212
text-align: center;
1313
font-family: Inter;
@@ -18,7 +18,7 @@
1818
}
1919
.noSubs .description {
2020
margin-top: 8px;
21-
color: #575757;
21+
color: var(--grey-color-5);
2222
text-align: center;
2323
font-family: Inter;
2424
font-size: 18px;
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.menu{
2-
background-color: #141414;
2+
background-color: var(--black-color-1);
33
padding: 12px;
44
border-radius: 10px;
55
border-radius: 10px;
6-
border: 1px solid #2E2E2E;
6+
border: 1px solid var(--grey-color-6);
77
box-shadow: 0px 1.852px 3.148px 0px rgba(0, 0, 0, 0.06), 0px 8.148px 6.519px 0px rgba(0, 0, 0, 0.10), 0px 20px 13px 0px rgba(0, 0, 0, 0.13), 0px 38.519px 25.481px 0px rgba(0, 0, 0, 0.15), 0px 64.815px 46.852px 0px rgba(0, 0, 0, 0.19), 0px 100px 80px 0px rgba(0, 0, 0, 0.25);
88
}

Grayjay.Desktop.Web/src/components/LiveChatRemoteWindow/index.module.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
.window {
1010
height: 100%;
1111
padding: 10px;
12-
background-color: #111;
12+
background-color: var(--black-color-1);
1313
border-radius: 10px;
14-
border: 2px solid #222;
14+
border: 2px solid var(--grey-color-8);
1515
box-sizing: border-box;
1616
}
1717
.window iframe {

0 commit comments

Comments
 (0)