43 lines
1.3 KiB
Text
43 lines
1.3 KiB
Text
---
|
|
// Import the global.css file here so that it is included on
|
|
// all pages through the use of the <BaseHead /> component.
|
|
import "../styles/global.css";
|
|
import "../styles/links/normalize.css";
|
|
import "../styles/terminal-css/main.css";
|
|
//import "../styles/terminal-css/base16-lunar-witch.css";
|
|
const { title, description } = Astro.props;
|
|
---
|
|
|
|
<!-- Global Metadata -->
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="generator" content={Astro.generator} />
|
|
<!-- Primary Meta Tags -->
|
|
<title>{title}</title>
|
|
<meta name="title" content={title} />
|
|
<meta name="description" content={description} />
|
|
<script>
|
|
import hljs from "highlight.js";
|
|
hljs.highlightAll();
|
|
</script>
|
|
<style>
|
|
:root {
|
|
/* base00 :Background, black */
|
|
/* base01 :Light Background*/
|
|
/* base02 :Selection Background*/
|
|
/* base03 :comments, bright black*/
|
|
/* base04 :status bars, dark foreground*/
|
|
/* base05 :Foreground, white */
|
|
/* base06 :Light Foreground */
|
|
/* base07 :Light Background?? */
|
|
/* base08 :red*/
|
|
/* base09 :orange*/
|
|
/* base0A :yellow*/
|
|
/* base0B :green*/
|
|
/* base0C :aqua/cyan*/
|
|
/* base0D :blue*/
|
|
/* base0E :purple*/
|
|
/* base0F :*/
|
|
}
|
|
</style>
|