theme: change main color
@@ -15,8 +15,8 @@
|
|||||||
href="/apple-touch-icon-180x180.png"
|
href="/apple-touch-icon-180x180.png"
|
||||||
sizes="180x180"
|
sizes="180x180"
|
||||||
/>
|
/>
|
||||||
<link rel="mask-icon" href="/masked-icon.png" color="#ffffff" />
|
<link rel="mask-icon" href="/masked-icon.png" color="#ffa4c0" />
|
||||||
<meta name="theme-color" content="#2C3A47" />
|
<meta name="theme-color" content="#2e5c1a" />
|
||||||
<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"
|
||||||
|
|||||||
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 4.8 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 50 KiB |
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.3 KiB |
@@ -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: #2c3a47;
|
--primary-color: #2e5c1a;
|
||||||
--font-family: "Libertinus Serif", serif;
|
--font-family: "Libertinus Serif", serif;
|
||||||
--font-size: 13pt;
|
--font-size: 13pt;
|
||||||
--font-color: #4a4a4a;
|
--font-color: #4a4a4a;
|
||||||
|
|||||||
@@ -3,8 +3,6 @@ import path from "path"
|
|||||||
import { defineConfig, type UserConfigExport } from "vite"
|
import { defineConfig, type UserConfigExport } from "vite"
|
||||||
import { VitePWA } from "vite-plugin-pwa"
|
import { VitePWA } from "vite-plugin-pwa"
|
||||||
|
|
||||||
const mainColor = "#2C3A47"
|
|
||||||
|
|
||||||
export default defineConfig(({ command }) => {
|
export default defineConfig(({ command }) => {
|
||||||
const config: UserConfigExport = {
|
const config: UserConfigExport = {
|
||||||
plugins: [
|
plugins: [
|
||||||
@@ -28,8 +26,8 @@ export default defineConfig(({ command }) => {
|
|||||||
name: "Remanso",
|
name: "Remanso",
|
||||||
short_name: "Remanso",
|
short_name: "Remanso",
|
||||||
description: "Note taking & sharing app",
|
description: "Note taking & sharing app",
|
||||||
background_color: mainColor,
|
background_color: "#ffa4c0",
|
||||||
theme_color: mainColor,
|
theme_color: "#2e5c1a",
|
||||||
icons: [
|
icons: [
|
||||||
{
|
{
|
||||||
src: "pwa-64x64.png",
|
src: "pwa-64x64.png",
|
||||||
|
|||||||