Skip to content

Commit dad60f3

Browse files
committed
fix: fix wrong usage of fg token
1 parent 43b971e commit dad60f3

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

packages/components/src/checkbox/checkbox.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
@layer sl-components {
88
[data-sl-checkbox] {
9-
color: var(--sl-color-fg);
9+
color: var(--sl-fg);
1010
width: var(--sl-checkbox-size);
1111
height: var(--sl-checkbox-size);
1212
display: flex;

packages/components/src/menu/menu.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
@layer sl-components {
22
[data-sl-menu] {
33
background: var(--sl-bg);
4-
color: var(--sl-color-fg);
4+
color: var(--sl-fg);
55
outline: none;
66
border: var(--sl-border);
77
border-radius: var(--sl-border-radius-medium);

packages/components/src/table/table.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
@layer sl-components {
88
[data-sl-table] {
9-
color: var(--sl-color-fg);
9+
color: var(--sl-fg);
1010
border-collapse: collapse;
1111
width: 100%;
1212
display: grid;
@@ -18,7 +18,7 @@
1818
overflow: unset;
1919

2020
[data-sl-table-header-cell] {
21-
color: var(--sl-color-fg);
21+
color: var(--sl-fg);
2222
position: sticky;
2323
top: 0;
2424
z-index: 1;

0 commit comments

Comments
 (0)