Skip to content

Commit f683429

Browse files
committed
fix: use colors of neutral skin from theme
1 parent 9f189f0 commit f683429

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/components/alert/src/styles/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
$alert-styles: (
44
neutral: (
5-
background-color: #e2e8f0,
6-
color: #1a202c,
5+
background-color: get-color(neutral-100),
6+
color: get-color(neutral-800),
77
),
88
primary: (
99
background-color: get-color(highlight-primary-light),

packages/components/chip/src/styles/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
$chip-styles: (
22
neutral: (
3-
background-color: #e2e8f0,
4-
color: #1a202c,
3+
background-color: get-color(neutral-100),
4+
color: get-color(neutral-800),
55
),
66
primary: (
77
background-color: get-color(highlight-primary-light),

0 commit comments

Comments
 (0)