Stylesheet themes
This commit is contained in:
parent
f5bc1db8f1
commit
0f4764052f
|
@ -5,6 +5,7 @@
|
|||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
%sveltekit.head%
|
||||
<link rel="stylesheet" href="/stylesheets/global.css" />
|
||||
</head>
|
||||
<body data-sveltekit-preload-data="hover">
|
||||
<div style="display: contents">%sveltekit.body%</div>
|
||||
|
|
|
@ -1,7 +1,17 @@
|
|||
<!-- Theme load -->
|
||||
<svelte:head>
|
||||
<script>
|
||||
import { theme } from '../global-stores.js';
|
||||
</script>
|
||||
|
||||
<link rel="stylesheet" href="/stylesheets/main-theme.css" />
|
||||
</svelte:head>
|
||||
|
||||
<div class="main-title">
|
||||
<h1>The Deprived Devs</h1>
|
||||
</div>
|
||||
|
||||
|
||||
<style>
|
||||
@font-face {
|
||||
font-family: 'CozetteVector';
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
body {
|
||||
color: var(--text);
|
||||
background-color: var(--background);
|
||||
}
|
|
@ -0,0 +1,7 @@
|
|||
:root {
|
||||
--text: #ece4ee;
|
||||
--background: #120c13;
|
||||
--primary: #ff8552;
|
||||
--secondary: #6c6b44;
|
||||
--accent: #7da16a;
|
||||
}
|
Loading…
Reference in New Issue