feat(themes): fix heatmap colors
This commit is contained in:
@@ -7,10 +7,14 @@ gitea-theme-meta-info {
|
|||||||
:root {
|
:root {
|
||||||
--is-dark-theme: true;
|
--is-dark-theme: true;
|
||||||
--color-primary: #00f0ff;
|
--color-primary: #00f0ff;
|
||||||
--color-primary-dark-1: #00c0cc;
|
--color-primary-dark-1: #33f3ff;
|
||||||
--color-primary-dark-2: #009099;
|
--color-primary-dark-2: #66f6ff;
|
||||||
--color-primary-light-1: #33f3ff;
|
--color-primary-dark-3: #99f9ff;
|
||||||
--color-primary-light-2: #66f6ff;
|
--color-primary-dark-4: #ccfcff;
|
||||||
|
--color-primary-light-1: #00c0cc;
|
||||||
|
--color-primary-light-2: #009099;
|
||||||
|
--color-primary-light-3: #006066;
|
||||||
|
--color-primary-light-4: #003844;
|
||||||
--color-primary-alpha-10: rgba(0, 240, 255, 0.1);
|
--color-primary-alpha-10: rgba(0, 240, 255, 0.1);
|
||||||
--color-primary-alpha-20: rgba(0, 240, 255, 0.2);
|
--color-primary-alpha-20: rgba(0, 240, 255, 0.2);
|
||||||
--color-primary-alpha-30: rgba(0, 240, 255, 0.3);
|
--color-primary-alpha-30: rgba(0, 240, 255, 0.3);
|
||||||
@@ -36,6 +40,7 @@ gitea-theme-meta-info {
|
|||||||
--color-border: #333333;
|
--color-border: #333333;
|
||||||
--color-border-secondary: #222222;
|
--color-border-secondary: #222222;
|
||||||
--color-secondary: #222222;
|
--color-secondary: #222222;
|
||||||
|
--color-secondary-alpha-6: rgba(34, 34, 34, 0.6);
|
||||||
|
|
||||||
--color-input-background: #000000;
|
--color-input-background: #000000;
|
||||||
--color-input-text: #e0e0e0;
|
--color-input-text: #e0e0e0;
|
||||||
@@ -124,7 +129,7 @@ h1, h2, h3, h4, h5, h6, .ui.header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ui.primary.button:hover {
|
.ui.primary.button:hover {
|
||||||
background: var(--color-primary-light-1) !important;
|
background: #33f3ff !important;
|
||||||
box-shadow: 0 0 15px var(--color-primary) !important;
|
box-shadow: 0 0 15px var(--color-primary) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,10 +8,14 @@ gitea-theme-meta-info {
|
|||||||
--is-dark-theme: true;
|
--is-dark-theme: true;
|
||||||
|
|
||||||
--color-primary: #FF82F3;
|
--color-primary: #FF82F3;
|
||||||
--color-primary-dark-1: #7C3871;
|
--color-primary-dark-1: #FF9EF6;
|
||||||
--color-primary-dark-2: #6A2F60;
|
--color-primary-dark-2: #FFBaf9;
|
||||||
--color-primary-light-1: #FF9EF6;
|
--color-primary-dark-3: #FFD6FC;
|
||||||
--color-primary-light-2: #FFBaf9;
|
--color-primary-dark-4: #FFEBFE;
|
||||||
|
--color-primary-light-1: #7C3871;
|
||||||
|
--color-primary-light-2: #6A2F60;
|
||||||
|
--color-primary-light-3: #582650;
|
||||||
|
--color-primary-light-4: #461D40;
|
||||||
--color-primary-alpha-10: rgba(255, 130, 243, 0.1);
|
--color-primary-alpha-10: rgba(255, 130, 243, 0.1);
|
||||||
--color-primary-alpha-20: rgba(255, 130, 243, 0.2);
|
--color-primary-alpha-20: rgba(255, 130, 243, 0.2);
|
||||||
--color-primary-alpha-30: rgba(255, 130, 243, 0.3);
|
--color-primary-alpha-30: rgba(255, 130, 243, 0.3);
|
||||||
@@ -37,6 +41,7 @@ gitea-theme-meta-info {
|
|||||||
--color-border: #3F293A;
|
--color-border: #3F293A;
|
||||||
--color-border-secondary: #341D2F;
|
--color-border-secondary: #341D2F;
|
||||||
--color-secondary: #341D2F;
|
--color-secondary: #341D2F;
|
||||||
|
--color-secondary-alpha-6: rgba(52, 29, 47, 0.6);
|
||||||
|
|
||||||
--color-input-background: #3F293A;
|
--color-input-background: #3F293A;
|
||||||
--color-input-text: #F5F5F5;
|
--color-input-text: #F5F5F5;
|
||||||
@@ -124,7 +129,7 @@ i.icon, svg, path, .octicon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ui.button, .ui.basic.button {
|
.ui.button, .ui.basic.button {
|
||||||
background: var(--color-primary-dark-1);
|
background: #7C3871;
|
||||||
border: 1px solid var(--color-primary-alpha-50);
|
border: 1px solid var(--color-primary-alpha-50);
|
||||||
color: var(--color-text);
|
color: var(--color-text);
|
||||||
font-family: var(--fonts-regular);
|
font-family: var(--fonts-regular);
|
||||||
@@ -147,7 +152,7 @@ i.icon, svg, path, .octicon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.ui.primary.button:hover {
|
.ui.primary.button:hover {
|
||||||
background: var(--color-primary-light-1) !important;
|
background: #FF9EF6 !important;
|
||||||
box-shadow: 0 0 15px var(--color-primary) !important;
|
box-shadow: 0 0 15px var(--color-primary) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user