More #31748f
This commit is contained in:
parent
642215f6c0
commit
e90d5b23db
|
@ -78,7 +78,7 @@ const nodeinfo2 = async () => {
|
||||||
enableEmail: meta.enableEmail,
|
enableEmail: meta.enableEmail,
|
||||||
enableServiceWorker: meta.enableServiceWorker,
|
enableServiceWorker: meta.enableServiceWorker,
|
||||||
proxyAccountName: proxyAccount ? proxyAccount.username : null,
|
proxyAccountName: proxyAccount ? proxyAccount.username : null,
|
||||||
themeColor: meta.themeColor || '#86b300',
|
themeColor: meta.themeColor || '#31748f',
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,7 +35,7 @@ button {
|
||||||
border:none;
|
border:none;
|
||||||
cursor:pointer;
|
cursor:pointer;
|
||||||
margin-bottom:12px;
|
margin-bottom:12px;
|
||||||
background:linear-gradient(90deg,#86b300,#4ab300);
|
background:linear-gradient(90deg,#9ccfd8,#31748f);
|
||||||
line-height:50px;
|
line-height:50px;
|
||||||
color:#191724;
|
color:#191724;
|
||||||
font-weight:700;
|
font-weight:700;
|
||||||
|
|
|
@ -3,8 +3,8 @@
|
||||||
"name": "Calckey",
|
"name": "Calckey",
|
||||||
"start_url": "/",
|
"start_url": "/",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"background_color": "#313a42",
|
"background_color": "#6e6a86",
|
||||||
"theme_color": "#86b300",
|
"theme_color": "#31748f",
|
||||||
"icons": [
|
"icons": [
|
||||||
{
|
{
|
||||||
"src": "/static-assets/icons/192.png",
|
"src": "/static-assets/icons/192.png",
|
||||||
|
|
|
@ -51,7 +51,7 @@ export async function sendEmail(to: string, subject: string, html: string, text:
|
||||||
|
|
||||||
a {
|
a {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: #86b300;
|
color: #31748f;
|
||||||
}
|
}
|
||||||
a:hover {
|
a:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
@ -60,12 +60,12 @@ export async function sendEmail(to: string, subject: string, html: string, text:
|
||||||
main {
|
main {
|
||||||
max-width: 500px;
|
max-width: 500px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
background: #fff;
|
background: #e0def4;
|
||||||
color: #555;
|
color: #6e6a86;
|
||||||
}
|
}
|
||||||
main > header {
|
main > header {
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
background: #86b300;
|
background: #31748f;
|
||||||
}
|
}
|
||||||
main > header > img {
|
main > header > img {
|
||||||
max-width: 128px;
|
max-width: 128px;
|
||||||
|
|
|
@ -188,16 +188,16 @@ export default defineComponent({
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
tension: 0,
|
tension: 0,
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
borderColor: '#86b300',
|
borderColor: '#31748f',
|
||||||
backgroundColor: alpha('#86b300', 0.1),
|
backgroundColor: alpha('#31748f', 0.1),
|
||||||
data: []
|
data: []
|
||||||
}, {
|
}, {
|
||||||
label: 'MEM (active)',
|
label: 'MEM (active)',
|
||||||
pointRadius: 0,
|
pointRadius: 0,
|
||||||
tension: 0,
|
tension: 0,
|
||||||
borderWidth: 2,
|
borderWidth: 2,
|
||||||
borderColor: '#935dbf',
|
borderColor: '#c4a7e7',
|
||||||
backgroundColor: alpha('#935dbf', 0.02),
|
backgroundColor: alpha('#c4a7e7', 0.02),
|
||||||
data: []
|
data: []
|
||||||
}, {
|
}, {
|
||||||
label: 'MEM (used)',
|
label: 'MEM (used)',
|
||||||
|
|
Loading…
Reference in New Issue