Skip to content

Commit

Permalink
chore: add generated data
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston committed Nov 28, 2023
1 parent 3cf26ce commit 524c02a
Show file tree
Hide file tree
Showing 2 changed files with 833 additions and 6,568 deletions.
178 changes: 88 additions & 90 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,98 +49,96 @@
"path": "./themes/latte.json"
}
],
"configuration": [
{
"title": "Catppuccin",
"properties": {
"catppuccin.boldKeywords": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use **bold** for keywords."
},
"catppuccin.italicKeywords": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use *italics* for keywords."
},
"catppuccin.italicComments": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use *italics* for comments."
},
"catppuccin.colorOverrides": {
"type": "object",
"default": {},
"markdownDescription": "Custom color overrides. Assign your own hex codes to palette colors. See [the docs](https://github.com/catppuccin/vscode#override-palette-colors) for reference.",
"$ref": "https://cdn.jsdelivr.net/gh/catppuccin/vscode@main/schemas/colorOverrides.schema.json"
},
"catppuccin.customUIColors": {
"type": "object",
"default": {},
"markdownDescription": "Customize UI colors. Map `workbench.colorCustomizations` to palette colors. See [the docs](https://github.com/catppuccin/vscode#use-palette-colors-on-workbench-elements-ui) for reference.",
"$ref": "https://cdn.jsdelivr.net/gh/catppuccin/vscode@main/schemas/customUIColors.schema.json"
},
"catppuccin.accentColor": {
"type": "string",
"default": "mauve",
"description": "Controls which accent color to use.",
"enum": [
"rosewater",
"flamingo",
"pink",
"mauve",
"red",
"maroon",
"peach",
"yellow",
"green",
"teal",
"sky",
"sapphire",
"blue",
"lavender"
]
},
"catppuccin.workbenchMode": {
"type": "string",
"default": "default",
"description": "Controls how the workbench should be styled.",
"enum": [
"default",
"flat",
"minimal"
],
"enumDescriptions": [
"The default look, using 3 shades of the base color.",
"A more flat look, using 2 shades of the base color.",
"A minimal look, using 1 shade of the base color."
]
},
"catppuccin.bracketMode": {
"type": "string",
"default": "rainbow",
"description": "Controls how bracket pairs should be themed",
"enum": [
"rainbow",
"dimmed",
"monochromatic",
"neovim"
],
"enumDescriptions": [
"Uses 6 rainbow colors for matching bracket pairs.",
"Uses the same 6 rainbow colors as `rainbow`, but has a dimmed appearance.",
"A monochromatic, grey appearance for matching bracket pairs.",
"Uses the same bracket pair colors as our neovim port."
]
},
"catppuccin.extraBordersEnabled": {
"type": "boolean",
"default": false,
"description": "Controls whether borders should be enabled on some additional UI elements."
}
"configuration": {
"title": "Catppuccin",
"properties": {
"catppuccin.boldKeywords": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use **bold** for keywords."
},
"catppuccin.italicComments": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use *italics* for comments."
},
"catppuccin.italicKeywords": {
"type": "boolean",
"default": true,
"markdownDescription": "Controls whether to use *italics* for keywords."
},
"catppuccin.colorOverrides": {
"type": "object",
"default": {},
"markdownDescription": "Custom color overrides. Assign your own hex codes to palette colors. See [the docs](https://github.com/catppuccin/vscode#override-palette-colors) for reference.",
"$ref": "https://cdn.jsdelivr.net/gh/catppuccin/[email protected]/schemas/colorOverrides.schema.json"
},
"catppuccin.customUIColors": {
"type": "object",
"default": {},
"markdownDescription": "Customize UI colors. Map `workbench.colorCustomizations` to palette colors. See [the docs](https://github.com/catppuccin/vscode#use-palette-colors-on-workbench-elements-ui) for reference.",
"$ref": "https://cdn.jsdelivr.net/gh/catppuccin/[email protected]/schemas/customUIColors.schema.json"
},
"catppuccin.accentColor": {
"type": "string",
"default": "mauve",
"description": "Controls which accent color to use.",
"enum": [
"rosewater",
"flamingo",
"pink",
"mauve",
"red",
"maroon",
"peach",
"yellow",
"green",
"teal",
"sky",
"sapphire",
"blue",
"lavender"
]
},
"catppuccin.workbenchMode": {
"type": "string",
"default": "default",
"description": "Controls how the workbench should be styled.",
"enum": [
"default",
"flat",
"minimal"
],
"enumDescriptions": [
"The default look, using 3 shades of the base color.",
"A more flat look, using 2 shades of the base color.",
"A minimal look, using 1 shade of the base color."
]
},
"catppuccin.bracketMode": {
"type": "string",
"default": "rainbow",
"description": "Controls how bracket pairs should be themed",
"enum": [
"rainbow",
"dimmed",
"monochromatic",
"neovim"
],
"enumDescriptions": [
"Uses 6 rainbow colors for matching bracket pairs.",
"Uses the same 6 rainbow colors as `rainbow`, but has a dimmed appearance.",
"A monochromatic, grey appearance for matching bracket pairs.",
"Uses the same bracket pair colors as our neovim port."
]
},
"catppuccin.extraBordersEnabled": {
"type": "boolean",
"default": false,
"description": "Controls whether borders should be enabled on some additional UI elements."
}
}
]
}
},
"repository": {
"type": "git",
Expand Down
Loading

0 comments on commit 524c02a

Please sign in to comment.