diff --git a/_brand.yml b/_brand.yml new file mode 100644 index 0000000..f1721bb --- /dev/null +++ b/_brand.yml @@ -0,0 +1,53 @@ +color: + palette: + #primary brand colors + red: "#AB0520" + blue: "#0C234B" + #neutral colors + white: "#FFF" + black: "#000" + warm-gray: "#F4EDE5" + cool-gray: "#E2E9EB" + #complimentary colors + midnight: "#001C48" + azurite: "#1E5288" + oasis: "#378DBD" + chili: "#8B0015" + #highlight/accent colors + bloom: "#EF4056" + sky: "#81D3EB" + leaf: "#70B865" + river: "#007D84" + mesa: "#A95C42" + foreground: black + background: white + primary: chili + secondary: "#49595e" + success: leaf + info: sky + warning: mesa + danger: bloom + light: "#DEE2E6" + dark: "#343A40" + +typography: + base: + family: Proxima Nova + headings: + family: Proxima Nova + weight: 700 + color: blue + monospace-inline: + family: Fira Code + color: azurite + background-color: cool-gray + link: + decoration: underline + +logo: + medium: logo.png + +defaults: + bootstrap: + defaults: + navbar-fg: white diff --git a/_quarto.yml b/_quarto.yml index a0a79e9..99852af 100644 --- a/_quarto.yml +++ b/_quarto.yml @@ -101,10 +101,12 @@ format: link-external-icon: true link-external-newwindow: true code-copy: true - theme: - light: flatly - dark: darkly - + theme: + light: + - brand + dark: + - brand + # - dark.scss editor: markdown: wrap: sentence diff --git a/cover.png b/cover.png deleted file mode 100644 index e1f5bc6..0000000 Binary files a/cover.png and /dev/null differ diff --git a/dark.scss b/dark.scss new file mode 100644 index 0000000..de0d10f --- /dev/null +++ b/dark.scss @@ -0,0 +1,3 @@ +/*-- scss:defaults --*/ +$body-bg: black; +$body-color: white; diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..ef6f0d5 Binary files /dev/null and b/logo.png differ