This commit is contained in:
parent
e5fe6615a2
commit
3d77fa1751
4 changed files with 33 additions and 5 deletions
|
@ -1,12 +1,12 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en" >
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
<body data-sveltekit-preload-data="hover">
|
<body class="bg-foundation text-primary_text" data-sveltekit-preload-data="hover">
|
||||||
<div style="display: contents">%sveltekit.body%</div>
|
<div style="display: contents">%sveltekit.body%</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -3,4 +3,6 @@
|
||||||
let { children } = $props();
|
let { children } = $props();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{@render children()}
|
<div class="">
|
||||||
|
{@render children()}
|
||||||
|
</div>
|
||||||
|
|
|
@ -1,4 +1,13 @@
|
||||||
<h1>Portfolio Under Construction...</h1>
|
<div>
|
||||||
|
<span class="text-2xl">Portfolio under construction...</span>
|
||||||
|
<br />
|
||||||
|
This is some text using the primary text color. <!------>
|
||||||
|
<br />
|
||||||
|
And some <span class="text-muted_text"> muted </span> text <!------>
|
||||||
|
<br />
|
||||||
|
And some <span class="text-accent_text"> accented </span> text
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Brief Bio
|
<!-- Brief Bio
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,24 @@ export default {
|
||||||
content: ['./src/**/*.{html,js,svelte,ts}'],
|
content: ['./src/**/*.{html,js,svelte,ts}'],
|
||||||
|
|
||||||
theme: {
|
theme: {
|
||||||
extend: {}
|
extend: {},
|
||||||
|
colors:{
|
||||||
|
foundation: '#282828',
|
||||||
|
primary: '#282828',
|
||||||
|
secondary: '#000000',
|
||||||
|
accent: '#ff0000',
|
||||||
|
|
||||||
|
neutral: '#000000',
|
||||||
|
|
||||||
|
primary_text: '#fbf1c7',
|
||||||
|
muted_text: '#a89984',
|
||||||
|
accent_text: '#fb4934',
|
||||||
|
|
||||||
|
red: '#000000',
|
||||||
|
green: '#000000',
|
||||||
|
blue: '#000000',
|
||||||
|
yellow: '#000000'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
plugins: [typography, containerQueries]
|
plugins: [typography, containerQueries]
|
||||||
|
|
Loading…
Add table
Reference in a new issue