diff options
| author | Adam <[email protected]> | 2025-06-26 10:16:07 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-26 10:16:07 -0500 |
| commit | 7d13baadc84d7377a352c6d58ed9deeea2c918be (patch) | |
| tree | 575b6897431e390ae8bf4b9ccde2803446c6c67a /packages/web/public/theme.json | |
| parent | db24bf87c01d3fff2a9594e55e9fab0d9ef52cfe (diff) | |
| download | opencode-7d13baadc84d7377a352c6d58ed9deeea2c918be.tar.gz opencode-7d13baadc84d7377a352c6d58ed9deeea2c918be.zip | |
feat: default system theme (#419)
Co-authored-by: adamdottv <[email protected]>
Diffstat (limited to 'packages/web/public/theme.json')
| -rw-r--r-- | packages/web/public/theme.json | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/packages/web/public/theme.json b/packages/web/public/theme.json index e8e939ea8..0b1b95f02 100644 --- a/packages/web/public/theme.json +++ b/packages/web/public/theme.json @@ -22,6 +22,11 @@ "minimum": 0, "maximum": 255, "description": "ANSI color code (0-255)" + }, + { + "type": "string", + "enum": ["none"], + "description": "No color (uses terminal default)" } ] } @@ -112,6 +117,11 @@ }, { "type": "string", + "enum": ["none"], + "description": "No color (uses terminal default)" + }, + { + "type": "string", "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$", "description": "Reference to another color in the theme or defs" }, @@ -133,6 +143,11 @@ }, { "type": "string", + "enum": ["none"], + "description": "No color (uses terminal default)" + }, + { + "type": "string", "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$", "description": "Reference to another color for dark mode" } @@ -153,6 +168,11 @@ }, { "type": "string", + "enum": ["none"], + "description": "No color (uses terminal default)" + }, + { + "type": "string", "pattern": "^[a-zA-Z][a-zA-Z0-9_]*$", "description": "Reference to another color for light mode" } |
