This commit is contained in:
NoriDev 2023-10-02 21:39:35 +09:00
parent e8d249f62b
commit 23e957756c
7 changed files with 10 additions and 10 deletions

View file

@ -78,7 +78,7 @@ export class EmailService {
a {
text-decoration: none;
color: #86b300;
color: rgb(255, 188, 220);
}
a:hover {
text-decoration: underline;
@ -92,7 +92,7 @@ export class EmailService {
}
main > header {
padding: 32px;
background: #86b300;
background: rgb(255, 188, 220);
}
main > header > img {
max-width: 128px;

View file

@ -119,7 +119,7 @@ export class NodeinfoServerService {
enableEmail: meta.enableEmail,
enableServiceWorker: meta.enableServiceWorker,
proxyAccountName: proxyAccount ? proxyAccount.username : null,
themeColor: meta.themeColor ?? '#86b300',
themeColor: meta.themeColor ?? 'rgb(255, 188, 220)',
},
};
if (version >= 21) {

View file

@ -23,8 +23,8 @@ html
meta(charset='utf-8')
meta(name='application-name' content='CherryPick')
meta(name='referrer' content='origin')
meta(name='theme-color' content= themeColor || '#86b300')
meta(name='theme-color-orig' content= themeColor || '#86b300')
meta(name='theme-color' content= themeColor || 'rgb(255, 188, 220)')
meta(name='theme-color-orig' content= themeColor || 'rgb(255, 188, 220)')
meta(property='og:site_name' content= instanceName || 'CherryPick')
meta(name='viewport' content='width=device-width, initial-scale=1')
link(rel='icon' href= icon || '/favicon.ico')

View file

@ -92,7 +92,7 @@ async function renderChart() {
await nextTick();
const color = defaultStore.state.darkMode ? '#b4e900' : '#86b300';
const color = defaultStore.state.darkMode ? 'rgb(255, 207, 230)' : 'rgb(255, 188, 220)';
// 3
const max = values.slice().sort((a, b) => b - a).slice(0, 3).reduce((a, b) => a + b, 0) / 3;

View file

@ -70,7 +70,7 @@ async function renderChart() {
await nextTick();
const color = defaultStore.state.darkMode ? '#b4e900' : '#86b300';
const color = defaultStore.state.darkMode ? 'rgb(255, 207, 230)' : 'rgb(255, 188, 220)';
const getYYYYMMDD = (date: Date) => {
const y = date.getFullYear().toString().padStart(2, '0');

View file

@ -127,8 +127,8 @@ onMounted(async () => {
&.notes {
> .icon {
background: #86b30026;
color: #86b300;
background: #ffbcdc26;
color: #ffbcdc;
}
}

View file

@ -82,7 +82,7 @@ async function renderChart() {
await nextTick();
const color = defaultStore.state.darkMode ? '#b4e900' : '#86b300';
const color = defaultStore.state.darkMode ? 'rgb(255, 207, 230)' : 'rgb(255, 188, 220)';
// 3
const max = values.slice().sort((a, b) => b - a).slice(0, 3).reduce((a, b) => a + b, 0) / 3;