design: same rose color

This commit is contained in:
Julien Calixte
2026-03-14 13:13:22 +01:00
parent cf51b8b93f
commit cfe5426421
3 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@
sizes="180x180" sizes="180x180"
/> />
<link rel="mask-icon" href="/masked-icon.png" color="#ffa4c0" /> <link rel="mask-icon" href="/masked-icon.png" color="#ffa4c0" />
<meta name="theme-color" content="#2e5c1a" /> <meta name="theme-color" content="#ffa4c0" />
<link <link
rel="stylesheet" rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/katex@0.16.4/dist/katex.min.css" href="https://cdn.jsdelivr.net/npm/katex@0.16.4/dist/katex.min.css"

View File

@@ -4,7 +4,7 @@
@import url("https://fonts.googleapis.com/css2?display=swap&family=Courier+Prime&family=Libertinus+Serif"); @import url("https://fonts.googleapis.com/css2?display=swap&family=Courier+Prime&family=Libertinus+Serif");
:root { :root {
--primary-color: #2e5c1a; --primary-color: #ffa4c0;
--font-family: "Libertinus Serif", serif; --font-family: "Libertinus Serif", serif;
--font-size: 13pt; --font-size: 13pt;
--font-color: #4a4a4a; --font-color: #4a4a4a;

View File

@@ -27,7 +27,7 @@ export default defineConfig(({ command }) => {
short_name: "Remanso", short_name: "Remanso",
description: "Note taking & sharing app", description: "Note taking & sharing app",
background_color: "#ffa4c0", background_color: "#ffa4c0",
theme_color: "#2e5c1a", theme_color: "#ffa4c0",
icons: [ icons: [
{ {
src: "pwa-64x64.png", src: "pwa-64x64.png",
@@ -78,7 +78,7 @@ export default defineConfig(({ command }) => {
global: {}, global: {},
} }
config.server = { config.server = {
host: '127.0.0.1', host: "127.0.0.1",
} }
} }