From 47edd347423f5bb312596dea850a40ba656e166d Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Mon, 25 Nov 2024 22:33:54 +0200 Subject: [PATCH] Breezy theme --- static/styles/Breezy DX.piss | 63 ++++++++++++++++++++++++++++++++++++ static/styles/index.json | 3 +- 2 files changed, 65 insertions(+), 1 deletion(-) create mode 100644 static/styles/Breezy DX.piss diff --git a/static/styles/Breezy DX.piss b/static/styles/Breezy DX.piss new file mode 100644 index 00000000..06f0cd5f --- /dev/null +++ b/static/styles/Breezy DX.piss @@ -0,0 +1,63 @@ +@meta { + name: Breezy DX; + author: HJ; + license: WTFPL; + website: ebin.club; +} + +@palette.Dark { + bg: #121a24; + fg: #182230; + text: #b9b9ba; + link: #d8a070; + accent: #d8a070; + cRed: #FF0000; + cBlue: #0095ff; + cGreen: #0fa00f; + cOrange: #ffa500; +} + +@palette.Light { + bg: #f2f6f9; + fg: #d6dfed; + text: #304055; + underlay: #5d6086; + accent: #f55b1b; + cBlue: #0095ff; + cRed: #d31014; + cGreen: #0fa00f; + cOrange: #ffa500; + border: #d8e6f9; +} + +Root { + --badgeNotification: color | --cRed; + --buttonDefaultHoverGlow: shadow | inset 0 0 0 1 --accent / 1; + --buttonDefaultFocusGlow: shadow | inset 0 0 0 1 --accent / 1; + --buttonDefaultShadow: shadow | inset 0 0 0 1 --text / 0.35, 0 5 5 -5 #000000 / 0.35; + --buttonDefaultBevel: shadow | inset 0 14 14 -14 #FFFFFF / 0.1; + --buttonPressedBevel: shadow | inset 0 -20 20 -20 #000000 / 0.05, inset 0 20 0 80 --accent / 0.2; + --defaultInputBevel: shadow | inset 0 0 0 1 --text / 0.35; + --defaultInputHoverGlow: shadow | 0 0 0 1 --accent / 1; + --defaultInputFocusGlow: shadow | 0 0 0 1 --link / 1; +} + +Button:disabled { + shadow: --buttonDefaultBevel, --buttonDefaultShadow +} + +Button:hover { + shadow: --buttonDefaultHoverGlow, --buttonDefaultBevel, --buttonDefaultShadow +} + +Input { + shadow: --defaultInputBevel +} + +PanelHeader { + shadow: inset 0 30 30 -30 #ffffff / 0.25 +} + +Tab:hover { + shadow: --buttonDefaultHoverGlow, --buttonDefaultBevel, --buttonDefaultShadow +} diff --git a/static/styles/index.json b/static/styles/index.json index 7a136cbc..52365cd3 100644 --- a/static/styles/index.json +++ b/static/styles/index.json @@ -1,3 +1,4 @@ { - "RedmondDX": "/static/styles/Redmond DX.piss" + "RedmondDX": "/static/styles/Redmond DX.piss", + "BreezyDX": "/static/styles/Breezy DX.piss" }