mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
9b4aebc385
* chore: show message if dragging unjoined project (#1763) * fix: invalid project selection in create issue modal (#1766) * style: sidebar project list improvement (#1767) * fix: comment reaction mutation (#1768) * fix: user profiles n plus 1 (#1765) * fix: bulk issue import (#1773) * style: profile activity (#1771) * style: profile activity comment log styling * chore: profile feed activity refactor * style: sidebar project list * chore: add non existing states for project entities (#1770) * fix: notification read status being toggled when click on link (#1769) * fix: custom theme persisting after signing out (#1780) * fix: custom theme persistence * chore: remove console logs * fix: build error * fix: change theme from command k --------- Co-authored-by: Aaryan Khandelwal <65252264+aaryan610@users.noreply.github.com> Co-authored-by: Dakshesh Jain <65905942+dakshesh14@users.noreply.github.com> Co-authored-by: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com>
65 lines
1.1 KiB
TypeScript
65 lines
1.1 KiB
TypeScript
export const THEMES = ["light", "dark", "light-contrast", "dark-contrast", "custom"];
|
|
|
|
export const THEMES_OBJ = [
|
|
{
|
|
value: "system",
|
|
label: "System Preference",
|
|
type: "light",
|
|
icon: {
|
|
border: "#DEE2E6",
|
|
color1: "#FAFAFA",
|
|
color2: "#3F76FF",
|
|
},
|
|
},
|
|
{
|
|
value: "light",
|
|
label: "Light",
|
|
type: "light",
|
|
icon: {
|
|
border: "#DEE2E6",
|
|
color1: "#FAFAFA",
|
|
color2: "#3F76FF",
|
|
},
|
|
},
|
|
{
|
|
value: "dark",
|
|
label: "Dark",
|
|
type: "dark",
|
|
icon: {
|
|
border: "#2E3234",
|
|
color1: "#191B1B",
|
|
color2: "#3C85D9",
|
|
},
|
|
},
|
|
{
|
|
value: "light-contrast",
|
|
label: "Light High Contrast",
|
|
type: "light",
|
|
icon: {
|
|
border: "#000000",
|
|
color1: "#FFFFFF",
|
|
color2: "#3F76FF",
|
|
},
|
|
},
|
|
{
|
|
value: "dark-contrast",
|
|
label: "Dark High Contrast",
|
|
type: "dark",
|
|
icon: {
|
|
border: "#FFFFFF",
|
|
color1: "#030303",
|
|
color2: "#3A8BE9",
|
|
},
|
|
},
|
|
{
|
|
value: "custom",
|
|
label: "Custom Theming",
|
|
type: "light",
|
|
icon: {
|
|
border: "#FFC9C9",
|
|
color1: "#FFF7F7",
|
|
color2: "#FF5151",
|
|
},
|
|
},
|
|
];
|