diff options
| author | AlexanderCurl <alexc@alexc.hu> | 2026-04-18 17:46:06 +0100 |
|---|---|---|
| committer | AlexanderCurl <alexc@alexc.hu> | 2026-04-18 17:46:06 +0100 |
| commit | 70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69 (patch) | |
| tree | ab1123d4067c1b086dd6faa7ee4ea643236b565a /raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build | |
| parent | 5d94c0a7d44a2255b81815a52a7056a94a39842d (diff) | |
| download | RaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.tar.gz RaveOS-PKGBUILD-70ca3fef77ee8bdc6e3ac28589a6fa08c024cc69.zip | |
Replaced file structures for themes in the correct format
Diffstat (limited to 'raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build')
8 files changed, 198 insertions, 0 deletions
diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/CHANGELOG.md b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/CHANGELOG.md new file mode 100644 index 0000000..c6dc197 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/CHANGELOG.md @@ -0,0 +1,5 @@ +# Changelog + +## 1.0.0 + +- Initial release diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/LICENSE b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/LICENSE new file mode 100644 index 0000000..bf72064 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 DankLinux + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/README.md b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/README.md new file mode 100644 index 0000000..56b4245 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/README.md @@ -0,0 +1,17 @@ +# Dynamic Base16 DankShell Theme + +A VSCode theme for [DankMaterialShell](https://github.com/AvengeMedia/DankMaterialShell). + +## How It Works + +1. Install this extension +2. Select one of the "Dynamic Base16 DankShell" themes in VSCode +3. DankMaterialShell automatically updates the theme files when you change themes. + +The theme files are located in your VSCode extensions directory and are updated by matugen when generating new colors. + +## Themes + +- **Dynamic Base16 DankShell** - Follows your current light/dark mode +- **Dynamic Base16 DankShell (Dark)** - Always dark variant +- **Dynamic Base16 DankShell (Light)** - Always light variant diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/danklogo.png b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/danklogo.png Binary files differnew file mode 100644 index 0000000..8c5b78a --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/danklogo.png diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/package.json b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/package.json new file mode 100644 index 0000000..91be6c4 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/package.json @@ -0,0 +1,47 @@ +{ + "name": "dms-theme", + "displayName": "DMS - Dank Material Shell Theme", + "description": "Dynamic theme using matugen & dank16 terminal colors - auto-updated by DankMaterialShell", + "publisher": "DankLinux", + "version": "0.0.3", + "icon": "danklogo.png", + "engines": { + "vscode": "^1.70.0" + }, + "categories": [ + "Themes" + ], + "keywords": [ + "dms", + "dank", + "material", + "dankshell", + "danklinux" + ], + "repository": { + "type": "git", + "url": "https://github.com/AvengeMedia/DankMaterialShell" + }, + "contributes": { + "themes": [ + { + "label": "Dynamic Base16 DankShell", + "uiTheme": "vs-dark", + "path": "./themes/dankshell-default.json", + "_watch": true + }, + { + "label": "Dynamic Base16 DankShell (Dark)", + "uiTheme": "vs-dark", + "path": "./themes/dankshell-dark.json", + "_watch": true + }, + { + "label": "Dynamic Base16 DankShell (Light)", + "uiTheme": "vs", + "path": "./themes/dankshell-light.json", + "_watch": true + } + ] + } +} diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-dark.json b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-dark.json new file mode 100644 index 0000000..2052853 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-dark.json @@ -0,0 +1,36 @@ +{ + "$schema": "vscode://schemas/color-theme", + "name": "Dynamic Base16 DankShell", + "colors": { + "editor.background": "#1a1a2e", + "editor.foreground": "#e4e4e7", + "editorLineNumber.foreground": "#71717a", + "editorLineNumber.activeForeground": "#e4e4e7", + "editorCursor.foreground": "#a78bfa", + "editor.selectionBackground": "#4c1d95", + "activityBar.background": "#1a1a2e", + "activityBar.foreground": "#e4e4e7", + "activityBarBadge.background": "#a78bfa", + "activityBarBadge.foreground": "#1a1a2e", + "sideBar.background": "#1a1a2e", + "sideBar.foreground": "#e4e4e7", + "statusBar.background": "#1a1a2e", + "statusBar.foreground": "#e4e4e7", + "titleBar.activeBackground": "#1a1a2e", + "titleBar.activeForeground": "#e4e4e7" + }, + "tokenColors": [ + { + "scope": ["comment"], + "settings": { "foreground": "#71717a", "fontStyle": "italic" } + }, + { + "scope": ["keyword"], + "settings": { "foreground": "#a78bfa" } + }, + { + "scope": ["string"], + "settings": { "foreground": "#34d399" } + } + ] +} diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-default.json b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-default.json new file mode 100644 index 0000000..2052853 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-default.json @@ -0,0 +1,36 @@ +{ + "$schema": "vscode://schemas/color-theme", + "name": "Dynamic Base16 DankShell", + "colors": { + "editor.background": "#1a1a2e", + "editor.foreground": "#e4e4e7", + "editorLineNumber.foreground": "#71717a", + "editorLineNumber.activeForeground": "#e4e4e7", + "editorCursor.foreground": "#a78bfa", + "editor.selectionBackground": "#4c1d95", + "activityBar.background": "#1a1a2e", + "activityBar.foreground": "#e4e4e7", + "activityBarBadge.background": "#a78bfa", + "activityBarBadge.foreground": "#1a1a2e", + "sideBar.background": "#1a1a2e", + "sideBar.foreground": "#e4e4e7", + "statusBar.background": "#1a1a2e", + "statusBar.foreground": "#e4e4e7", + "titleBar.activeBackground": "#1a1a2e", + "titleBar.activeForeground": "#e4e4e7" + }, + "tokenColors": [ + { + "scope": ["comment"], + "settings": { "foreground": "#71717a", "fontStyle": "italic" } + }, + { + "scope": ["keyword"], + "settings": { "foreground": "#a78bfa" } + }, + { + "scope": ["string"], + "settings": { "foreground": "#34d399" } + } + ] +} diff --git a/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-light.json b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-light.json new file mode 100644 index 0000000..2052853 --- /dev/null +++ b/raveos-hyprland-theme/theme-data/DankMaterialShell/quickshell/matugen/vsix-build/themes/dankshell-light.json @@ -0,0 +1,36 @@ +{ + "$schema": "vscode://schemas/color-theme", + "name": "Dynamic Base16 DankShell", + "colors": { + "editor.background": "#1a1a2e", + "editor.foreground": "#e4e4e7", + "editorLineNumber.foreground": "#71717a", + "editorLineNumber.activeForeground": "#e4e4e7", + "editorCursor.foreground": "#a78bfa", + "editor.selectionBackground": "#4c1d95", + "activityBar.background": "#1a1a2e", + "activityBar.foreground": "#e4e4e7", + "activityBarBadge.background": "#a78bfa", + "activityBarBadge.foreground": "#1a1a2e", + "sideBar.background": "#1a1a2e", + "sideBar.foreground": "#e4e4e7", + "statusBar.background": "#1a1a2e", + "statusBar.foreground": "#e4e4e7", + "titleBar.activeBackground": "#1a1a2e", + "titleBar.activeForeground": "#e4e4e7" + }, + "tokenColors": [ + { + "scope": ["comment"], + "settings": { "foreground": "#71717a", "fontStyle": "italic" } + }, + { + "scope": ["keyword"], + "settings": { "foreground": "#a78bfa" } + }, + { + "scope": ["string"], + "settings": { "foreground": "#34d399" } + } + ] +} |