Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/petite-boxes-cut.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@fuzdev/fuz_code': minor
---

upgrade fuz_css
3 changes: 1 addition & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,4 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npx @ryanatkn/gro check --workspace
- run: npx @ryanatkn/gro build
- run: npx @ryanatkn/gro check --workspace --build
93 changes: 50 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,24 @@
},
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@fuzdev/fuz_css": "^0.44.1",
"@fuzdev/fuz_ui": "^0.178.2",
"@fuzdev/fuz_util": "^0.45.3",
"@fuzdev/fuz_css": "^0.45.0",
"@fuzdev/fuz_ui": "^0.180.0",
"@fuzdev/fuz_util": "^0.48.2",
"@ryanatkn/eslint-config": "^0.9.0",
"@ryanatkn/gro": "^0.186.0",
"@ryanatkn/gro": "^0.189.3",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.49.1",
"@sveltejs/kit": "^2.50.1",
"@sveltejs/package": "^2.5.7",
"@sveltejs/vite-plugin-svelte": "^6.2.1",
"@sveltejs/vite-plugin-svelte": "^6.2.4",
"@types/node": "^24.10.1",
"@webref/css": "^8.2.0",
"eslint": "^9.39.1",
"eslint-plugin-svelte": "^3.13.1",
"esm-env": "^1.2.2",
"prettier": "^3.7.4",
"prettier-plugin-svelte": "^3.4.1",
"svelte": "^5.45.6",
"svelte-check": "^4.3.4",
"svelte": "^5.48.5",
"svelte-check": "^4.3.5",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1",
Expand Down
22 changes: 11 additions & 11 deletions src/lib/theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.token_doctype,
.token_cdata,
.token_punctuation {
color: var(--text_color_5);
color: var(--text_50);
}

.token_tag,
Expand All @@ -16,21 +16,21 @@
.token_heading,
.token_heading_punctuation,
.token_tag_punctuation {
color: var(--color_a_5);
color: var(--color_a_50);
}

.token_comment,
.token_char,
.token_inserted,
.token_blockquote,
.token_blockquote_punctuation {
color: var(--color_b_5);
color: var(--color_b_50);
}

.token_builtin,
.token_class_name,
.token_number {
color: var(--color_j_5);
color: var(--color_j_50);
}

.token_attr_value,
Expand All @@ -39,24 +39,24 @@
.token_template_punctuation,
.token_inline_code,
.token_code_punctuation {
color: var(--color_h_5);
color: var(--color_h_50);
}

/* attr_equals must be after attr_value */
.token_attr_equals {
color: var(--text_color_5);
color: var(--text_50);
}

.token_selector,
.token_function,
.token_regex,
.token_important,
.token_variable {
color: var(--color_e_5);
color: var(--color_e_50);
}

.token_atrule {
color: var(--color_f_5);
color: var(--color_f_50);
}

.token_attr_name,
Expand All @@ -66,18 +66,18 @@
.token_link_text_wrapper,
.token_link_text,
.token_link_punctuation {
color: var(--color_i_5);
color: var(--color_i_50);
}

.token_special_keyword,
.token_namespace,
.token_rule {
color: var(--color_g_5);
color: var(--color_g_50);
}

.token_at_keyword,
.token_url {
color: var(--color_d_5);
color: var(--color_d_50);
}

.token_url {
Expand Down
Loading