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