Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,6 @@
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Generated theme
src/theme.css
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<meta name="description" content="An accordion based startpage." />
<meta name="author" content="PrettyCoffee">
<link rel="apple-touch-icon" href="/logo192.png" />

<!--
manifest.json provides metadata used when your web app is installed on a
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
Expand Down
26 changes: 26 additions & 0 deletions input_template.j2
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/* Matugen generated variables */
:root {
/* Main UI Surface */
--m3-bg: {{colors.surface.dark.hex}};
--m3-on-bg: {{colors.on_surface.dark.hex}};
--m3-surface-variant: {{colors.surface_variant.dark.hex}};
--m3-on-surface-variant: {{colors.on_surface_variant.dark.hex}};

/* Primary Accents */
--m3-primary: {{colors.primary.dark.hex}};
--m3-on-primary: {{colors.on_primary.dark.hex}};
--m3-primary-container: {{colors.primary_container.dark.hex}};

/* Secondary/Tertiary */
--m3-secondary: {{colors.secondary.dark.hex}};
--m3-tertiary: {{colors.tertiary.dark.hex}};
--m3-on-tertiary: {{colors.on_tertiary.dark.hex}};

/* Utility & Feedback */
--m3-outline: {{colors.outline.dark.hex}};
--m3-error: {{colors.error.dark.hex}};

/* Interaction states with filters */
--m3-hover: {{colors.primary.dark.hex | lighten(10)}};
--m3-on-hover: {{colors.on_primary.dark.hex}};
}
Loading