Skip to content

Commit

Permalink
fix(theme): missing black and grey in tag
Browse files Browse the repository at this point in the history
  • Loading branch information
fundon committed May 24, 2024
1 parent 04adbc2 commit 166b32f
Showing 1 changed file with 18 additions and 14 deletions.
32 changes: 18 additions & 14 deletions packages/theme/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -190,17 +190,19 @@ export const lightTheme = {
white80: 'rgba(255, 255, 255, 0.8)',
white90: 'rgba(255, 255, 255, 0.9)',
white: 'rgb(255, 255, 255)',
tagWhite: 'rgba(245, 245, 245, 1)',
tagGray: 'rgba(227, 226, 224, 1)',
tagRed: 'rgba(255, 225, 225, 1)',
tagOrange: 'rgba(255, 233, 201, 1)',
tagYellow: 'rgba(255, 243, 215, 1)',
tagGreen: 'rgba(222, 244, 231, 1)',
tagTeal: 'rgba(222, 244, 243, 1)',
tagBlue: 'rgba(225, 238, 255, 1)',
tagOrange: 'rgba(255, 233, 201, 1)',
tagRed: 'rgba(255, 225, 225, 1)',
tagMagenta: 'rgba(249, 232, 255, 1)',
tagPurple: 'rgba(243, 240, 255, 1)',
tagBlue: 'rgba(225, 238, 255, 1)',
tagTeal: 'rgba(222, 244, 243, 1)',
tagGreen: 'rgba(222, 244, 231, 1)',
tagBlack: 'rgba(0, 0, 0, 1)',
tagGrey: 'rgba(227, 226, 224, 1)',
tagWhite: 'rgba(245, 245, 245, 1)',
tagGray: 'rgba(227, 226, 224, 1)',
tagPink: 'rgba(251, 231, 255, 1)',
tagMagenta: 'rgba(249, 232, 255, 1)',
tooltip: 'rgba(0, 0, 0, 1)',
menuShadow:
'0px 0px 12px rgba(66, 65, 73, 0.14), inset 0px 0px 0px 0.5px rgba(227, 227, 228, 1)',
Expand Down Expand Up @@ -325,16 +327,18 @@ export const darkTheme = {
backgroundSecondaryColor: 'rgba(37, 37, 37, 1)',
backgroundModalColor: 'rgba(0, 0, 0, 0.5)',
backgroundOverlayPanelColor: 'rgb(30, 30, 30)',
tagYellow: 'rgba(150, 132, 49, 1)',
tagOrange: 'rgba(185, 129, 46, 1)',
tagRed: 'rgba(111, 50, 50, 1)',
tagMagenta: 'rgba(105, 47, 111, 1)',
tagPurple: 'rgba(47, 30, 113, 1)',
tagBlue: 'rgba(8, 67, 136, 1)',
tagGreen: 'rgba(44, 108, 63, 1)',
tagTeal: 'rgba(26, 115, 110, 1)',
tagGreen: 'rgba(44, 108, 63, 1)',
tagBlack: 'rgba(0, 0, 0, 1)',
tagGrey: 'rgba(41, 41, 41, 1)',
tagWhite: 'rgba(67, 67, 67, 1)',
tagPurple: 'rgba(47, 30, 113, 1)',
tagRed: 'rgba(111, 50, 50, 1)',
tagPink: 'rgba(155, 106, 106, 1)',
tagMagenta: 'rgba(105, 47, 111, 1)',
tagYellow: 'rgba(150, 132, 49, 1)',
tagOrange: 'rgba(185, 129, 46, 1)',
tagGray: 'rgba(41, 41, 41, 1)',
tooltip: 'rgba(234, 234, 234, 1)',

Expand Down

0 comments on commit 166b32f

Please sign in to comment.