Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Grayjay.Desktop.Web/index.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html lang="en" style="background-color: #1b1b1b">
<html lang="en" style="background-color: var(--black-color-2)">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
padding: 0px 8px;
gap: 4px;
border-radius: 99px;
border: 1px solid rgba(255, 255, 255, 0.07);
border: 1px solid rgb(from var(--white-color) r g b / 0.07);
background: rgba(99, 101, 240, 0.00);
color: #8C8C8C;
color: var(--grey-color-4);
font-feature-settings: 'clig' off, 'liga' off;
font-family: Inter;
font-size: 16px;
Expand All @@ -31,6 +31,6 @@
}

.containerButton.active {
background: rgba(255, 255, 255, 0.06);
color: #FFF;
background: rgb(from var(--white-color) r g b / 0.06);
color: var(--white-color);
}
12 changes: 6 additions & 6 deletions Grayjay.Desktop.Web/src/components/CommentView/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}

.text {
color: #D9D9D9;
color: var(--grey-color-3);
leading-trim: both;
text-edge: cap;
font-family: Inter;
Expand All @@ -35,7 +35,7 @@
}

.text > a {
color: #019BE7;
color: var(--blue-color-1);
text-decoration: none;
}

Expand Down Expand Up @@ -71,7 +71,7 @@
}

.authorName {
color: #FFF;
color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
Expand All @@ -82,7 +82,7 @@
}

.metadata {
color: #888;
color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
Expand All @@ -100,9 +100,9 @@
align-items: center;
gap: 4px;
border-radius: 99px;
border: 1px solid #454545;
border: 1px solid var(--grey-color-7);
overflow: hidden;
color: #FFF;
color: var(--white-color);
text-align: center;
font-family: Inter;
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
}
.noSubs .title {
margin-top: 16px;
color: #FFF;
color: var(--white-color);

text-align: center;
font-family: Inter;
Expand All @@ -18,7 +18,7 @@
}
.noSubs .description {
margin-top: 8px;
color: #575757;
color: var(--grey-color-5);
text-align: center;
font-family: Inter;
font-size: 18px;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
.menu{
background-color: #141414;
background-color: var(--black-color-1);
padding: 12px;
border-radius: 10px;
border-radius: 10px;
border: 1px solid #2E2E2E;
border: 1px solid var(--grey-color-6);
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);
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
.window {
height: 100%;
padding: 10px;
background-color: #111;
background-color: var(--black-color-1);
border-radius: 10px;
border: 2px solid #222;
border: 2px solid var(--grey-color-8);
box-sizing: border-box;
}
.window iframe {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.containerPlaybackQueue {
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.13);
border: 1px solid rgb(from var(--white-color) r g b / 0.13);

padding-top: 32px;
padding-left: 12px;
Expand All @@ -9,7 +9,7 @@

.title {
overflow: hidden;
color: #F0F0F0;
color: var(--grey-color-0);
text-overflow: ellipsis;
font-family: Inter;
font-size: 24px;
Expand All @@ -20,7 +20,7 @@

.metadata {
overflow: hidden;
color: #8C8C8C;
color: var(--grey-color-4);
text-overflow: ellipsis;
font-family: Inter;
font-size: 14px;
Expand All @@ -30,7 +30,7 @@
}

.itemNumber {
color: #8C8C8C;
color: var(--grey-color-4);
text-align: center;
font-family: Inter;
font-size: 12px;
Expand All @@ -43,13 +43,13 @@
}

.itemNumber:hover {
color: #fff;
color: var(--white-color);
}


.itemTitle {
overflow: hidden;
color: #D9D9D9;
color: var(--grey-color-3);
text-overflow: ellipsis;
font-family: Inter;
font-size: 14px;
Expand All @@ -61,7 +61,7 @@
}

.itemAuthor {
color: #8C8C8C;
color: var(--grey-color-4);
font-family: Inter;
font-size: 14px;
font-style: normal;
Expand Down
2 changes: 1 addition & 1 deletion Grayjay.Desktop.Web/src/components/PlaybackQueue/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const PlaybackQueue: Component<PlaybackQueueProps> = (props) => {
"align-items": "center",
"overflow": "hidden",
"gap": "8px",
"background-color": index() == props.index ? "#2E2E2E" : undefined,
"background-color": index() == props.index ? "var(--grey-color-6)" : undefined,
"border-radius": "8px"
}} onClick={() => {
const v = video();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

.header {
color: #FFF;
color: var(--white-color);
font-family: Inter;
font-size: 29px;
font-style: normal;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const PlaylistDetailView: Component<PlaylistDetailViewProps> = (props) => {
text="Shuffle"
icon={iconShuffle}
style={{
border: "1px solid #2E2E2E",
border: "1px solid var(--grey-color-6)",
"margin-left": "16px",
"margin-right": "16px",
"flex-shrink": 0
Expand All @@ -157,7 +157,7 @@ const PlaylistDetailView: Component<PlaylistDetailViewProps> = (props) => {
showClearButton={true}
inputContainerStyle={{
"height": "70px",
"background": "#141414"
"background": "var(--black-color-1)"
}}
onTextChanged={(v) => {
setFilterText(v);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.metadata {
color: rgba(255, 255, 255, 0.60);
color: rgb(from var(--white-color) r g b / 0.60);
font-family: Inter;
font-size: 16px;
font-style: normal;
Expand Down Expand Up @@ -49,7 +49,7 @@
-webkit-line-clamp: 2;
flex: 1 0 0;
overflow: hidden;
color: #F0F0F0;
color: var(--grey-color-0);
text-overflow: ellipsis;
font-family: Inter;
font-size: 16px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const PlaylistItemView: Component<PlaylistItemViewProps> = (props) => {
const editable$ = createMemo(() => props.isEditable ?? true);

return (
<div style="display: flex; flex-direction: row; align-items: center; width: 100%; height: 100%; padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid #2E2E2E; box-sizing: border-box; background-color: #141414" onClick={() => {{
<div style="display: flex; flex-direction: row; align-items: center; width: 100%; height: 100%; padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--grey-color-6); box-sizing: border-box; background-color: var(--black-color-1)" onClick={() => {{
props.onPlay?.();
}}}>
<Show when={props.onDragStart && editable$()} fallback={<div style="width: 12px"></div>}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

.text {
margin-left: 4px;
color: #FFF;
color: var(--white-color);
font-family: Inter;
font-size: 14px;
font-style: normal;
Expand All @@ -23,7 +23,7 @@
}

.text.active {
color: #019BE7;
color: var(--blue-color-1);
}

.text.editable {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
}

.header {
color: #FFF;
color: var(--white-color);
font-family: Inter;
font-size: 29px;
font-style: normal;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const RemotePlaylistDetailView: Component<RemotePlaylistDetailViewProps> = (prop
text="Shuffle"
icon={iconShuffle}
style={{
border: "1px solid #2E2E2E",
border: "1px solid var(--grey-color-6)",
"margin-left": "16px",
"margin-right": "16px",
"flex-shrink": 0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
}

.text {
color: #D9D9D9;
color: var(--grey-color-3);
leading-trim: both;
text-edge: cap;
font-family: Inter;
Expand Down Expand Up @@ -67,7 +67,7 @@
}

.authorName {
color: #FFF;
color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
Expand All @@ -78,7 +78,7 @@
}

.metadata {
color: #888;
color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
Expand All @@ -96,9 +96,9 @@
align-items: center;
gap: 4px;
border-radius: 99px;
border: 1px solid #454545;
border: 1px solid var(--grey-color-7);
overflow: hidden;
color: #FFF;
color: var(--white-color);
text-align: center;
font-family: Inter;
font-size: 14px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
align-items: flex-start;
justify-content: center;
border-radius: 8px;
border: 1px solid #454545;
border: 1px solid var(--grey-color-7);
overflow: hidden;
height: 40px;
}
Expand All @@ -23,10 +23,10 @@
display: flex;
justify-content: center;
align-items: center;
color: #8C8C8C;
color: var(--grey-color-4);
}

.containerButton.active {
background: rgba(255, 255, 255, 0.06);
color: #FFF;
background: rgb(from var(--white-color) r g b / 0.06);
color: var(--white-color);
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
display: flex;
justify-content: center;
align-items: center;
color: #FFF;
color: var(--white-color);
gap: 4px;
padding: 10px;
flex-direction: column;
Expand All @@ -32,9 +32,9 @@

border-radius: 6px;
box-sizing: border-box;
background: #1B1B1B;
background: var(--black-color-2);
}

.containerButton.active {
background: #2E2E2E;
background: var(--grey-color-6);
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@
display: flex;
justify-content: center;
align-items: center;
color: #8C8C8C;
color: var(--grey-color-4);
gap: 12px;
padding-left: 24px;
padding-right: 24px;
}

.containerButton.active {
background: rgba(255, 255, 255, 0.06);
color: #FFF;
background: rgb(from var(--white-color) r g b / 0.06);
color: var(--white-color);
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@
padding-left: 24px;
padding-right: 24px;
align-items: center;
color: #FFF;
color: var(--white-color);
gap: 4px;

border-radius: 6px;
border: 1px solid #454545;
border: 1px solid var(--grey-color-7);
box-sizing: border-box;
}

.containerButton.active {
background: #2E2E2E;
border: 1px solid #2E2E2E;
background: var(--grey-color-6);
border: 1px solid var(--grey-color-6);
}
Loading