@@ -377,9 +377,9 @@ const OverlayCasting: Component = () => {
-
Connecting to casting device
+
Connecting to casting device
-
Make sure you are on the same network VPNs and guest networks can cause issues
+
Make sure you are on the same network VPNs and guest networks can cause issues
diff --git a/Grayjay.Desktop.Web/src/components/containers/ContentGrid/index.module.css b/Grayjay.Desktop.Web/src/components/containers/ContentGrid/index.module.css
index a76a3f30..a5cdc251 100644
--- a/Grayjay.Desktop.Web/src/components/containers/ContentGrid/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/ContentGrid/index.module.css
@@ -11,16 +11,16 @@
}
.container::-webkit-scrollbar-thumb {
- background-color: #555;
+ background-color: var(--grey-color-5);
border-radius: 5px;
}
.container::-webkit-scrollbar-thumb:hover {
- background-color: #888;
+ background-color: var(--grey-color-4);
}
.container::-webkit-scrollbar-track {
- background-color: #333;
+ background-color: var(--grey-color-6);
}
.container::-webkit-scrollbar-corner {
diff --git a/Grayjay.Desktop.Web/src/components/containers/DataTable/index.module.css b/Grayjay.Desktop.Web/src/components/containers/DataTable/index.module.css
index f3fd8205..5b5d57c6 100644
--- a/Grayjay.Desktop.Web/src/components/containers/DataTable/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/DataTable/index.module.css
@@ -3,7 +3,7 @@
height: 100%;
position: relative;
scrollbar-width: 8px;
- scrollbar-color: #555 #333;
+ scrollbar-color: var(--grey-color-5) var(--grey-color-6);
scrollbar-width: thin;
}
@@ -12,16 +12,16 @@
}
.containerScroll::-webkit-scrollbar-thumb {
- background-color: #555;
+ background-color: var(--grey-color-5);
border-radius: 5px;
}
.containerScroll::-webkit-scrollbar-thumb:hover {
- background-color: #888;
+ background-color: var(--grey-color-4);
}
.containerScroll::-webkit-scrollbar-track {
- background-color: #333;
+ background-color: var(--grey-color-6);
}
.containerScroll::-webkit-scrollbar-corner {
@@ -36,7 +36,7 @@ table .header tr {
border-bottom: 0px !important;
}
table .header th {
- background: #1B1B1B;
+ background: var(--black-color-2);
padding-top: 16px;
padding-bottom: 16px;
}
@@ -55,11 +55,11 @@ table .headers th:last-child{
table tr {
max-height: 60px;
border-bottom: 1px solid #3b3939;
- background: #141414;
+ background: var(--black-color-1);
}
table th {
overflow: hidden;
- color: #D9D9D9;
+ color: var(--grey-color-3);
text-overflow: ellipsis;
font-family: sans-serif;
font-size: 14px;
diff --git a/Grayjay.Desktop.Web/src/components/containers/HorizontalScrollContainer/index.module.css b/Grayjay.Desktop.Web/src/components/containers/HorizontalScrollContainer/index.module.css
index b1ef992e..89d62256 100644
--- a/Grayjay.Desktop.Web/src/components/containers/HorizontalScrollContainer/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/HorizontalScrollContainer/index.module.css
@@ -3,7 +3,7 @@
overflow-y: hidden;
position: relative;
scrollbar-width: 8px;
- scrollbar-color: #555 #333;
+ scrollbar-color: var(--grey-color-5) var(--grey-color-6);
scrollbar-width: thin;
display: flex;
flex-direction: row;
@@ -14,16 +14,16 @@
}
.containerScroll::-webkit-scrollbar-thumb {
- background-color: #555;
+ background-color: var(--grey-color-5);
border-radius: 5px;
}
.containerScroll::-webkit-scrollbar-thumb:hover {
- background-color: #888;
+ background-color: var(--grey-color-4);
}
.containerScroll::-webkit-scrollbar-track {
- background-color: #333;
+ background-color: var(--grey-color-6);
}
.containerScroll::-webkit-scrollbar-corner {
@@ -35,7 +35,7 @@
overflow-y: hidden;
position: relative;
scrollbar-width: 8px;
- scrollbar-color: #292929 transparent;
+ scrollbar-color: var(--grey-color-6) transparent;
scrollbar-width: thin;
display: flex;
flex-direction: row;
diff --git a/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.module.css b/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.module.css
index e3d0bef4..0d89de15 100644
--- a/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.module.css
@@ -4,7 +4,7 @@
height: 100%;
position: relative;
scrollbar-width: 8px;
- scrollbar-color: #555 #333;
+ scrollbar-color: var(--grey-color-5) var(--grey-color-6);
scrollbar-width: thin;
}
@@ -13,16 +13,16 @@
}
.containerScroll::-webkit-scrollbar-thumb {
- background-color: #555;
+ background-color: var(--grey-color-5);
border-radius: 5px;
}
.containerScroll::-webkit-scrollbar-thumb:hover {
- background-color: #888;
+ background-color: var(--grey-color-4);
}
.containerScroll::-webkit-scrollbar-track {
- background-color: #333;
+ background-color: var(--grey-color-6);
}
.containerScroll::-webkit-scrollbar-corner {
diff --git a/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.tsx b/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.tsx
index 3c4fbac9..2b4037f3 100644
--- a/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.tsx
+++ b/Grayjay.Desktop.Web/src/components/containers/ScrollContainer/index.tsx
@@ -40,7 +40,7 @@ const ScrollContainer: Component = (p) => {
});
}}>
diff --git a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldDropDown/index.module.css b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldDropDown/index.module.css
index 74984a29..b6c058ef 100644
--- a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldDropDown/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldDropDown/index.module.css
@@ -12,7 +12,7 @@
width: 60%;
}
.descriptor .title {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -24,7 +24,7 @@
}
.descriptor .description {
- color: #8C8C8C;
+ color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -45,8 +45,8 @@
.select {
border-radius: 8px;
- border: 1px solid #2E2E2E;
- background: #141414;
+ border: 1px solid var(--grey-color-6);
+ background: var(--black-color-1);
padding: 14px;
- color: white;
+ color: var(--white-color);
}
\ No newline at end of file
diff --git a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldGroup/index.module.css b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldGroup/index.module.css
index b7f77841..0aaa8407 100644
--- a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldGroup/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldGroup/index.module.css
@@ -1,14 +1,14 @@
.container {
width: 100%;
- border-top: 1px solid #363636;
- border-bottom: 1px solid #363636;
+ border-top: 1px solid var(--grey-color-6);
+ border-bottom: 1px solid var(--grey-color-6);
padding-top: 24px;
padding-bottom: 8px;
}
.header {
- color: #FFF;
+ color: var(--white-color);
font-family: Inter;
font-size: 20px;
font-style: normal;
@@ -16,7 +16,7 @@
line-height: 24px; /* 109.091% */
}
.description {
- color: #8C8C8C;
+ color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
diff --git a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldKey/index.module.css b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldKey/index.module.css
index 8020659b..2676f233 100644
--- a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldKey/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldKey/index.module.css
@@ -16,7 +16,7 @@
margin-left: 20px;
}
.descriptor .title {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -31,7 +31,7 @@
margin-bottom: 8px;
}
.descriptor .description {
- color: #8C8C8C;
+ color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
diff --git a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldReadOnly/index.module.css b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldReadOnly/index.module.css
index 83e64c4b..9e03041b 100644
--- a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldReadOnly/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldReadOnly/index.module.css
@@ -13,7 +13,7 @@
}
.descriptor .title {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -23,7 +23,7 @@
line-height: 24px; /* 133.333% */
}
.descriptor .description {
- color: #8C8C8C;
+ color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
diff --git a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldToggle/index.module.css b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldToggle/index.module.css
index 6c79d836..34215782 100644
--- a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldToggle/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/fields/FieldToggle/index.module.css
@@ -13,7 +13,7 @@
width: 60%;
}
.descriptor .title {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -23,7 +23,7 @@
line-height: 24px; /* 133.333% */
}
.descriptor .description {
- color: #8C8C8C;
+ color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
diff --git a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/index.module.css b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/index.module.css
index 55f083fd..2bcb7701 100644
--- a/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/containers/SettingsContainer/index.module.css
@@ -7,16 +7,16 @@
}
.container::-webkit-scrollbar-thumb {
- background-color: #555;
+ background-color: var(--grey-color-5);
border-radius: 5px;
}
.container::-webkit-scrollbar-thumb:hover {
- background-color: #888;
+ background-color: var(--grey-color-4);
}
.container::-webkit-scrollbar-track {
- background-color: #333;
+ background-color: var(--grey-color-6);
}
.container::-webkit-scrollbar-corner {
diff --git a/Grayjay.Desktop.Web/src/components/content/CreatorView/index.module.css b/Grayjay.Desktop.Web/src/components/content/CreatorView/index.module.css
index 931e657e..dc591313 100644
--- a/Grayjay.Desktop.Web/src/components/content/CreatorView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/content/CreatorView/index.module.css
@@ -4,7 +4,7 @@
justify-content: center;
align-items: center;
border-radius: 8px;
- background: #1B1B1B;
+ background: var(--black-color-2);
margin-right: 16px;
margin-bottom: 16px;
height: calc(100% - 16px);
@@ -21,7 +21,7 @@
.name {
overflow: hidden;
- color: #F0F0F0;
+ color: var(--grey-color-0);
text-align: center;
text-wrap: nowrap;
text-overflow: ellipsis;
@@ -36,7 +36,7 @@
}
.metadata {
- color: #6a6a6a;
+ color: var(--grey-color-5);
text-align: center;
font-feature-settings: 'clig' off, 'liga' off;
font-family: Inter;
diff --git a/Grayjay.Desktop.Web/src/components/content/LockedContentThumbnailView/index.module.css b/Grayjay.Desktop.Web/src/components/content/LockedContentThumbnailView/index.module.css
index fff2232f..4464d3a7 100644
--- a/Grayjay.Desktop.Web/src/components/content/LockedContentThumbnailView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/content/LockedContentThumbnailView/index.module.css
@@ -61,13 +61,13 @@
.duration {
border-radius: 4px;
- background: #000000EE;
+ background: rgb(from var(--black-color-3) r g b / 0.93);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
/*leading-trim: both; -NOT SUPPORTED YET BY BROWSERS*/
@@ -85,13 +85,13 @@
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
padding: 5px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -103,7 +103,7 @@
line-height: normal;
- color: #FFF;
+ color: var(--white-color);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -112,13 +112,13 @@
}
.isPlanned {
border-radius: 3px;
- background: #222;
+ background: var(--grey-color-8);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -149,7 +149,7 @@
flex-direction: row;
margin-top: 6px;
font-size: 15px;
- color: #979797;
+ color: var(--grey-color-2);
align-items: center;
overflow: hidden;
}
diff --git a/Grayjay.Desktop.Web/src/components/content/NestedMediaThumbnailView/index.module.css b/Grayjay.Desktop.Web/src/components/content/NestedMediaThumbnailView/index.module.css
index 698156f1..64e274a2 100644
--- a/Grayjay.Desktop.Web/src/components/content/NestedMediaThumbnailView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/content/NestedMediaThumbnailView/index.module.css
@@ -39,13 +39,13 @@
.duration {
border-radius: 4px;
- background: #000000EE;
+ background: rgb(from var(--black-color-3) r g b / 0.93);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
/*leading-trim: both; -NOT SUPPORTED YET BY BROWSERS*/
@@ -63,13 +63,13 @@
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
padding: 5px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -81,7 +81,7 @@
line-height: normal;
- color: #FFF;
+ color: var(--white-color);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -90,13 +90,13 @@
}
.isPlanned {
border-radius: 3px;
- background: #222;
+ background: var(--grey-color-8);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -127,7 +127,7 @@
flex-direction: row;
margin-top: 6px;
font-size: 15px;
- color: #979797;
+ color: var(--grey-color-2);
align-items: center;
overflow: hidden;
}
diff --git a/Grayjay.Desktop.Web/src/components/content/PlaylistView/index.module.css b/Grayjay.Desktop.Web/src/components/content/PlaylistView/index.module.css
index d470e264..24b8dac6 100644
--- a/Grayjay.Desktop.Web/src/components/content/PlaylistView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/content/PlaylistView/index.module.css
@@ -72,7 +72,7 @@
justify-content: center;
align-items: center;
- color: #8C8C8C;
+ color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -87,7 +87,7 @@
.metadata {
overflow: hidden;
- color: #8C8C8C;
+ color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
text-overflow: ellipsis;
diff --git a/Grayjay.Desktop.Web/src/components/content/PostThumbnailView/index.module.css b/Grayjay.Desktop.Web/src/components/content/PostThumbnailView/index.module.css
index b066c72a..e57bfd3f 100644
--- a/Grayjay.Desktop.Web/src/components/content/PostThumbnailView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/content/PostThumbnailView/index.module.css
@@ -21,7 +21,7 @@
overflow:hidden;
}
.descriptionOverlay {
- background: linear-gradient(0deg, #141414, #141414, rgba(0, 0, 0, 0.0));
+ background: linear-gradient(0deg, var(--black-color-1), var(--black-color-1), rgba(0, 0, 0, 0.0));
width: 100%;
position: absolute;
bottom: 65px;
@@ -51,13 +51,13 @@
.duration {
border-radius: 4px;
- background: #000000EE;
+ background: rgb(from var(--black-color-3) r g b / 0.93);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
/*leading-trim: both; -NOT SUPPORTED YET BY BROWSERS*/
@@ -75,13 +75,13 @@
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
padding: 5px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -93,7 +93,7 @@
line-height: normal;
- color: #FFF;
+ color: var(--white-color);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -102,13 +102,13 @@
}
.isPlanned {
border-radius: 3px;
- background: #222;
+ background: var(--grey-color-8);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -139,7 +139,7 @@
flex-direction: row;
margin-top: 0px;
font-size: 15px;
- color: #979797;
+ color: var(--grey-color-2);
align-items: center;
overflow: hidden;
position: absolute;
diff --git a/Grayjay.Desktop.Web/src/components/content/VideoThumbnailView/index.module.css b/Grayjay.Desktop.Web/src/components/content/VideoThumbnailView/index.module.css
index a968a744..94924556 100644
--- a/Grayjay.Desktop.Web/src/components/content/VideoThumbnailView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/content/VideoThumbnailView/index.module.css
@@ -40,13 +40,13 @@
.duration {
border-radius: 4px;
- background: #000000EE;
+ background: rgb(from var(--black-color-3) r g b / 0.93);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
/*leading-trim: both; -NOT SUPPORTED YET BY BROWSERS*/
@@ -64,13 +64,13 @@
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
padding: 5px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -82,7 +82,7 @@
line-height: normal;
- color: #FFF;
+ color: var(--white-color);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -91,13 +91,13 @@
}
.isPlanned {
border-radius: 3px;
- background: #222;
+ background: var(--grey-color-8);
position: absolute;
right: 12px;
bottom: 12px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
padding: 6px 8px;
- color: #FFF;
+ color: var(--white-color);
@@ -128,7 +128,7 @@
flex-direction: row;
margin-top: 6px;
font-size: 15px;
- color: #979797;
+ color: var(--grey-color-2);
align-items: center;
overflow: hidden;
}
@@ -176,5 +176,5 @@
}
.progressBarProgress {
height: 3px;
- background-color: #3333FFAA;
+ background-color: var(--grey-color-6)3FFAA;
}
\ No newline at end of file
diff --git a/Grayjay.Desktop.Web/src/components/contentDetails/PostDetailsView/index.module.css b/Grayjay.Desktop.Web/src/components/contentDetails/PostDetailsView/index.module.css
index c81aa0a5..a8f433aa 100644
--- a/Grayjay.Desktop.Web/src/components/contentDetails/PostDetailsView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/contentDetails/PostDetailsView/index.module.css
@@ -99,7 +99,7 @@
}
.authorName {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
diff --git a/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.module.css b/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.module.css
index 2fd2152c..82255353 100644
--- a/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.module.css
@@ -2,7 +2,7 @@
position: absolute;
width: 100vw;
height: 100vh;
- background-color: #171719;
+ background-color: var(--grey-color-9);
display: flex;
flex-direction: column;
@@ -81,7 +81,7 @@
}
.authorName {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -115,7 +115,7 @@
}
.title {
- color: #FFF;
+ color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
@@ -133,7 +133,7 @@
}
.metadata {
- color: #8C8C8C;
+ color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: "Inter";
@@ -180,7 +180,7 @@
gap: 8px;
box-sizing: border-box;
- color: #FFF;
+ color: var(--white-color);
font-family: Inter;
font-size: 16px;
font-style: normal;
@@ -196,7 +196,7 @@
}
.description > a {
- color: #019BE7;
+ color: var(--blue-color-1);
text-decoration: none;
}
@@ -211,7 +211,7 @@
padding-top: 24px;
border-radius: 12px;
- background: rgba(255, 255, 255, 0.03);
+ background: rgb(from var(--white-color) r g b / 0.03);
}
.showMoreShowLessFade {
@@ -227,7 +227,7 @@
width: 100%;
height: 100px;
border-radius: 10px;
- background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #212122);
+ background: linear-gradient(to bottom, rgb(from var(--white-color) r g b / 0), var(--grey-color-8));
pointer-events: none;
}
@@ -242,7 +242,7 @@
left: 0px;
position: absolute;
width: 100%;
- color: #019BE7;
+ color: var(--blue-color-1);
cursor: pointer;
}
@@ -259,7 +259,7 @@
}
.commentHeaderTitle {
- color: #F0F0F0;
+ color: var(--grey-color-0);
font-family: Inter;
font-size: 28px;
@@ -299,8 +299,8 @@
gap: 12px;
align-self: stretch;
border-radius: 8px;
- border: 1px solid #2E2E2E;
- background: #212121;
+ border: 1px solid var(--grey-color-6);
+ background: var(--grey-color-8);
margin-left: 40px;
margin-right: 40px;
margin-top: 16px;
@@ -319,7 +319,7 @@
.recommendationItemTitle {
overflow: hidden;
- color: #D9D9D9;
+ color: var(--grey-color-3);
text-overflow: ellipsis;
font-family: Inter;
font-size: 14px;
@@ -331,7 +331,7 @@
}
.recommendationItemAuthor {
- color: #8C8C8C;
+ color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -351,7 +351,7 @@
.liveChatError {
width: 70%;
text-align: center;
- background-color: #111;
+ background-color: var(--black-color-1);
margin-left: auto;
margin-right: auto;
margin-top: 20px;
diff --git a/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.tsx b/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.tsx
index 041f9c02..1c408dd2 100644
--- a/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.tsx
+++ b/Grayjay.Desktop.Web/src/components/contentDetails/VideoDetailView/index.tsx
@@ -1678,7 +1678,7 @@ const VideoDetailView: Component
= (props) => {
"z-index": mode() === VideoMode.Theatre ? 2 : undefined
}} onClick={() => hideReplies()}>
}>
- {
+
{
e.stopPropagation();
e.preventDefault();
}}>
@@ -1693,7 +1693,7 @@ const VideoDetailView: Component
= (props) => {
hideReplies();
e.stopPropagation();
e.preventDefault();
- }} style="width: 32px; height: 32px; border-radius: 50%; background: #2E2E2E; display: flex; align-items: center; justify-content: center; cursor: pointer;">
+ }} style="width: 32px; height: 32px; border-radius: 50%; background: var(--grey-color-6); display: flex; align-items: center; justify-content: center; cursor: pointer;">
@@ -1704,7 +1704,7 @@ const VideoDetailView: Component = (props) => {
comment={item}
onClick={(ev) => handleContainerClick(ev)}
style={{
- "background-color": "#2E2E2E",
+ "background-color": "var(--grey-color-6)",
"border-radius": "8px",
"overflow": "hidden",
"padding-left": "12px",
diff --git a/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.module.css b/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.module.css
index 6d282b19..606465de 100644
--- a/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.module.css
@@ -7,7 +7,7 @@
}
.downloadingCard .title {
overflow: hidden;
- color: #F0F0F0;
+ color: var(--grey-color-0);
leading-trim: both;
@@ -24,7 +24,7 @@
text-wrap: nowrap;
}
.downloadingCard .author {
- color: #F0F0F0;
+ color: var(--grey-color-0);
leading-trim: both;
@@ -40,7 +40,7 @@
text-overflow: ellipsis;
}
.downloadingCard .meta {
- color: #8C8C8C;
+ color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -54,18 +54,18 @@
height: auto;
aspect-ratio: 16/9;
position: relative;
- background-color: white;
+ background-color: var(--white-color);
background-size: cover;
border-radius: 8px;
overflow: hidden;
}
.downloadingCard .badgeStatus {
border-radius: 3px;
- background: #000000EE;
+ background: rgb(from var(--black-color-3) r g b / 0.93);
position: absolute;
right: 10px;
bottom: 10px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
text-edge: cap;
@@ -77,8 +77,8 @@
padding: 6px 9px;
}
.downloadingCard .badgeSize {
- color: #FFF;
- background: #000000EE;
+ color: var(--white-color);
+ background: rgb(from var(--black-color-3) r g b / 0.93);
border-radius: 3px;
leading-trim: both;
diff --git a/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.tsx b/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.tsx
index d50c689a..79d09c94 100644
--- a/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.tsx
+++ b/Grayjay.Desktop.Web/src/components/downloads/DownloadedView/index.tsx
@@ -83,7 +83,7 @@ const DownloadedView: Component = (props) => {
)
/*
return (
-
+
diff --git a/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.module.css b/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.module.css
index ea411653..76edd2a2 100644
--- a/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.module.css
@@ -5,7 +5,7 @@
justify-content: center;
align-items: center;
border-radius: 8px;
- background: #1B1B1B;
+ background: var(--black-color-2);
margin-right: 12px;
margin-bottom: 12px;
padding: 12px;
@@ -19,7 +19,7 @@
.name {
overflow: hidden;
- color: #F0F0F0;
+ color: var(--grey-color-0);
text-align: center;
text-wrap: nowrap;
text-overflow: ellipsis;
@@ -33,7 +33,7 @@
}
.metadata {
- color: #8C8C8C;
+ color: var(--grey-color-4);
text-align: center;
font-feature-settings: 'clig' off, 'liga' off;
font-family: Inter;
@@ -53,7 +53,7 @@
}
.downloadingCard .title {
overflow: hidden;
- color: #F0F0F0;
+ color: var(--grey-color-0);
leading-trim: both;
@@ -70,7 +70,7 @@
text-wrap: nowrap;
}
.downloadingCard .author {
- color: #F0F0F0;
+ color: var(--grey-color-0);
leading-trim: both;
@@ -86,7 +86,7 @@
text-overflow: ellipsis;
}
.downloadingCard .meta {
- color: #8C8C8C;
+ color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -118,7 +118,7 @@
position: absolute;
right: 10px;
bottom: 10px;
- color: #D9D9D9;
+ color: var(--grey-color-3);
border-radius:99px;
@@ -131,7 +131,7 @@
padding: 8px;
}
.downloadingCard .badgeSize {
- color: #FFF;
+ color: var(--white-color);
background-color: black;
border-radius: 3px;
@@ -180,7 +180,7 @@
top: 10px;
/* padding: 10px; */
width: 15px;
- background-color: #111111;
+ background-color: var(--black-color-1)111;
height: 15px;
padding: 5px;
border-radius: 3px;
diff --git a/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.tsx b/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.tsx
index b4a8a50b..5a8e4b7f 100644
--- a/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.tsx
+++ b/Grayjay.Desktop.Web/src/components/downloads/DownloadingView/index.tsx
@@ -167,7 +167,7 @@ const DownloadingView: Component
= (props) => {
)
/*
return (
-
+
diff --git a/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.module.css b/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.module.css
index 8c2386e1..2fd958c5 100644
--- a/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.module.css
+++ b/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.module.css
@@ -6,7 +6,7 @@
height:auto;
z-index:9;
max-height: 100%;
- background-color: #141414;
+ background-color: var(--black-color-1);
width: 320px;
padding: 12px;
border-radius: 10px;
@@ -14,12 +14,12 @@
scrollbar-width: thin;
border-radius: 10px;
- border: 1px solid #2E2E2E;
- 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);
+ border: 1px solid var(--grey-color-6);
+ box-shadow: 0px 1.852px 3.148px 0px rgb(from var(--black-color-3) r g b / 0.06), 0px 8.148px 6.519px 0px rgb(from var(--black-color-3) r g b / 0.10), 0px 20px 13px 0px rgb(from var(--black-color-3) r g b / 0.13), 0px 38.519px 25.481px 0px rgb(from var(--black-color-3) r g b / 0.15), 0px 64.815px 46.852px 0px rgb(from var(--black-color-3) r g b / 0.19), 0px 100px 80px 0px rgb(from var(--black-color-3) r g b / 0.25);
}
.title {
- color: #FFF;
+ color: var(--white-color);
font-family: "Inter";
leading-trim: both;
@@ -42,7 +42,7 @@
padding-right: 15px;
}
.menuItem .key {
- color: #D7D7D7;
+ color: var(--grey-color-3);
font-size: 15px;
font-style: normal;
font-weight: 400;
@@ -52,7 +52,7 @@
font-family: "Inter";
}
.menuItem .value {
- color: #FFF;
+ color: var(--white-color);
font-size: 15px;
width: calc(100% - 180px);
text-align: right;
@@ -73,10 +73,10 @@
}
.menuItem.isGroup:hover {
- background-color: rgba(255,255,255,0.1);
+ background-color: rgb(from var(--white-color) r g b /0.1);
}
.menuItem.option:hover {
- background-color: rgba(255,255,255,0.1);
+ background-color: rgb(from var(--white-color) r g b /0.1);
}
.menuItem .expander {
position: absolute;
@@ -91,7 +91,7 @@
}
.menuItem .expander img {
height: 100%;
- color: #969696;
+ color: var(--grey-color-2);
}
.menuItem.isGroup .expander {
display: block;
@@ -111,7 +111,7 @@
}
.menuButton:hover {
cursor: pointer;
- background-color: rgba(255,255,255,0.1)
+ background-color: rgb(from var(--white-color) r g b /0.1)
}
.menuButton .icon {
height: 25px;
@@ -140,7 +140,7 @@
line-height: 15px;
font-size: 14px;
margin-top: 5px;
- color: #555555;
+ color: var(--grey-color-5);
}
.menuToggle {
@@ -174,7 +174,7 @@
}
.menuToggle .nameContainer .name {
- color: #F0F0F0;
+ color: var(--grey-color-0);
font-family: Inter;
font-size: 16px;
font-style: normal;
@@ -187,7 +187,7 @@
}
.menuToggle .nameContainer .description {
- color: #595959;
+ color: var(--grey-color-5);
font-family: Inter;
font-size: 14px;
font-style: normal;
@@ -219,7 +219,7 @@
}
.menuHeader .nameContainer .name {
- color: #F0F0F0;
+ color: var(--grey-color-0);
font-family: Inter;
font-size: 16px;
font-style: normal;
@@ -232,7 +232,7 @@
}
.menuHeader .nameContainer .description {
- color: #595959;
+ color: var(--grey-color-5);
font-family: Inter;
font-size: 14px;
font-style: normal;
diff --git a/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.tsx b/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.tsx
index 10866ed0..e65ca3a0 100644
--- a/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.tsx
+++ b/Grayjay.Desktop.Web/src/components/menus/Overlays/SettingsMenu/index.tsx
@@ -297,7 +297,7 @@ const SettingsMenu: Component
= (props: SettingsMenuProps) =>
}>
-
+