Skip to content

Commit

Permalink
feat(color): change errorLight add errorHover (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
yqrashawn committed Jul 22, 2020
1 parent f622bbc commit df6794b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions components/styles/themes/dark.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export const palette: ZeitUIThemesPalette = {
code: '#79ffe1',
border: '#333',
error: '#e00',
errorLighter: '#f7d4d6',
errorLight: '#ff1a1a',
errorHover: '#ffcece',
errorLight: '#ffc2c2',
errorDark: '#c50000',
success: '#0070f3',
successLighter: '#d3e5ff',
Expand Down
4 changes: 2 additions & 2 deletions components/styles/themes/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ export const palette: ZeitUIThemesPalette = {
code: '#f81ce5',
border: '#eaeaea',
error: '#e15c56',
errorLight: '#ff8585',
errorLighter: '#f7d4d6',
errorLight: '#ffc2c2',
errorHover: '#ffcece',
errorDark: '#b34a50',
success: '#58f17a',
successLight: '#8afb88',
Expand Down
2 changes: 1 addition & 1 deletion components/styles/themes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export interface ZeitUIThemesPalette {
successLight: string
successDark: string
error: string
errorLighter: string
errorHover: string
errorLight: string
errorDark: string
warning: string
Expand Down
2 changes: 1 addition & 1 deletion lib/components/displays/colors-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const normal: ColorEnum = {
/* eslint-enable camelcase */

const error: ColorEnum = {
errorLighter: 'Lighter',
errorHover: 'Hover',
errorLight: 'Light',
error: 'Default',
errorDark: 'Dark',
Expand Down

0 comments on commit df6794b

Please sign in to comment.