Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:02:33 +08:00
commit 0c40192593
82 changed files with 18699 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
"name": "disabled",
"properties": {
"opacity": 0.5,
"cursor": "not-allowed",
"interactive": false,
"asciiModifier": "grayed-out"
},
"description": "Component is not interactive or available"
}

View File

@@ -0,0 +1,10 @@
{
"name": "error",
"properties": {
"borderColor": "#cc0000",
"backgroundColor": "#fff0f0",
"showErrorMessage": true,
"asciiModifier": "error-border"
},
"description": "Component has invalid input or error condition"
}

View File

@@ -0,0 +1,9 @@
{
"name": "focus",
"properties": {
"outline": "2px solid #0066cc",
"backgroundColor": "#f0f8ff",
"asciiModifier": "focus-ring"
},
"description": "Visual indicator when component has keyboard focus"
}

View File

@@ -0,0 +1,9 @@
{
"name": "hover",
"properties": {
"backgroundColor": "#e0e0e0",
"cursor": "pointer",
"asciiModifier": "bold"
},
"description": "Visual feedback when user hovers over component"
}