Skip to content

Commit

Permalink
feat: Input border color (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
plind-dm authored Feb 17, 2021
1 parent 69971f2 commit fa2cfa4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/theme/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export const lightColors: Colors = {
contrast: "#191326",
invertedContrast: "#FFFFFF",
input: "#eeeaf4",
inputBorder: "#cccccc",
tertiary: "#EFF4F5",
text: "#452A7A",
textDisabled: "#BDC2C4",
Expand All @@ -42,6 +43,7 @@ export const darkColors: Colors = {
contrast: "#FFFFFF",
invertedContrast: "#191326",
input: "#483f5a",
inputBorder: "#cccccc",
primaryDark: "#0098A1",
tertiary: "#353547",
text: "#EAE2FC",
Expand Down
1 change: 1 addition & 0 deletions src/theme/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export type Colors = {
contrast: string;
invertedContrast: string;
input: string;
inputBorder: string;
background: string;
backgroundDisabled: string;
text: string;
Expand Down

0 comments on commit fa2cfa4

Please sign in to comment.