-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: update to whiskers v2 fix: don't always use mocha blue
- Loading branch information
Showing
8 changed files
with
55 additions
and
49 deletions.
There are no files selected for viewing
This file contains 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,5 @@ | ||
_default: | ||
@just --list | ||
|
||
build: | ||
whiskers theme.park.tera |
This file was deleted.
Oops, something went wrong.
This file contains 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,46 @@ | ||
--- | ||
whiskers: | ||
version: "2.3.0" | ||
matrix: | ||
- flavor | ||
filename: "themes/{{ flavor.identifier }}.css" | ||
--- | ||
|
||
{%- macro rgb(color) -%} | ||
{{ color.rgb.r }}, {{ color.rgb.g }}, {{ color.rgb.b }} | ||
{%- endmacro -%} | ||
|
||
:root { | ||
--main-bg-color: #{{ base.hex }}; | ||
|
||
--modal-bg-color: #{{ mantle.hex }}; | ||
--modal-header-color: #{{ crust.hex }}; | ||
--modal-footer-color: #{{ crust.hex }}; | ||
|
||
--drop-down-menu-bg: #{{ surface0.hex }}; | ||
|
||
--button-color: #{{ surface0.hex }}; | ||
--button-color-hover: #{{ surface1.hex }}; | ||
--button-text: var(--text); | ||
--button-text-hover: var(--text-hover); | ||
|
||
--accent-color: {{ self::rgb(color=blue) }}; | ||
--accent-color-hover: rgb(var(--accent-color), 0.8); | ||
--link-color: var(--text); | ||
--link-color-hover: #{{ blue.hex }}; | ||
--label-text-color: #fff; /* have to break convention here */ | ||
|
||
--text: #{{ text.hex }}; | ||
--text-hover: var(--text); | ||
--text-muted: {{ subtext0.hex }}; | ||
|
||
/* Specials */ | ||
--arr-queue-color: #{{ green.hex }}; /* Servarr apps + Bazarr */ | ||
--plex-poster-unwatched: #{{ peach.hex }}; | ||
--petio-spinner: invert(66%) sepia(15%) saturate(1451%) hue-rotate(185deg) brightness(105%) contrast(96%); /* Made with https://codepen.io/jsm91/embed/ZEEawyZ */ /* Blue */ | ||
--gitea-color-primary-dark-4: var(--accent-color); | ||
--overseerr-gradient: linear-gradient( | ||
var(--main-bg-color), | ||
var(--main-bg-color) | ||
); /* Make sure this is compatible with whatever takes in the gradient */ | ||
} |
This file contains 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
This file contains 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
This file contains 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
This file contains 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