Shared: Themes: fix missing

This commit is contained in:
Viktor Fomin 2024-06-20 10:33:10 +03:00
parent 9a61761906
commit b5de6064a5
3 changed files with 18 additions and 1 deletions

View File

@ -2065,6 +2065,9 @@ export const getBaseTheme = () => {
borderColor: grayLightMid, borderColor: grayLightMid,
borderColorTransition: lightGrayHover, borderColorTransition: lightGrayHover,
color: black,
backgroundGroup: grayLightMid,
}, },
}, },
@ -2393,6 +2396,8 @@ export const getBaseTheme = () => {
iconColor: black, iconColor: black,
color: gray, color: gray,
border: `1px solid ${grayDarkMid}`, border: `1px solid ${grayDarkMid}`,
linkBackground: blueLightMid,
linkColor: white,
}, },
versionHistory: { versionHistory: {
@ -2735,6 +2740,7 @@ export const getBaseTheme = () => {
settings: { settings: {
iconFill: black, iconFill: black,
headerTitleColor: black, headerTitleColor: black,
descriptionColor: grayText,
trashIcon: gray, trashIcon: gray,
article: { article: {
titleColor: lightGrayDark, titleColor: lightGrayDark,

View File

@ -2049,6 +2049,9 @@ const Dark: TTheme = {
borderColor: grayDarkStrong, borderColor: grayDarkStrong,
borderColorTransition: grayDarkStrong, borderColorTransition: grayDarkStrong,
color: white,
backgroundGroup: grayDarkMid,
}, },
}, },
@ -2376,6 +2379,8 @@ const Dark: TTheme = {
iconColor: white, iconColor: white,
color: gray, color: gray,
border: `1px solid ${grayDarkMid}`, border: `1px solid ${grayDarkMid}`,
linkBackground: blueLightMid,
linkColor: white,
}, },
versionHistory: { versionHistory: {
@ -2719,6 +2724,7 @@ const Dark: TTheme = {
settings: { settings: {
iconFill: white, iconFill: white,
headerTitleColor: white, headerTitleColor: white,
descriptionColor: grayDarkText,
trashIcon: grayDark, trashIcon: grayDark,
article: { article: {
titleColor: grayStrong, titleColor: grayStrong,

View File

@ -56,9 +56,14 @@ export const globalColors = {
lightSecondMainDisabled: "rgba(82, 153, 224, 0.6)", lightSecondMainDisabled: "rgba(82, 153, 224, 0.6)",
mainGreen: "#2DB482", mainGreen: "#2DB482",
mainOrange: "#F58D31", // TODO: from kit secondGreen: "#22C386",
mainOrange: "#F97A0B",
secondOrange: "#FF9933",
mainRed: "#F2665A",
mainPurple: "#533ED1", mainPurple: "#533ED1",
secondPurple: "#8570BD", secondPurple: "#8570BD",
mainBlueLight: "#13B7EC",
mainYellow: "#FFD30F",
lightErrorStatus: "#F24724", lightErrorStatus: "#F24724",
darkErrorStatus: "#E06451", darkErrorStatus: "#E06451",