Skip to content

Commit

Permalink
refactor: adjust dark mode color balance (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
joduplessis authored Jun 1, 2024
1 parent 4cb41c7 commit 035ee3c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fold-dev",
"title": "Fold",
"version": "0.11.3",
"version": "0.11.4",
"description": "The UI component library for product teams.",
"workspaces": {
"packages": [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fold-dev/core",
"title": "Fold",
"version": "0.11.3",
"version": "0.11.4",
"description": "The UI library for product teams.",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/pill/pill.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
--f-pill-buffer-icon: var(--f-space-1);
--f-pill-border-width: 1px;
--f-pill-border-radius: var(--f-radius-full);
--f-pill-border-color: var(--f-color-surface-strongest);
--f-pill-border-color: var(--f-color-border);
--f-pill-color: var(--f-color-text-weaker);
--f-pill-color-subtle: var(--f-color-text-weaker);
--f-pill-color-color: var(--f-color-text-on-color);
Expand Down
2 changes: 1 addition & 1 deletion packages/design/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@fold-dev/design",
"title": "Design Tokens",
"version": "0.11.3",
"version": "0.11.4",
"description": "The UI library for product teams.",
"main": "",
"module": "",
Expand Down
12 changes: 6 additions & 6 deletions packages/design/tokens/theme/dark.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,12 +55,12 @@
"on-color": { "value": "{color.black}" }
},
"surface": {
" ": { "value": "{color.base.800}" },
"strong": { "value": "{color.base.700}" },
"stronger": { "value": "{color.base.600}" },
"strongest": { "value": "{color.base.400}" },
"highlight": { "value": "{color.accent.700}" },
"inverse": { "value": "{color.base.300}" }
" ": { "value": "{color.base.900}" },
"strong": { "value": "{color.base.800}" },
"stronger": { "value": "{color.base.700}" },
"strongest": { "value": "{color.base.500}" },
"highlight": { "value": "{color.accent.800}" },
"inverse": { "value": "{color.base.400}" }
},
"border": {
" ": { "value": "{color.base.700}" },
Expand Down

0 comments on commit 035ee3c

Please sign in to comment.