forked from mirrors/akkoma-fe
thing
This commit is contained in:
parent
e21dd584a9
commit
804e25084d
8 changed files with 612 additions and 2 deletions
|
@ -6,6 +6,7 @@
|
||||||
<title>Pleroma</title>
|
<title>Pleroma</title>
|
||||||
<link rel="stylesheet" href="/static/font/css/fontello.css">
|
<link rel="stylesheet" href="/static/font/css/fontello.css">
|
||||||
<link rel="stylesheet" href="/static/font/css/animation.css">
|
<link rel="stylesheet" href="/static/font/css/animation.css">
|
||||||
|
<link rel="stylesheet" href="/static/font/tiresias.css">
|
||||||
<link rel="stylesheet" href="/static/font/css/lato.css">
|
<link rel="stylesheet" href="/static/font/css/lato.css">
|
||||||
<!--server-generated-meta-->
|
<!--server-generated-meta-->
|
||||||
<link rel="icon" type="image/png" href="/favicon.png">
|
<link rel="icon" type="image/png" href="/favicon.png">
|
||||||
|
|
45
static/.tos
Normal file
45
static/.tos
Normal file
|
@ -0,0 +1,45 @@
|
||||||
|
<h4>Terms of Service</h4>
|
||||||
|
|
||||||
|
<p>It's mainly "be nice"</p>
|
||||||
|
|
||||||
|
<ol>
|
||||||
|
<li>
|
||||||
|
<h3>Don't be a big meanie</h4>
|
||||||
|
<p>Arguments are cool and all but don't make them into flamewars. Try to act in good faith - we want to be at least on good terms with people. Please act with understanding towards others on this instance. Most people here are probably struggling with a lot, be mindful of that.</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>Mark your lewds!</h3>
|
||||||
|
<p>Reminder that lewd is bad and nobody wants to be forced to see that. Just mark it sensitive, and post unlisted. That is to say, anything suggestive/ecchi upwards should be marked. If you wouldn't look at it with your parents/boss in the room, mark it. It goes without saying that if you're <em>going</em> to post lewd stuff, keep it sensible. Obviously nothing underaged or otherwise questionable. Or you could just not post lewd stuff. Either/or.</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>This is a <b>Kink Shame Zone</b></h3>
|
||||||
|
<p>Being a lewdie will be met with many anime girl reaction images shaming you for your lewdness. Go think about icky things on someone else's webzone™</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>Keep it legal!</h3>
|
||||||
|
<p>Server is hosted in france, keep content legal for there (+ wherever you're browsing from)</p>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>No ads/spambots</h3>
|
||||||
|
<p>I didn't think I'd have to specify this, but please do not set up bots solely for trying to advertise.</h3>
|
||||||
|
</li>
|
||||||
|
<li>
|
||||||
|
<h3>Non-TOS recommendations</h3>
|
||||||
|
<p>This is stuff that'd I'd <em>like</em> you to do, but I won't outright ban you if you don't follow them</p>
|
||||||
|
<ul>
|
||||||
|
<li>If someone is sadposting, don't antagonise them - they probably just want to vent</li>
|
||||||
|
<li>Put walls of text behind a subject (CW) - helps the timeline not get flooded with text</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<h3>Other</h3>
|
||||||
|
<p>If you're here and you happen to play minecraft, feel free to message me with your username and come play with us sometime!</p>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ol>
|
||||||
|
|
||||||
|
<p>So I guess yeah, that's about it. Try to be nice, eh? We're probably all sad here.</p>
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<img src="/static/logo.png" style="display: block; margin: auto; max-width: 100%; height: 50px; object-fit: contain;" />
|
BIN
static/font/fonts/Tiresias_Infofont.ttf
Normal file
BIN
static/font/fonts/Tiresias_Infofont.ttf
Normal file
Binary file not shown.
BIN
static/font/fonts/Tiresias_PCfont.ttf
Normal file
BIN
static/font/fonts/Tiresias_PCfont.ttf
Normal file
Binary file not shown.
15
static/font/tiresias.css
Normal file
15
static/font/tiresias.css
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Tiresias PCFont';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: local('Tiresias PCFont'), local('Tiresias PCFont'),
|
||||||
|
url('./fonts/Tiresias_PCfont.ttf') format('truetype')
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: 'Tiresias Infofont';
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: 400;
|
||||||
|
src: local('Tiresias Infofont'), local('Tiresias Infofont'),
|
||||||
|
url('./fonts/Tiresias_Infofont.ttf') format('truetype')
|
||||||
|
}
|
|
@ -14,5 +14,6 @@
|
||||||
"breezy-light": "/static/themes/breezy-light.json",
|
"breezy-light": "/static/themes/breezy-light.json",
|
||||||
"ihatebeingalive": "/static/themes/ihatebeingalive.json",
|
"ihatebeingalive": "/static/themes/ihatebeingalive.json",
|
||||||
"mammal": "/static/themes/mammal.json",
|
"mammal": "/static/themes/mammal.json",
|
||||||
"paper": "/static/themes/paper.json"
|
"paper": "/static/themes/paper.json",
|
||||||
|
"thekanata": "/static/themes/thekanata.json"
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"theme": {
|
"theme": {
|
||||||
"fonts": {
|
"fonts": {
|
||||||
"interface": {
|
"interface": {
|
||||||
"family": "Lato"
|
"family": "Tiresias PCFont"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"shadows": {
|
"shadows": {
|
||||||
|
|
548
static/themes/thekanata.json
Normal file
548
static/themes/thekanata.json
Normal file
|
@ -0,0 +1,548 @@
|
||||||
|
{
|
||||||
|
"_pleroma_theme_version": 2,
|
||||||
|
"name": "thekanata",
|
||||||
|
"theme": {
|
||||||
|
"themeEngineVersion": 3,
|
||||||
|
"shadows": {
|
||||||
|
"panel": [
|
||||||
|
{
|
||||||
|
"x": "0",
|
||||||
|
"y": "0",
|
||||||
|
"blur": "3",
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": "0",
|
||||||
|
"y": "4",
|
||||||
|
"blur": "6",
|
||||||
|
"spread": "3",
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.3"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"topBar": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": "1",
|
||||||
|
"blur": 4,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": "2",
|
||||||
|
"blur": "7",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.3"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"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": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": "1",
|
||||||
|
"blur": "3",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": "0",
|
||||||
|
"y": "1",
|
||||||
|
"blur": "0",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": true,
|
||||||
|
"color": "#ffffff",
|
||||||
|
"alpha": "0.2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"button": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": 2,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"buttonHover": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": "1",
|
||||||
|
"spread": "2",
|
||||||
|
"color": "#b9b9ba",
|
||||||
|
"alpha": "0.4",
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"buttonPressed": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": 4,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": "2",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"input": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": 2,
|
||||||
|
"inset": true,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"colors": {
|
||||||
|
"underlay": "#090e14",
|
||||||
|
"bg": "#f3f2f7",
|
||||||
|
"fg": "#0f31b9",
|
||||||
|
"cRed": "#d31014",
|
||||||
|
"cOrange": "#f7e8a7",
|
||||||
|
"cGreen": "#5dc94a",
|
||||||
|
"cBlue": "#90d9e0",
|
||||||
|
"accent": "#0f31b9",
|
||||||
|
"link": "#0f31b9",
|
||||||
|
"text": "#382d33",
|
||||||
|
"badgeNotification": "#e15932",
|
||||||
|
"badgeNotificationText": "#ffffff",
|
||||||
|
"panel": "#0f31b9",
|
||||||
|
"panelText": "#d2c7cd",
|
||||||
|
"alertNeutral": "#382d33",
|
||||||
|
"alertNeutralPanelText": "#d2c7cd",
|
||||||
|
"alertNeutralText": "#000000",
|
||||||
|
"alertWarning": "#f7e8a7",
|
||||||
|
"alertWarningPanelText": "#000000",
|
||||||
|
"alertWarningText": "#382d33",
|
||||||
|
"alertError": "#d31014",
|
||||||
|
"alertErrorPanelText": "#d2c7cd",
|
||||||
|
"alertErrorText": "#745e6a",
|
||||||
|
"fgText": "#ffffff",
|
||||||
|
"topBar": "#ffffff",
|
||||||
|
"topBarText": "#382d33",
|
||||||
|
"input": "#ffffff",
|
||||||
|
"inputTopbarText": "#382d33",
|
||||||
|
"inputPanelText": "#392e33",
|
||||||
|
"inputText": "#382d33",
|
||||||
|
"btn": "#081d56",
|
||||||
|
"btnText": "#ffffff",
|
||||||
|
"btnTopBarText": "#ffffff",
|
||||||
|
"btnDisabled": "#b9bdcf",
|
||||||
|
"btnDisabledTopBarText": "#cacedb",
|
||||||
|
"btnPanelText": "#ffffff",
|
||||||
|
"btnDisabledPanelText": "#cacedb",
|
||||||
|
"btnDisabledText": "#cacedb",
|
||||||
|
"btnToggled": "#061347",
|
||||||
|
"btnToggledTopBarText": "#ffffff",
|
||||||
|
"btnToggledPanelText": "#ffffff",
|
||||||
|
"btnToggledText": "#ffffff",
|
||||||
|
"btnPressed": "#081d56",
|
||||||
|
"btnPressedTopBarText": "#ffffff",
|
||||||
|
"btnPressedTopBar": "#081d56",
|
||||||
|
"btnPressedPanelText": "#ffffff",
|
||||||
|
"btnPressedPanel": "#081d56",
|
||||||
|
"btnPressedText": "#ffffff",
|
||||||
|
"tabActiveText": "#382d33",
|
||||||
|
"tabText": "#ffffff",
|
||||||
|
"tab": "#081d56",
|
||||||
|
"fgLink": "#4668f0",
|
||||||
|
"topBarLink": "#382d33",
|
||||||
|
"panelLink": "#1030ba",
|
||||||
|
"panelFaint": "#ffffff",
|
||||||
|
"icon": "#969095",
|
||||||
|
"poll": "#98a5df",
|
||||||
|
"pollText": "#382d33",
|
||||||
|
"border": "#0e2dab",
|
||||||
|
"postGreentext": "#49b537",
|
||||||
|
"postLink": "#0f31b9",
|
||||||
|
"lightText": "#000000",
|
||||||
|
"popover": "#f3f2f7",
|
||||||
|
"selectedMenuPopover": "#e5e3ee",
|
||||||
|
"highlight": "#e5e3ee",
|
||||||
|
"highlightText": "#382d33",
|
||||||
|
"selectedMenu": "#e5e3ee",
|
||||||
|
"selectedMenuText": "#382d33",
|
||||||
|
"selectedMenuPopoverIcon": "#8f8891",
|
||||||
|
"highlightLink": "#0f31b9",
|
||||||
|
"selectedMenuLink": "#0f31b9",
|
||||||
|
"selectedMenuPopoverLink": "#0f31b9",
|
||||||
|
"selectedMenuPopoverText": "#382d33",
|
||||||
|
"faintLink": "#0f31b9",
|
||||||
|
"highlightFaintLink": "#0f31b9",
|
||||||
|
"selectedMenuFaintLink": "#0f31b9",
|
||||||
|
"selectedMenuPopoverFaintLink": "#0f31b9",
|
||||||
|
"faint": "#382d33",
|
||||||
|
"highlightFaintText": "#382d33",
|
||||||
|
"selectedMenuFaintText": "#382d33",
|
||||||
|
"selectedMenuPopoverFaintText": "#382d33",
|
||||||
|
"highlightLightText": "#000000",
|
||||||
|
"selectedMenuLightText": "#000000",
|
||||||
|
"selectedMenuPopoverLightText": "#000000",
|
||||||
|
"selectedMenuIcon": "#8f8891",
|
||||||
|
"selectedPost": "#e5e3ee",
|
||||||
|
"selectedPostText": "#382d33",
|
||||||
|
"selectedPostIcon": "#8f8891",
|
||||||
|
"selectedPostLink": "#0f31b9",
|
||||||
|
"selectedPostFaintLink": "#0f31b9",
|
||||||
|
"highlightPostLink": "#0f31b9",
|
||||||
|
"selectedPostPostLink": "#0f31b9",
|
||||||
|
"selectedPostLightText": "#000000",
|
||||||
|
"selectedPostFaintText": "#382d33",
|
||||||
|
"popoverText": "#382d33",
|
||||||
|
"popoverIcon": "#969095",
|
||||||
|
"popoverLink": "#0f31b9",
|
||||||
|
"postFaintLink": "#0f31b9",
|
||||||
|
"popoverPostFaintLink": "#0f31b9",
|
||||||
|
"popoverFaintLink": "#0f31b9",
|
||||||
|
"popoverFaintText": "#382d33",
|
||||||
|
"popoverPostLink": "#0f31b9",
|
||||||
|
"popoverLightText": "#000000",
|
||||||
|
"highlightIcon": "#8f8891",
|
||||||
|
"highlightPostFaintLink": "#0f31b9",
|
||||||
|
"profileTint": "#f3f2f7",
|
||||||
|
"profileBg": "#808791"
|
||||||
|
},
|
||||||
|
"opacity": {
|
||||||
|
"underlay": 0,
|
||||||
|
"bg": 1,
|
||||||
|
"panel": 1,
|
||||||
|
"alert": 0.5,
|
||||||
|
"input": 0.5,
|
||||||
|
"btn": 1,
|
||||||
|
"faint": 0.5,
|
||||||
|
"border": 1,
|
||||||
|
"popover": 1,
|
||||||
|
"profileTint": 0.5
|
||||||
|
},
|
||||||
|
"radii": {
|
||||||
|
"btn": "3",
|
||||||
|
"input": "3",
|
||||||
|
"checkbox": 2,
|
||||||
|
"panel": "15",
|
||||||
|
"avatar": "3",
|
||||||
|
"avatarAlt": 50,
|
||||||
|
"tooltip": 2,
|
||||||
|
"attachment": "3"
|
||||||
|
},
|
||||||
|
"fonts": {
|
||||||
|
"interface": {
|
||||||
|
"family": "sans-serif"
|
||||||
|
},
|
||||||
|
"input": {
|
||||||
|
"family": "inherit"
|
||||||
|
},
|
||||||
|
"post": {
|
||||||
|
"family": "inherit"
|
||||||
|
},
|
||||||
|
"postCode": {
|
||||||
|
"family": "monospace"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"source": {
|
||||||
|
"themeEngineVersion": 3,
|
||||||
|
"fonts": {},
|
||||||
|
"shadows": {
|
||||||
|
"buttonHover": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": "1",
|
||||||
|
"spread": "2",
|
||||||
|
"color": "#b9b9ba",
|
||||||
|
"alpha": "0.4",
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"buttonPressed": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": 4,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": "2",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"panelHeader": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": "1",
|
||||||
|
"blur": "3",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": "0",
|
||||||
|
"y": "1",
|
||||||
|
"blur": "0",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": true,
|
||||||
|
"color": "#ffffff",
|
||||||
|
"alpha": "0.2"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"panel": [
|
||||||
|
{
|
||||||
|
"x": "0",
|
||||||
|
"y": "0",
|
||||||
|
"blur": "3",
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.5"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": "0",
|
||||||
|
"y": "4",
|
||||||
|
"blur": "6",
|
||||||
|
"spread": "3",
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.3"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"button": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 0,
|
||||||
|
"blur": 2,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 1
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": 1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#FFFFFF",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": -1,
|
||||||
|
"blur": 0,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": 0.2,
|
||||||
|
"inset": true
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"topBar": [
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": "1",
|
||||||
|
"blur": 4,
|
||||||
|
"spread": 0,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.4"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"x": 0,
|
||||||
|
"y": "2",
|
||||||
|
"blur": "7",
|
||||||
|
"spread": 0,
|
||||||
|
"inset": false,
|
||||||
|
"color": "#000000",
|
||||||
|
"alpha": "0.3"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"opacity": {
|
||||||
|
"underlay": "0"
|
||||||
|
},
|
||||||
|
"colors": {
|
||||||
|
"bg": "#F3F2F7",
|
||||||
|
"fg": "#0F31B9",
|
||||||
|
"text": "#382D33",
|
||||||
|
"underlay": "#090e14",
|
||||||
|
"accent": "#0F31B9",
|
||||||
|
"cBlue": "#90D9E0",
|
||||||
|
"cRed": "#d31014",
|
||||||
|
"cGreen": "#5dc94a",
|
||||||
|
"cOrange": "#F7E8A7",
|
||||||
|
"border": "--fg,3",
|
||||||
|
"fgText": "#FFFFFF",
|
||||||
|
"topBar": "#ffffff",
|
||||||
|
"topBarText": "#382D33",
|
||||||
|
"topBarLink": "#382D33",
|
||||||
|
"btn": "#081D56",
|
||||||
|
"btnToggled": "--accent,-24.2",
|
||||||
|
"input": "#FFFFFF",
|
||||||
|
"alertErrorText": "--text,21.2",
|
||||||
|
"badgeNotification": "#e15932",
|
||||||
|
"badgeNotificationText": "#ffffff"
|
||||||
|
},
|
||||||
|
"radii": {
|
||||||
|
"btn": "3",
|
||||||
|
"input": "3",
|
||||||
|
"panel": "15",
|
||||||
|
"avatar": "3",
|
||||||
|
"attachment": "3"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue