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

View File

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

View File

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