File tree 5 files changed +12
-1
lines changed
packages/bezier-react/src/foundation/Colors
5 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ " @channel.io/bezier-react " : minor
3
+ ---
4
+
5
+ - Add semantic color ` txt-black-pure `
6
+ - Add palette ` grey800_80 ` and modify ` bg-lounge ` color to reference it
Original file line number Diff line number Diff line change @@ -119,6 +119,7 @@ type BaseColorfulPaletteKey300_20 = `${BaseColorfulPaletteKey300}_20`
119
119
type AlphaGreyKey =
120
120
| `${BasePaletteKey . Grey } 900_90`
121
121
| `${BasePaletteKey . Grey } 850_80`
122
+ | `${BasePaletteKey . Grey } 800_90`
122
123
| `${BasePaletteKey . Grey } 800_80`
123
124
| `${BasePaletteKey . Grey } 700_80`
124
125
| `${BasePaletteKey . Grey } 200_80`
@@ -256,6 +257,7 @@ export const Palette: PaletteType = {
256
257
// Alpha Grey
257
258
grey900_90 : getAlphaHex ( PaletteWithoutAlpha . grey900 , 90 ) ,
258
259
grey850_80 : getAlphaHex ( PaletteWithoutAlpha . grey850 , 80 ) ,
260
+ grey800_90 : getAlphaHex ( PaletteWithoutAlpha . grey800 , 90 ) ,
259
261
grey800_80 : getAlphaHex ( PaletteWithoutAlpha . grey800 , 80 ) ,
260
262
grey700_80 : getAlphaHex ( PaletteWithoutAlpha . grey700 , 80 ) ,
261
263
grey200_80 : getAlphaHex ( PaletteWithoutAlpha . grey200 , 80 ) ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const DarkTheme: ThemeType = {
12
12
'bg-navi' : Palette . grey800_80 ,
13
13
'bg-header' : Palette . grey800 ,
14
14
'bg-header-float' : Palette . grey800_80 ,
15
- 'bg-lounge' : Palette . grey900_90 ,
15
+ 'bg-lounge' : Palette . grey800_90 ,
16
16
17
17
// Mono Background
18
18
'bg-black-darkest' : Palette . white_60 ,
@@ -99,6 +99,7 @@ const DarkTheme: ThemeType = {
99
99
'bgtxt-navy-lightest' : Palette . navy300_20 ,
100
100
101
101
// Text
102
+ 'txt-black-pure' : Palette . white ,
102
103
'txt-black-darkest' : Palette . white_80 ,
103
104
'txt-black-darker' : Palette . white_60 ,
104
105
'txt-black-dark' : Palette . white_40 ,
Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ const LightTheme: ThemeType = {
100
100
'bgtxt-navy-lightest' : Palette . navy400_10 ,
101
101
102
102
// Text
103
+ 'txt-black-pure' : Palette . black ,
103
104
'txt-black-darkest' : Palette . black_85 ,
104
105
'txt-black-darker' : Palette . black_60 ,
105
106
'txt-black-dark' : Palette . black_40 ,
Original file line number Diff line number Diff line change @@ -28,6 +28,7 @@ type ElevationBackgroundColor =
28
28
| 'bg-white-low'
29
29
30
30
type TextColor =
31
+ | `txt-${BasePaletteKey . Black } -pure`
31
32
| `txt-${BasePaletteKey . Black } -darkest`
32
33
| `txt-${BasePaletteKey . Black } -darker`
33
34
| `txt-${BasePaletteKey . Black } -dark`
You can’t perform that action at this time.
0 commit comments