Component: Themes: add colors

This commit is contained in:
Viktor Fomin 2022-11-13 05:08:45 +05:00
parent b8df7f8b6a
commit aef763aef3
2 changed files with 22 additions and 0 deletions

View File

@ -2744,6 +2744,7 @@ const Base = {
helpButton: "#A3A9AE",
orLineColor: "#ECEEF1",
orTextColor: "#A3A9AE",
titleColor: black,
register: {
backgroundColor: grayLight,
@ -2997,6 +2998,16 @@ const Base = {
background: white,
boxShadow: "0px 5px 20px rgba(4, 15, 27, 0.07)",
},
codeInput: {
background: white,
border: "1px solid #d0d5da",
color: black,
lineColor: "#C4C4C4",
disabledBackground: "#F8F9F9",
disabledBorder: "1px solid #ECEEF1",
disabledColor: "#A3A9AE",
},
};
export default Base;

View File

@ -2746,6 +2746,7 @@ const Dark = {
helpButton: "#D8D8D8",
orLineColor: "#474747",
orTextColor: "#858585",
titleColor: white,
register: {
backgroundColor: "#292929",
@ -2998,6 +2999,16 @@ const Dark = {
background: black,
boxShadow: "0px 5px 20px rgba(0, 0, 0, 0.16);",
},
codeInput: {
background: "#282828",
border: "1px solid #474747",
color: white,
lineColor: "#858585",
disabledBackground: "#474747",
disabledBorder: "1px solid #474747",
disabledColor: "#858585",
},
};
export default Dark;