init generation of themes based on the catppuccin palettes
This commit is contained in:
commit
4717206305
12 changed files with 2151 additions and 0 deletions
11
generate.sh
Executable file
11
generate.sh
Executable file
|
@ -0,0 +1,11 @@
|
|||
#!/bin/sh
|
||||
flavor="$1"
|
||||
|
||||
source palette/base.env
|
||||
source palette/${flavor}.env
|
||||
|
||||
mkdir -p out
|
||||
|
||||
eval "cat <<EOF
|
||||
$(<template.json)
|
||||
EOF" >out/catppuccin-${flavor}.json 2>/dev/null
|
15
justfile
Normal file
15
justfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
build-all: clean frappe latte macchiato mocha
|
||||
|
||||
frappe: (build "frappe")
|
||||
|
||||
latte: (build "latte")
|
||||
|
||||
macchiato: (build "macchiato")
|
||||
|
||||
mocha: (build "mocha")
|
||||
|
||||
build flavor:
|
||||
./generate.sh {{flavor}}
|
||||
|
||||
clean:
|
||||
rm -r out
|
400
out/catppuccin-frappe.json
Normal file
400
out/catppuccin-frappe.json
Normal file
|
@ -0,0 +1,400 @@
|
|||
{
|
||||
"_pleroma_theme_version": 2,
|
||||
"name": "Catppuccin Frappé",
|
||||
"theme": {
|
||||
"themeEngineVersion": 3,
|
||||
"shadows": {
|
||||
"panel": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"color": "#000000",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"popup": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"blur": 3,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.5
|
||||
}
|
||||
],
|
||||
"avatar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"blur": 8,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
}
|
||||
],
|
||||
"avatarStatus": [],
|
||||
"panelHeader": [],
|
||||
"button": [
|
||||
{
|
||||
"color": "#ca9ee6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"color": "#ca9ee6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#292c3c",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"color": "#ca9ee6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"color": "#ca9ee6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#232634",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"color": "#232634",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"colors": {
|
||||
"underlay": "#000000",
|
||||
"bg": "#303446",
|
||||
"fg": "#414559",
|
||||
"cRed": "#e78284",
|
||||
"cGreen": "#a6d189",
|
||||
"cOrange": "#ef9f76",
|
||||
"cBlue": "#85c1dc",
|
||||
"accent": "#ca9ee6",
|
||||
"link": "#ca9ee6",
|
||||
"text": "#c6d0f5",
|
||||
"badgeNotification": "#e78284",
|
||||
"badgeNotificationText": "#000000",
|
||||
"alertNeutral": "#c6d0f5",
|
||||
"alertNeutralText": "#ffffff",
|
||||
"alertPopupNeutral": "#c6d0f5",
|
||||
"alertPopupNeutralText": "#000000",
|
||||
"alertSuccess": "#a6d189",
|
||||
"alertSuccessText": "#ffffff",
|
||||
"alertPopupSuccess": "#a6d189",
|
||||
"alertPopupSuccessText": "#000000",
|
||||
"alertWarning": "#ef9f76",
|
||||
"alertWarningText": "#ffffff",
|
||||
"alertPopupWarning": "#ef9f76",
|
||||
"alertPopupWarningText": "#000000",
|
||||
"alertError": "#e78284",
|
||||
"alertErrorText": "#ffffff",
|
||||
"alertPopupError": "#e78284",
|
||||
"alertPopupErrorText": "#000000",
|
||||
"panel": "#414559",
|
||||
"panelText": "#c6d0f5",
|
||||
"alertNeutralPanelText": "#0a1336",
|
||||
"alertSuccessPanelText": "#0a1336",
|
||||
"alertWarningPanelText": "#ffffff",
|
||||
"alertErrorPanelText": "#ffffff",
|
||||
"fgText": "#c6d0f5",
|
||||
"topBar": "#414559",
|
||||
"topBarText": "#c6d0f5",
|
||||
"input": "#414559",
|
||||
"inputTopbarText": "#c6d0f5",
|
||||
"inputPanelText": "#c6d0f5",
|
||||
"inputText": "#c6d0f5",
|
||||
"btn": "#414559",
|
||||
"btnText": "#c6d0f5",
|
||||
"btnTopBarText": "#c6d0f5",
|
||||
"btnDisabled": "#292c40",
|
||||
"btnDisabledTopBarText": "#51566d",
|
||||
"btnPanelText": "#c6d0f5",
|
||||
"btnDisabledPanelText": "#51566d",
|
||||
"btnDisabledText": "#51566d",
|
||||
"btnToggled": "#60678c",
|
||||
"btnToggledTopBarText": "#ffffff",
|
||||
"btnToggledPanelText": "#ffffff",
|
||||
"btnToggledText": "#ffffff",
|
||||
"btnPressed": "#414559",
|
||||
"btnPressedTopBarText": "#c6d0f5",
|
||||
"btnPressedTopBar": "#414559",
|
||||
"btnPressedPanelText": "#c6d0f5",
|
||||
"btnPressedPanel": "#414559",
|
||||
"btnPressedText": "#c6d0f5",
|
||||
"tabActiveText": "#c6d0f5",
|
||||
"tabText": "#c6d0f5",
|
||||
"tab": "#414559",
|
||||
"fgLink": "#ca9ee6",
|
||||
"topBarLink": "#ca9ee6",
|
||||
"panelLink": "#ca9ee6",
|
||||
"panelFaint": "#c6d0f5",
|
||||
"icon": "#777d98",
|
||||
"poll": "#655886",
|
||||
"pollText": "#ffffff",
|
||||
"border": "#3b3f56",
|
||||
"postCyantext": "#85c1dc",
|
||||
"postGreentext": "#a6d189",
|
||||
"postLink": "#ca9ee6",
|
||||
"lightText": "#ffffff",
|
||||
"popover": "#303446",
|
||||
"selectedMenuPopover": "#2e324a",
|
||||
"highlight": "#2e324a",
|
||||
"highlightText": "#c6d0f5",
|
||||
"selectedMenu": "#2e324a",
|
||||
"selectedMenuText": "#c6d0f5",
|
||||
"selectedMenuPopoverIcon": "#7c83a0",
|
||||
"highlightLink": "#ca9ee6",
|
||||
"selectedMenuLink": "#ca9ee6",
|
||||
"selectedMenuPopoverLink": "#ca9ee6",
|
||||
"selectedMenuPopoverText": "#c6d0f5",
|
||||
"faintLink": "#ca9ee6",
|
||||
"highlightFaintLink": "#ca9ee6",
|
||||
"selectedMenuFaintLink": "#ca9ee6",
|
||||
"selectedMenuPopoverFaintLink": "#ca9ee6",
|
||||
"faint": "#c6d0f5",
|
||||
"highlightFaintText": "#c6d0f5",
|
||||
"selectedMenuFaintText": "#c6d0f5",
|
||||
"selectedMenuPopoverFaintText": "#c6d0f5",
|
||||
"highlightLightText": "#ffffff",
|
||||
"selectedMenuLightText": "#ffffff",
|
||||
"selectedMenuPopoverLightText": "#ffffff",
|
||||
"selectedMenuIcon": "#7c83a0",
|
||||
"selectedPost": "#2e324a",
|
||||
"selectedPostText": "#c6d0f5",
|
||||
"selectedPostIcon": "#7c83a0",
|
||||
"selectedPostLink": "#ca9ee6",
|
||||
"selectedPostFaintLink": "#ca9ee6",
|
||||
"highlightPostLink": "#ca9ee6",
|
||||
"selectedPostPostLink": "#ca9ee6",
|
||||
"selectedPostLightText": "#ffffff",
|
||||
"selectedPostFaintText": "#c6d0f5",
|
||||
"popoverText": "#c6d0f5",
|
||||
"popoverIcon": "#777d98",
|
||||
"popoverLink": "#ca9ee6",
|
||||
"postFaintLink": "#ca9ee6",
|
||||
"popoverPostFaintLink": "#ca9ee6",
|
||||
"popoverFaintLink": "#ca9ee6",
|
||||
"popoverFaintText": "#c6d0f5",
|
||||
"popoverPostLink": "#ca9ee6",
|
||||
"popoverLightText": "#ffffff",
|
||||
"highlightIcon": "#7c83a0",
|
||||
"highlightPostFaintLink": "#ca9ee6",
|
||||
"profileTint": "#303446",
|
||||
"profileBg": "#131522",
|
||||
"wallpaper": "#212334"
|
||||
},
|
||||
"opacity": {
|
||||
"underlay": 0.15,
|
||||
"bg": 1,
|
||||
"alert": 0.5,
|
||||
"alertPopup": 0.95,
|
||||
"panel": 1,
|
||||
"input": 0.5,
|
||||
"btn": 1,
|
||||
"faint": 0.5,
|
||||
"border": 1,
|
||||
"popover": 1,
|
||||
"profileTint": 0.5
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
},
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"themeEngineVersion": 3,
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
},
|
||||
"shadows": {
|
||||
"button": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#ca9ee6",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#ca9ee6",
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"color": "#ca9ee6",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#232634",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#232634",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#ca9ee6",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#292c3c",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
]
|
||||
},
|
||||
"opacity": {},
|
||||
"colors": {
|
||||
"bg": "#303446",
|
||||
"fg": "#414559",
|
||||
"text": "#c6d0f5",
|
||||
"link": "#ca9ee6",
|
||||
"cBlue": "#85c1dc",
|
||||
"cRed": "#e78284",
|
||||
"cGreen": "#a6d189",
|
||||
"cOrange": "#ef9f76"
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
}
|
||||
}
|
||||
}
|
400
out/catppuccin-latte.json
Normal file
400
out/catppuccin-latte.json
Normal file
|
@ -0,0 +1,400 @@
|
|||
{
|
||||
"_pleroma_theme_version": 2,
|
||||
"name": "Catppuccin Latte",
|
||||
"theme": {
|
||||
"themeEngineVersion": 3,
|
||||
"shadows": {
|
||||
"panel": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"color": "#000000",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"popup": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"blur": 3,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.5
|
||||
}
|
||||
],
|
||||
"avatar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"blur": 8,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
}
|
||||
],
|
||||
"avatarStatus": [],
|
||||
"panelHeader": [],
|
||||
"button": [
|
||||
{
|
||||
"color": "#8839ef",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"color": "#8839ef",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#e6e9ef",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"color": "#8839ef",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"color": "#8839ef",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#dce0e8",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"color": "#dce0e8",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"colors": {
|
||||
"underlay": "#000000",
|
||||
"bg": "#eff1f5",
|
||||
"fg": "#ccd0da",
|
||||
"cRed": "#d20f39",
|
||||
"cGreen": "#40a02b",
|
||||
"cOrange": "#fe640b",
|
||||
"cBlue": "#209fb5",
|
||||
"accent": "#8839ef",
|
||||
"link": "#8839ef",
|
||||
"text": "#4c4f69",
|
||||
"badgeNotification": "#d20f39",
|
||||
"badgeNotificationText": "#000000",
|
||||
"alertNeutral": "#4c4f69",
|
||||
"alertNeutralText": "#ffffff",
|
||||
"alertPopupNeutral": "#4c4f69",
|
||||
"alertPopupNeutralText": "#000000",
|
||||
"alertSuccess": "#40a02b",
|
||||
"alertSuccessText": "#ffffff",
|
||||
"alertPopupSuccess": "#40a02b",
|
||||
"alertPopupSuccessText": "#000000",
|
||||
"alertWarning": "#fe640b",
|
||||
"alertWarningText": "#ffffff",
|
||||
"alertPopupWarning": "#fe640b",
|
||||
"alertPopupWarningText": "#000000",
|
||||
"alertError": "#d20f39",
|
||||
"alertErrorText": "#ffffff",
|
||||
"alertPopupError": "#d20f39",
|
||||
"alertPopupErrorText": "#000000",
|
||||
"panel": "#ccd0da",
|
||||
"panelText": "#4c4f69",
|
||||
"alertNeutralPanelText": "#0a1336",
|
||||
"alertSuccessPanelText": "#0a1336",
|
||||
"alertWarningPanelText": "#ffffff",
|
||||
"alertErrorPanelText": "#ffffff",
|
||||
"fgText": "#4c4f69",
|
||||
"topBar": "#ccd0da",
|
||||
"topBarText": "#4c4f69",
|
||||
"input": "#ccd0da",
|
||||
"inputTopbarText": "#4c4f69",
|
||||
"inputPanelText": "#4c4f69",
|
||||
"inputText": "#4c4f69",
|
||||
"btn": "#ccd0da",
|
||||
"btnText": "#4c4f69",
|
||||
"btnTopBarText": "#4c4f69",
|
||||
"btnDisabled": "#292c40",
|
||||
"btnDisabledTopBarText": "#51566d",
|
||||
"btnPanelText": "#4c4f69",
|
||||
"btnDisabledPanelText": "#51566d",
|
||||
"btnDisabledText": "#51566d",
|
||||
"btnToggled": "#60678c",
|
||||
"btnToggledTopBarText": "#ffffff",
|
||||
"btnToggledPanelText": "#ffffff",
|
||||
"btnToggledText": "#ffffff",
|
||||
"btnPressed": "#ccd0da",
|
||||
"btnPressedTopBarText": "#4c4f69",
|
||||
"btnPressedTopBar": "#ccd0da",
|
||||
"btnPressedPanelText": "#4c4f69",
|
||||
"btnPressedPanel": "#ccd0da",
|
||||
"btnPressedText": "#4c4f69",
|
||||
"tabActiveText": "#4c4f69",
|
||||
"tabText": "#4c4f69",
|
||||
"tab": "#ccd0da",
|
||||
"fgLink": "#8839ef",
|
||||
"topBarLink": "#8839ef",
|
||||
"panelLink": "#8839ef",
|
||||
"panelFaint": "#4c4f69",
|
||||
"icon": "#777d98",
|
||||
"poll": "#655886",
|
||||
"pollText": "#ffffff",
|
||||
"border": "#3b3f56",
|
||||
"postCyantext": "#209fb5",
|
||||
"postGreentext": "#40a02b",
|
||||
"postLink": "#8839ef",
|
||||
"lightText": "#ffffff",
|
||||
"popover": "#eff1f5",
|
||||
"selectedMenuPopover": "#2e324a",
|
||||
"highlight": "#2e324a",
|
||||
"highlightText": "#4c4f69",
|
||||
"selectedMenu": "#2e324a",
|
||||
"selectedMenuText": "#4c4f69",
|
||||
"selectedMenuPopoverIcon": "#7c83a0",
|
||||
"highlightLink": "#8839ef",
|
||||
"selectedMenuLink": "#8839ef",
|
||||
"selectedMenuPopoverLink": "#8839ef",
|
||||
"selectedMenuPopoverText": "#4c4f69",
|
||||
"faintLink": "#8839ef",
|
||||
"highlightFaintLink": "#8839ef",
|
||||
"selectedMenuFaintLink": "#8839ef",
|
||||
"selectedMenuPopoverFaintLink": "#8839ef",
|
||||
"faint": "#4c4f69",
|
||||
"highlightFaintText": "#4c4f69",
|
||||
"selectedMenuFaintText": "#4c4f69",
|
||||
"selectedMenuPopoverFaintText": "#4c4f69",
|
||||
"highlightLightText": "#ffffff",
|
||||
"selectedMenuLightText": "#ffffff",
|
||||
"selectedMenuPopoverLightText": "#ffffff",
|
||||
"selectedMenuIcon": "#7c83a0",
|
||||
"selectedPost": "#2e324a",
|
||||
"selectedPostText": "#4c4f69",
|
||||
"selectedPostIcon": "#7c83a0",
|
||||
"selectedPostLink": "#8839ef",
|
||||
"selectedPostFaintLink": "#8839ef",
|
||||
"highlightPostLink": "#8839ef",
|
||||
"selectedPostPostLink": "#8839ef",
|
||||
"selectedPostLightText": "#ffffff",
|
||||
"selectedPostFaintText": "#4c4f69",
|
||||
"popoverText": "#4c4f69",
|
||||
"popoverIcon": "#777d98",
|
||||
"popoverLink": "#8839ef",
|
||||
"postFaintLink": "#8839ef",
|
||||
"popoverPostFaintLink": "#8839ef",
|
||||
"popoverFaintLink": "#8839ef",
|
||||
"popoverFaintText": "#4c4f69",
|
||||
"popoverPostLink": "#8839ef",
|
||||
"popoverLightText": "#ffffff",
|
||||
"highlightIcon": "#7c83a0",
|
||||
"highlightPostFaintLink": "#8839ef",
|
||||
"profileTint": "#eff1f5",
|
||||
"profileBg": "#131522",
|
||||
"wallpaper": "#212334"
|
||||
},
|
||||
"opacity": {
|
||||
"underlay": 0.15,
|
||||
"bg": 1,
|
||||
"alert": 0.5,
|
||||
"alertPopup": 0.95,
|
||||
"panel": 1,
|
||||
"input": 0.5,
|
||||
"btn": 1,
|
||||
"faint": 0.5,
|
||||
"border": 1,
|
||||
"popover": 1,
|
||||
"profileTint": 0.5
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
},
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"themeEngineVersion": 3,
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
},
|
||||
"shadows": {
|
||||
"button": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#8839ef",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#8839ef",
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"color": "#8839ef",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#dce0e8",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#dce0e8",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#8839ef",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#e6e9ef",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
]
|
||||
},
|
||||
"opacity": {},
|
||||
"colors": {
|
||||
"bg": "#eff1f5",
|
||||
"fg": "#ccd0da",
|
||||
"text": "#4c4f69",
|
||||
"link": "#8839ef",
|
||||
"cBlue": "#209fb5",
|
||||
"cRed": "#d20f39",
|
||||
"cGreen": "#40a02b",
|
||||
"cOrange": "#fe640b"
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
}
|
||||
}
|
||||
}
|
400
out/catppuccin-macchiato.json
Normal file
400
out/catppuccin-macchiato.json
Normal file
|
@ -0,0 +1,400 @@
|
|||
{
|
||||
"_pleroma_theme_version": 2,
|
||||
"name": "Catppuccin Macchiato",
|
||||
"theme": {
|
||||
"themeEngineVersion": 3,
|
||||
"shadows": {
|
||||
"panel": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"color": "#000000",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"popup": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"blur": 3,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.5
|
||||
}
|
||||
],
|
||||
"avatar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"blur": 8,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
}
|
||||
],
|
||||
"avatarStatus": [],
|
||||
"panelHeader": [],
|
||||
"button": [
|
||||
{
|
||||
"color": "#c6a0f6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"color": "#c6a0f6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#1e2030",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"color": "#c6a0f6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"color": "#c6a0f6",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#181926",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"color": "#181926",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"colors": {
|
||||
"underlay": "#000000",
|
||||
"bg": "#24273a",
|
||||
"fg": "#363a4f",
|
||||
"cRed": "#ed8796",
|
||||
"cGreen": "#a6da95",
|
||||
"cOrange": "#f5a97f",
|
||||
"cBlue": "#7dc4e4",
|
||||
"accent": "#c6a0f6",
|
||||
"link": "#c6a0f6",
|
||||
"text": "#cad3f5",
|
||||
"badgeNotification": "#ed8796",
|
||||
"badgeNotificationText": "#000000",
|
||||
"alertNeutral": "#cad3f5",
|
||||
"alertNeutralText": "#ffffff",
|
||||
"alertPopupNeutral": "#cad3f5",
|
||||
"alertPopupNeutralText": "#000000",
|
||||
"alertSuccess": "#a6da95",
|
||||
"alertSuccessText": "#ffffff",
|
||||
"alertPopupSuccess": "#a6da95",
|
||||
"alertPopupSuccessText": "#000000",
|
||||
"alertWarning": "#f5a97f",
|
||||
"alertWarningText": "#ffffff",
|
||||
"alertPopupWarning": "#f5a97f",
|
||||
"alertPopupWarningText": "#000000",
|
||||
"alertError": "#ed8796",
|
||||
"alertErrorText": "#ffffff",
|
||||
"alertPopupError": "#ed8796",
|
||||
"alertPopupErrorText": "#000000",
|
||||
"panel": "#363a4f",
|
||||
"panelText": "#cad3f5",
|
||||
"alertNeutralPanelText": "#0a1336",
|
||||
"alertSuccessPanelText": "#0a1336",
|
||||
"alertWarningPanelText": "#ffffff",
|
||||
"alertErrorPanelText": "#ffffff",
|
||||
"fgText": "#cad3f5",
|
||||
"topBar": "#363a4f",
|
||||
"topBarText": "#cad3f5",
|
||||
"input": "#363a4f",
|
||||
"inputTopbarText": "#cad3f5",
|
||||
"inputPanelText": "#cad3f5",
|
||||
"inputText": "#cad3f5",
|
||||
"btn": "#363a4f",
|
||||
"btnText": "#cad3f5",
|
||||
"btnTopBarText": "#cad3f5",
|
||||
"btnDisabled": "#292c40",
|
||||
"btnDisabledTopBarText": "#51566d",
|
||||
"btnPanelText": "#cad3f5",
|
||||
"btnDisabledPanelText": "#51566d",
|
||||
"btnDisabledText": "#51566d",
|
||||
"btnToggled": "#60678c",
|
||||
"btnToggledTopBarText": "#ffffff",
|
||||
"btnToggledPanelText": "#ffffff",
|
||||
"btnToggledText": "#ffffff",
|
||||
"btnPressed": "#363a4f",
|
||||
"btnPressedTopBarText": "#cad3f5",
|
||||
"btnPressedTopBar": "#363a4f",
|
||||
"btnPressedPanelText": "#cad3f5",
|
||||
"btnPressedPanel": "#363a4f",
|
||||
"btnPressedText": "#cad3f5",
|
||||
"tabActiveText": "#cad3f5",
|
||||
"tabText": "#cad3f5",
|
||||
"tab": "#363a4f",
|
||||
"fgLink": "#c6a0f6",
|
||||
"topBarLink": "#c6a0f6",
|
||||
"panelLink": "#c6a0f6",
|
||||
"panelFaint": "#cad3f5",
|
||||
"icon": "#777d98",
|
||||
"poll": "#655886",
|
||||
"pollText": "#ffffff",
|
||||
"border": "#3b3f56",
|
||||
"postCyantext": "#7dc4e4",
|
||||
"postGreentext": "#a6da95",
|
||||
"postLink": "#c6a0f6",
|
||||
"lightText": "#ffffff",
|
||||
"popover": "#24273a",
|
||||
"selectedMenuPopover": "#2e324a",
|
||||
"highlight": "#2e324a",
|
||||
"highlightText": "#cad3f5",
|
||||
"selectedMenu": "#2e324a",
|
||||
"selectedMenuText": "#cad3f5",
|
||||
"selectedMenuPopoverIcon": "#7c83a0",
|
||||
"highlightLink": "#c6a0f6",
|
||||
"selectedMenuLink": "#c6a0f6",
|
||||
"selectedMenuPopoverLink": "#c6a0f6",
|
||||
"selectedMenuPopoverText": "#cad3f5",
|
||||
"faintLink": "#c6a0f6",
|
||||
"highlightFaintLink": "#c6a0f6",
|
||||
"selectedMenuFaintLink": "#c6a0f6",
|
||||
"selectedMenuPopoverFaintLink": "#c6a0f6",
|
||||
"faint": "#cad3f5",
|
||||
"highlightFaintText": "#cad3f5",
|
||||
"selectedMenuFaintText": "#cad3f5",
|
||||
"selectedMenuPopoverFaintText": "#cad3f5",
|
||||
"highlightLightText": "#ffffff",
|
||||
"selectedMenuLightText": "#ffffff",
|
||||
"selectedMenuPopoverLightText": "#ffffff",
|
||||
"selectedMenuIcon": "#7c83a0",
|
||||
"selectedPost": "#2e324a",
|
||||
"selectedPostText": "#cad3f5",
|
||||
"selectedPostIcon": "#7c83a0",
|
||||
"selectedPostLink": "#c6a0f6",
|
||||
"selectedPostFaintLink": "#c6a0f6",
|
||||
"highlightPostLink": "#c6a0f6",
|
||||
"selectedPostPostLink": "#c6a0f6",
|
||||
"selectedPostLightText": "#ffffff",
|
||||
"selectedPostFaintText": "#cad3f5",
|
||||
"popoverText": "#cad3f5",
|
||||
"popoverIcon": "#777d98",
|
||||
"popoverLink": "#c6a0f6",
|
||||
"postFaintLink": "#c6a0f6",
|
||||
"popoverPostFaintLink": "#c6a0f6",
|
||||
"popoverFaintLink": "#c6a0f6",
|
||||
"popoverFaintText": "#cad3f5",
|
||||
"popoverPostLink": "#c6a0f6",
|
||||
"popoverLightText": "#ffffff",
|
||||
"highlightIcon": "#7c83a0",
|
||||
"highlightPostFaintLink": "#c6a0f6",
|
||||
"profileTint": "#24273a",
|
||||
"profileBg": "#131522",
|
||||
"wallpaper": "#212334"
|
||||
},
|
||||
"opacity": {
|
||||
"underlay": 0.15,
|
||||
"bg": 1,
|
||||
"alert": 0.5,
|
||||
"alertPopup": 0.95,
|
||||
"panel": 1,
|
||||
"input": 0.5,
|
||||
"btn": 1,
|
||||
"faint": 0.5,
|
||||
"border": 1,
|
||||
"popover": 1,
|
||||
"profileTint": 0.5
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
},
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"themeEngineVersion": 3,
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
},
|
||||
"shadows": {
|
||||
"button": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#c6a0f6",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#c6a0f6",
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"color": "#c6a0f6",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#181926",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#181926",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#c6a0f6",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#1e2030",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
]
|
||||
},
|
||||
"opacity": {},
|
||||
"colors": {
|
||||
"bg": "#24273a",
|
||||
"fg": "#363a4f",
|
||||
"text": "#cad3f5",
|
||||
"link": "#c6a0f6",
|
||||
"cBlue": "#7dc4e4",
|
||||
"cRed": "#ed8796",
|
||||
"cGreen": "#a6da95",
|
||||
"cOrange": "#f5a97f"
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
}
|
||||
}
|
||||
}
|
400
out/catppuccin-mocha.json
Normal file
400
out/catppuccin-mocha.json
Normal file
|
@ -0,0 +1,400 @@
|
|||
{
|
||||
"_pleroma_theme_version": 2,
|
||||
"name": "Catppuccin Mocha",
|
||||
"theme": {
|
||||
"themeEngineVersion": 3,
|
||||
"shadows": {
|
||||
"panel": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"color": "#000000",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"popup": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"blur": 3,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.5
|
||||
}
|
||||
],
|
||||
"avatar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"blur": 8,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.7
|
||||
}
|
||||
],
|
||||
"avatarStatus": [],
|
||||
"panelHeader": [],
|
||||
"button": [
|
||||
{
|
||||
"color": "#cba6f7",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"color": "#cba6f7",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#181825",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"color": "#cba6f7",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"color": "#cba6f7",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "#11111b",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"color": "#11111b",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"colors": {
|
||||
"underlay": "#000000",
|
||||
"bg": "#1e1e2e",
|
||||
"fg": "#313244",
|
||||
"cRed": "#f38ba8",
|
||||
"cGreen": "#a6e3a1",
|
||||
"cOrange": "#fab387",
|
||||
"cBlue": "#74c7ec",
|
||||
"accent": "#cba6f7",
|
||||
"link": "#cba6f7",
|
||||
"text": "#cdd6f4",
|
||||
"badgeNotification": "#f38ba8",
|
||||
"badgeNotificationText": "#000000",
|
||||
"alertNeutral": "#cdd6f4",
|
||||
"alertNeutralText": "#ffffff",
|
||||
"alertPopupNeutral": "#cdd6f4",
|
||||
"alertPopupNeutralText": "#000000",
|
||||
"alertSuccess": "#a6e3a1",
|
||||
"alertSuccessText": "#ffffff",
|
||||
"alertPopupSuccess": "#a6e3a1",
|
||||
"alertPopupSuccessText": "#000000",
|
||||
"alertWarning": "#fab387",
|
||||
"alertWarningText": "#ffffff",
|
||||
"alertPopupWarning": "#fab387",
|
||||
"alertPopupWarningText": "#000000",
|
||||
"alertError": "#f38ba8",
|
||||
"alertErrorText": "#ffffff",
|
||||
"alertPopupError": "#f38ba8",
|
||||
"alertPopupErrorText": "#000000",
|
||||
"panel": "#313244",
|
||||
"panelText": "#cdd6f4",
|
||||
"alertNeutralPanelText": "#0a1336",
|
||||
"alertSuccessPanelText": "#0a1336",
|
||||
"alertWarningPanelText": "#ffffff",
|
||||
"alertErrorPanelText": "#ffffff",
|
||||
"fgText": "#cdd6f4",
|
||||
"topBar": "#313244",
|
||||
"topBarText": "#cdd6f4",
|
||||
"input": "#313244",
|
||||
"inputTopbarText": "#cdd6f4",
|
||||
"inputPanelText": "#cdd6f4",
|
||||
"inputText": "#cdd6f4",
|
||||
"btn": "#313244",
|
||||
"btnText": "#cdd6f4",
|
||||
"btnTopBarText": "#cdd6f4",
|
||||
"btnDisabled": "#292c40",
|
||||
"btnDisabledTopBarText": "#51566d",
|
||||
"btnPanelText": "#cdd6f4",
|
||||
"btnDisabledPanelText": "#51566d",
|
||||
"btnDisabledText": "#51566d",
|
||||
"btnToggled": "#60678c",
|
||||
"btnToggledTopBarText": "#ffffff",
|
||||
"btnToggledPanelText": "#ffffff",
|
||||
"btnToggledText": "#ffffff",
|
||||
"btnPressed": "#313244",
|
||||
"btnPressedTopBarText": "#cdd6f4",
|
||||
"btnPressedTopBar": "#313244",
|
||||
"btnPressedPanelText": "#cdd6f4",
|
||||
"btnPressedPanel": "#313244",
|
||||
"btnPressedText": "#cdd6f4",
|
||||
"tabActiveText": "#cdd6f4",
|
||||
"tabText": "#cdd6f4",
|
||||
"tab": "#313244",
|
||||
"fgLink": "#cba6f7",
|
||||
"topBarLink": "#cba6f7",
|
||||
"panelLink": "#cba6f7",
|
||||
"panelFaint": "#cdd6f4",
|
||||
"icon": "#777d98",
|
||||
"poll": "#655886",
|
||||
"pollText": "#ffffff",
|
||||
"border": "#3b3f56",
|
||||
"postCyantext": "#74c7ec",
|
||||
"postGreentext": "#a6e3a1",
|
||||
"postLink": "#cba6f7",
|
||||
"lightText": "#ffffff",
|
||||
"popover": "#1e1e2e",
|
||||
"selectedMenuPopover": "#2e324a",
|
||||
"highlight": "#2e324a",
|
||||
"highlightText": "#cdd6f4",
|
||||
"selectedMenu": "#2e324a",
|
||||
"selectedMenuText": "#cdd6f4",
|
||||
"selectedMenuPopoverIcon": "#7c83a0",
|
||||
"highlightLink": "#cba6f7",
|
||||
"selectedMenuLink": "#cba6f7",
|
||||
"selectedMenuPopoverLink": "#cba6f7",
|
||||
"selectedMenuPopoverText": "#cdd6f4",
|
||||
"faintLink": "#cba6f7",
|
||||
"highlightFaintLink": "#cba6f7",
|
||||
"selectedMenuFaintLink": "#cba6f7",
|
||||
"selectedMenuPopoverFaintLink": "#cba6f7",
|
||||
"faint": "#cdd6f4",
|
||||
"highlightFaintText": "#cdd6f4",
|
||||
"selectedMenuFaintText": "#cdd6f4",
|
||||
"selectedMenuPopoverFaintText": "#cdd6f4",
|
||||
"highlightLightText": "#ffffff",
|
||||
"selectedMenuLightText": "#ffffff",
|
||||
"selectedMenuPopoverLightText": "#ffffff",
|
||||
"selectedMenuIcon": "#7c83a0",
|
||||
"selectedPost": "#2e324a",
|
||||
"selectedPostText": "#cdd6f4",
|
||||
"selectedPostIcon": "#7c83a0",
|
||||
"selectedPostLink": "#cba6f7",
|
||||
"selectedPostFaintLink": "#cba6f7",
|
||||
"highlightPostLink": "#cba6f7",
|
||||
"selectedPostPostLink": "#cba6f7",
|
||||
"selectedPostLightText": "#ffffff",
|
||||
"selectedPostFaintText": "#cdd6f4",
|
||||
"popoverText": "#cdd6f4",
|
||||
"popoverIcon": "#777d98",
|
||||
"popoverLink": "#cba6f7",
|
||||
"postFaintLink": "#cba6f7",
|
||||
"popoverPostFaintLink": "#cba6f7",
|
||||
"popoverFaintLink": "#cba6f7",
|
||||
"popoverFaintText": "#cdd6f4",
|
||||
"popoverPostLink": "#cba6f7",
|
||||
"popoverLightText": "#ffffff",
|
||||
"highlightIcon": "#7c83a0",
|
||||
"highlightPostFaintLink": "#cba6f7",
|
||||
"profileTint": "#1e1e2e",
|
||||
"profileBg": "#131522",
|
||||
"wallpaper": "#212334"
|
||||
},
|
||||
"opacity": {
|
||||
"underlay": 0.15,
|
||||
"bg": 1,
|
||||
"alert": 0.5,
|
||||
"alertPopup": 0.95,
|
||||
"panel": 1,
|
||||
"input": 0.5,
|
||||
"btn": 1,
|
||||
"faint": 0.5,
|
||||
"border": 1,
|
||||
"popover": 1,
|
||||
"profileTint": 0.5
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
},
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"themeEngineVersion": 3,
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
},
|
||||
"shadows": {
|
||||
"button": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#cba6f7",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#cba6f7",
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"color": "#cba6f7",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#11111b",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "#11111b",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "#cba6f7",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "#181825",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "#000000",
|
||||
"alpha": 0.6
|
||||
}
|
||||
]
|
||||
},
|
||||
"opacity": {},
|
||||
"colors": {
|
||||
"bg": "#1e1e2e",
|
||||
"fg": "#313244",
|
||||
"text": "#cdd6f4",
|
||||
"link": "#cba6f7",
|
||||
"cBlue": "#74c7ec",
|
||||
"cRed": "#f38ba8",
|
||||
"cGreen": "#a6e3a1",
|
||||
"cOrange": "#fab387"
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
}
|
||||
}
|
||||
}
|
13
palette/base.env
Normal file
13
palette/base.env
Normal file
|
@ -0,0 +1,13 @@
|
|||
black="#000000"
|
||||
white="#ffffff"
|
||||
alertPanelText="#0a1336"
|
||||
border="#3b3f56"
|
||||
btnDisabled="#292c40"
|
||||
btnDisabledText="#51566d"
|
||||
btnToggled="#60678c"
|
||||
icon="#777d98"
|
||||
poll="#655886"
|
||||
profileBg="#131522"
|
||||
selected="#2e324a"
|
||||
selectedIcon="#7c83a0"
|
||||
wallpaper="#212334"
|
28
palette/frappe.env
Normal file
28
palette/frappe.env
Normal file
|
@ -0,0 +1,28 @@
|
|||
name="Frappé"
|
||||
|
||||
rosewater="#f2d5cf"
|
||||
flamingo="#eebebe"
|
||||
pink="#f4b8e4"
|
||||
mauve="#ca9ee6"
|
||||
red="#e78284"
|
||||
maroon="#ea999c"
|
||||
peach="#ef9f76"
|
||||
yellow="#e5c890"
|
||||
green="#a6d189"
|
||||
teal="#81c8be"
|
||||
sky="#99d1db"
|
||||
sapphire="#85c1dc"
|
||||
blue="#8caaee"
|
||||
lavender="#babbf1"
|
||||
text="#c6d0f5"
|
||||
subtext1="#b5bfe2"
|
||||
subtext0="#a5adce"
|
||||
overlay2="#949cbb"
|
||||
overlay1="#838ba7"
|
||||
overlay0="#737994"
|
||||
surface2="#626880"
|
||||
surface1="#51576d"
|
||||
surface0="#414559"
|
||||
base="#303446"
|
||||
mantle="#292c3c"
|
||||
crust="#232634"
|
28
palette/latte.env
Normal file
28
palette/latte.env
Normal file
|
@ -0,0 +1,28 @@
|
|||
name="Latte"
|
||||
|
||||
rosewater="#dc8a78"
|
||||
flamingo="#dd7878"
|
||||
pink="#ea76cb"
|
||||
mauve="#8839ef"
|
||||
red="#d20f39"
|
||||
maroon="#e64553"
|
||||
peach="#fe640b"
|
||||
yellow="#df8e1d"
|
||||
green="#40a02b"
|
||||
teal="#179299"
|
||||
sky="#04a5e5"
|
||||
sapphire="#209fb5"
|
||||
blue="#1e66f5"
|
||||
lavender="#7287fd"
|
||||
text="#4c4f69"
|
||||
subtext1="#5c5f77"
|
||||
subtext0="#6c6f85"
|
||||
overlay2="#7c7f93"
|
||||
overlay1="#8c8fa1"
|
||||
overlay0="#9ca0b0"
|
||||
surface2="#acb0be"
|
||||
surface1="#bcc0cc"
|
||||
surface0="#ccd0da"
|
||||
base="#eff1f5"
|
||||
mantle="#e6e9ef"
|
||||
crust="#dce0e8"
|
28
palette/macchiato.env
Normal file
28
palette/macchiato.env
Normal file
|
@ -0,0 +1,28 @@
|
|||
name="Macchiato"
|
||||
|
||||
rosewater="#f4dbd6"
|
||||
flamingo="#f0c6c6"
|
||||
pink="#f5bde6"
|
||||
mauve="#c6a0f6"
|
||||
red="#ed8796"
|
||||
maroon="#ee99a0"
|
||||
peach="#f5a97f"
|
||||
yellow="#eed49f"
|
||||
green="#a6da95"
|
||||
teal="#8bd5ca"
|
||||
sky="#91d7e3"
|
||||
sapphire="#7dc4e4"
|
||||
blue="#8aadf4"
|
||||
lavender="#b7bdf8"
|
||||
text="#cad3f5"
|
||||
subtext1="#b8c0e0"
|
||||
subtext0="#a5adcb"
|
||||
overlay2="#939ab7"
|
||||
overlay1="#8087a2"
|
||||
overlay0="#6e738d"
|
||||
surface2="#5b6078"
|
||||
surface1="#494d64"
|
||||
surface0="#363a4f"
|
||||
base="#24273a"
|
||||
mantle="#1e2030"
|
||||
crust="#181926"
|
28
palette/mocha.env
Normal file
28
palette/mocha.env
Normal file
|
@ -0,0 +1,28 @@
|
|||
name="Mocha"
|
||||
|
||||
rosewater="#f5e0dc"
|
||||
flamingo="#f2cdcd"
|
||||
pink="#f5c2e7"
|
||||
mauve="#cba6f7"
|
||||
red="#f38ba8"
|
||||
maroon="#eba0ac"
|
||||
peach="#fab387"
|
||||
yellow="#f9e2af"
|
||||
green="#a6e3a1"
|
||||
teal="#94e2d5"
|
||||
sky="#89dceb"
|
||||
sapphire="#74c7ec"
|
||||
blue="#89b4fa"
|
||||
lavender="#b4befe"
|
||||
text="#cdd6f4"
|
||||
subtext1="#bac2de"
|
||||
subtext0="#a6adc8"
|
||||
overlay2="#9399b2"
|
||||
overlay1="#7f849c"
|
||||
overlay0="#6c7086"
|
||||
surface2="#585b70"
|
||||
surface1="#45475a"
|
||||
surface0="#313244"
|
||||
base="#1e1e2e"
|
||||
mantle="#181825"
|
||||
crust="#11111b"
|
400
template.json
Normal file
400
template.json
Normal file
|
@ -0,0 +1,400 @@
|
|||
{
|
||||
"_pleroma_theme_version": 2,
|
||||
"name": "Catppuccin $name",
|
||||
"theme": {
|
||||
"themeEngineVersion": 3,
|
||||
"shadows": {
|
||||
"panel": [
|
||||
{
|
||||
"x": 1,
|
||||
"y": 1,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "$black",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"color": "$black",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"popup": [
|
||||
{
|
||||
"x": 2,
|
||||
"y": 2,
|
||||
"blur": 3,
|
||||
"spread": 0,
|
||||
"color": "$black",
|
||||
"alpha": 0.5
|
||||
}
|
||||
],
|
||||
"avatar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 1,
|
||||
"blur": 8,
|
||||
"spread": 0,
|
||||
"color": "$black",
|
||||
"alpha": 0.7
|
||||
}
|
||||
],
|
||||
"avatarStatus": [],
|
||||
"panelHeader": [],
|
||||
"button": [
|
||||
{
|
||||
"color": "$mauve",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"color": "$mauve",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "$mantle",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"color": "$mauve",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"color": "$mauve",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"color": "$crust",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"color": "$crust",
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"alpha": 1
|
||||
}
|
||||
]
|
||||
},
|
||||
"colors": {
|
||||
"underlay": "$black",
|
||||
"bg": "$base",
|
||||
"fg": "$surface0",
|
||||
"cRed": "$red",
|
||||
"cGreen": "$green",
|
||||
"cOrange": "$peach",
|
||||
"cBlue": "$sapphire",
|
||||
"accent": "$mauve",
|
||||
"link": "$mauve",
|
||||
"text": "$text",
|
||||
"badgeNotification": "$red",
|
||||
"badgeNotificationText": "$black",
|
||||
"alertNeutral": "$text",
|
||||
"alertNeutralText": "$white",
|
||||
"alertPopupNeutral": "$text",
|
||||
"alertPopupNeutralText": "$black",
|
||||
"alertSuccess": "$green",
|
||||
"alertSuccessText": "$white",
|
||||
"alertPopupSuccess": "$green",
|
||||
"alertPopupSuccessText": "$black",
|
||||
"alertWarning": "$peach",
|
||||
"alertWarningText": "$white",
|
||||
"alertPopupWarning": "$peach",
|
||||
"alertPopupWarningText": "$black",
|
||||
"alertError": "$red",
|
||||
"alertErrorText": "$white",
|
||||
"alertPopupError": "$red",
|
||||
"alertPopupErrorText": "$black",
|
||||
"panel": "$surface0",
|
||||
"panelText": "$text",
|
||||
"alertNeutralPanelText": "$alertPanelText",
|
||||
"alertSuccessPanelText": "$alertPanelText",
|
||||
"alertWarningPanelText": "$white",
|
||||
"alertErrorPanelText": "$white",
|
||||
"fgText": "$text",
|
||||
"topBar": "$surface0",
|
||||
"topBarText": "$text",
|
||||
"input": "$surface0",
|
||||
"inputTopbarText": "$text",
|
||||
"inputPanelText": "$text",
|
||||
"inputText": "$text",
|
||||
"btn": "$surface0",
|
||||
"btnText": "$text",
|
||||
"btnTopBarText": "$text",
|
||||
"btnDisabled": "$btnDisabled",
|
||||
"btnDisabledTopBarText": "$btnDisabledText",
|
||||
"btnPanelText": "$text",
|
||||
"btnDisabledPanelText": "$btnDisabledText",
|
||||
"btnDisabledText": "$btnDisabledText",
|
||||
"btnToggled": "$btnToggled",
|
||||
"btnToggledTopBarText": "$white",
|
||||
"btnToggledPanelText": "$white",
|
||||
"btnToggledText": "$white",
|
||||
"btnPressed": "$surface0",
|
||||
"btnPressedTopBarText": "$text",
|
||||
"btnPressedTopBar": "$surface0",
|
||||
"btnPressedPanelText": "$text",
|
||||
"btnPressedPanel": "$surface0",
|
||||
"btnPressedText": "$text",
|
||||
"tabActiveText": "$text",
|
||||
"tabText": "$text",
|
||||
"tab": "$surface0",
|
||||
"fgLink": "$mauve",
|
||||
"topBarLink": "$mauve",
|
||||
"panelLink": "$mauve",
|
||||
"panelFaint": "$text",
|
||||
"icon": "$icon",
|
||||
"poll": "$poll",
|
||||
"pollText": "$white",
|
||||
"border": "$border",
|
||||
"postCyantext": "$sapphire",
|
||||
"postGreentext": "$green",
|
||||
"postLink": "$mauve",
|
||||
"lightText": "$white",
|
||||
"popover": "$base",
|
||||
"selectedMenuPopover": "$selected",
|
||||
"highlight": "$selected",
|
||||
"highlightText": "$text",
|
||||
"selectedMenu": "$selected",
|
||||
"selectedMenuText": "$text",
|
||||
"selectedMenuPopoverIcon": "$selectedIcon",
|
||||
"highlightLink": "$mauve",
|
||||
"selectedMenuLink": "$mauve",
|
||||
"selectedMenuPopoverLink": "$mauve",
|
||||
"selectedMenuPopoverText": "$text",
|
||||
"faintLink": "$mauve",
|
||||
"highlightFaintLink": "$mauve",
|
||||
"selectedMenuFaintLink": "$mauve",
|
||||
"selectedMenuPopoverFaintLink": "$mauve",
|
||||
"faint": "$text",
|
||||
"highlightFaintText": "$text",
|
||||
"selectedMenuFaintText": "$text",
|
||||
"selectedMenuPopoverFaintText": "$text",
|
||||
"highlightLightText": "$white",
|
||||
"selectedMenuLightText": "$white",
|
||||
"selectedMenuPopoverLightText": "$white",
|
||||
"selectedMenuIcon": "$selectedIcon",
|
||||
"selectedPost": "$selected",
|
||||
"selectedPostText": "$text",
|
||||
"selectedPostIcon": "$selectedIcon",
|
||||
"selectedPostLink": "$mauve",
|
||||
"selectedPostFaintLink": "$mauve",
|
||||
"highlightPostLink": "$mauve",
|
||||
"selectedPostPostLink": "$mauve",
|
||||
"selectedPostLightText": "$white",
|
||||
"selectedPostFaintText": "$text",
|
||||
"popoverText": "$text",
|
||||
"popoverIcon": "$icon",
|
||||
"popoverLink": "$mauve",
|
||||
"postFaintLink": "$mauve",
|
||||
"popoverPostFaintLink": "$mauve",
|
||||
"popoverFaintLink": "$mauve",
|
||||
"popoverFaintText": "$text",
|
||||
"popoverPostLink": "$mauve",
|
||||
"popoverLightText": "$white",
|
||||
"highlightIcon": "$selectedIcon",
|
||||
"highlightPostFaintLink": "$mauve",
|
||||
"profileTint": "$base",
|
||||
"profileBg": "$profileBg",
|
||||
"wallpaper": "$wallpaper"
|
||||
},
|
||||
"opacity": {
|
||||
"underlay": 0.15,
|
||||
"bg": 1,
|
||||
"alert": 0.5,
|
||||
"alertPopup": 0.95,
|
||||
"panel": 1,
|
||||
"input": 0.5,
|
||||
"btn": 1,
|
||||
"faint": 0.5,
|
||||
"border": 1,
|
||||
"popover": 1,
|
||||
"profileTint": 0.5
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
},
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
}
|
||||
},
|
||||
"source": {
|
||||
"themeEngineVersion": 3,
|
||||
"fonts": {
|
||||
"interface": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"input": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"post": {
|
||||
"family": "IBM Plex Sans,sans-serif"
|
||||
},
|
||||
"postCode": {
|
||||
"family": "IBM Plex Mono,monospace"
|
||||
}
|
||||
},
|
||||
"shadows": {
|
||||
"button": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "$mauve",
|
||||
"alpha": 0.6
|
||||
}
|
||||
],
|
||||
"buttonPressed": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "$mauve",
|
||||
"alpha": 1,
|
||||
"inset": false
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 0,
|
||||
"inset": false,
|
||||
"color": "$mauve",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "$crust",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"input": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"inset": false,
|
||||
"color": "$crust",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"buttonHover": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 1,
|
||||
"color": "$mauve",
|
||||
"alpha": 1
|
||||
},
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 0,
|
||||
"spread": 100,
|
||||
"inset": true,
|
||||
"color": "$mantle",
|
||||
"alpha": 1
|
||||
}
|
||||
],
|
||||
"topBar": [
|
||||
{
|
||||
"x": 0,
|
||||
"y": 0,
|
||||
"blur": 4,
|
||||
"spread": 0,
|
||||
"color": "$black",
|
||||
"alpha": 0.6
|
||||
}
|
||||
]
|
||||
},
|
||||
"opacity": {},
|
||||
"colors": {
|
||||
"bg": "$base",
|
||||
"fg": "$surface0",
|
||||
"text": "$text",
|
||||
"link": "$mauve",
|
||||
"cBlue": "$sapphire",
|
||||
"cRed": "$red",
|
||||
"cGreen": "$green",
|
||||
"cOrange": "$peach"
|
||||
},
|
||||
"radii": {
|
||||
"btn": 4,
|
||||
"input": 4,
|
||||
"checkbox": 4,
|
||||
"panel": 6,
|
||||
"avatar": 8,
|
||||
"avatarAlt": 6,
|
||||
"tooltip": 4,
|
||||
"attachment": 5
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue