-
-
Notifications
You must be signed in to change notification settings - Fork 1
feat: update for Blockbench 5, add accent variants #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
WalkQuackBack
wants to merge
10
commits into
catppuccin:main
Choose a base branch
from
WalkQuackBack:feat/bb-4.5
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
f23f71b
feat: update for Blockbench 4.5, add accent variants
WalkQuackBack 868abbd
Delete catwalk-x86_64-unknown-linux-gnu
sgoudham 96c5618
Delete whiskers-x86_64-unknown-linux-gnu
sgoudham 835041c
Merge branch 'main' into feat/bb-4.5
sgoudham 2f04af3
Update blockbench.tera
sgoudham 445c336
fix: yaml engineering
sgoudham d507bd2
fix: yaml engineering tabstops
WalkQuackBack d6bbd3e
refactor: use multiflavor mode to add config settings
WalkQuackBack 3cc4868
fix: theme preview, better implementation of default flavor
WalkQuackBack 44cb06d
feat: add new colours, change bright ui appearance
WalkQuackBack File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| name: whiskers | ||
|
|
||
| on: | ||
| workflow_dispatch: | ||
| push: | ||
| branches: [main] | ||
| pull_request: | ||
| branches: [main] | ||
|
|
||
| jobs: | ||
| run: | ||
| uses: catppuccin/actions/.github/workflows/whiskers-check.yml@v1 | ||
| with: | ||
| args: blockbench.tera | ||
| secrets: inherit |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,31 +1,35 @@ | ||
| --- | ||
| whiskers: | ||
| version: 2.0.0 | ||
| matrix: | ||
| - flavor | ||
| filename: "themes/{{ flavor.identifier | capitalize }}.bbtheme" | ||
| version: ^2.5.1 | ||
| matrix: | ||
| - flavor | ||
| - accent | ||
| hex_format: "#{{r}}{{g}}{{b}}" | ||
| filename: "themes/{{flavor.identifier}}/catppuccin-{{flavor.identifier}}-{{accent}}.bbtheme" | ||
| --- | ||
| {%- set palette = flavor.colors -%} | ||
| { | ||
| "name": "{{ flavor.name }}", | ||
| "author": "Catppuccin", | ||
| "colors": { | ||
| "ui": "#{{ palette.base.hex }}", | ||
| "back": "#{{ palette.mantle.hex }}", | ||
| "dark": "#{{ palette.crust.hex }}", | ||
| "border": "{{ palette.overlay0.hex }}", | ||
| "selected": "#{{ palette.surface1.hex}}", | ||
| "button": "#{{ palette.surface0.hex }}", | ||
| "bright_ui": "#{{ palette.surface0.hex }}", | ||
| "accent": "#{{ palette.surface1.hex }}", | ||
| "frame": "#{{ palette.mantle.hex }}", | ||
| "text": "#{{ palette.text.hex }}", | ||
| "light": "#{{ palette.subtext0.hex }}", | ||
| "accent_text": "#{{ palette.lavender.hex }}", | ||
| "bright_ui_text": "#{{ palette.text.hex }}", | ||
| "subtle_text": "#{{ palette.subtext0.hex }}", | ||
| "grid": "#{{ palette.subtext0.hex }}", | ||
| "wireframe": "#{{ palette.subtext0.hex }}", | ||
| "checkerboard": "#{{ palette.surface1.hex }}" | ||
| } | ||
| /* | ||
| name: Catppuccin {{ flavor.name }} {{ accent | capitalize }} | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: {{ palette.base.hex }}; | ||
| --color-back: {{ palette.mantle.hex }}; | ||
| --color-dark: {{ palette.crust.hex }}; | ||
| --color-border: {{ palette.overlay0.hex }}; | ||
| --color-selected: {{ palette.surface1.hex }}; | ||
| --color-elevated: {{ palette.surface0.hex }}; | ||
| --color-button: {{ palette.surface0.hex }}; | ||
| --color-bright_ui: {{ palette.text.hex }}; | ||
| --color-accent: {{ flavor.colors[accent].hex }}; | ||
| --color-frame: {{ palette.mantle.hex }}; | ||
| --color-text: {{ palette.subtext1.hex }}; | ||
| --color-light: {{ palette.text.hex }}; | ||
| --color-accent_text: {{ palette.base.hex }}; | ||
| --color-bright_ui_text: {{ palette.base.hex }}; | ||
| --color-subtle_text: {{ palette.subtext0.hex }}; | ||
| --color-grid: {{ palette.subtext0.hex }}; | ||
| --color-wireframe: {{ palette.subtext0.hex }}; | ||
| --color-checkerboard: {{ palette.surface1.hex }}; | ||
| } |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Blue | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #8caaee; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Flamingo | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #eebebe; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Green | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #a6d189; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Lavender | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #babbf1; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Maroon | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #ea999c; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Mauve | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #ca9ee6; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| /* | ||
| name: Catppuccin Frappé Peach | ||
| author: Catppuccin | ||
| borders: false | ||
| */ | ||
| body { | ||
| --color-ui: #303446; | ||
| --color-back: #292c3c; | ||
| --color-dark: #232634; | ||
| --color-border: #737994; | ||
| --color-selected: #51576d; | ||
| --color-elevated: #414559; | ||
| --color-button: #414559; | ||
| --color-bright_ui: #c6d0f5; | ||
| --color-accent: #ef9f76; | ||
| --color-frame: #292c3c; | ||
| --color-text: #b5bfe2; | ||
| --color-light: #c6d0f5; | ||
| --color-accent_text: #303446; | ||
| --color-bright_ui_text: #303446; | ||
| --color-subtle_text: #a5adce; | ||
| --color-grid: #a5adce; | ||
| --color-wireframe: #a5adce; | ||
| --color-checkerboard: #51576d; | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.