Update Tailwind theme

Thing I changed:
- prefer a white background
- simplify the footer text

Other things that I'd like to change:
- use JetBrains Mono for the mono-font
This commit is contained in:
William Carroll 2020-03-09 23:27:20 +00:00
parent 220c6d138b
commit 1e75f709ee

View file

@ -47,7 +47,7 @@
<link rel="stylesheet" href="{{ "css/theme.css" | absURL }}">
<link rel="stylesheet" href="{{ "css/chroma.dracula.css" | absURL }}">
</head>
<body class="font-serif bg-gray-200 border-t-4 border-blue-500 antialiased">
<body class="font-serif border-t-4 border-blue-500 antialiased">
<div class="w-full p-6 md:w-2/3 md:px-0 md:mx-auto xl:w-2/5">
<header class="mb-6">
<!-- All the pages must have a heading block, defaults to a link for the home page and a title. -->
@ -76,7 +76,7 @@
<footer>
<p>
&copy; {{ now.Format "2006"}}. Proudly made with 💕 with <a href="https://gohugo.io/" target="_blank">Hugo</a> and <a href="https://tailwindcss.com/" target="_blank">TailwindCSS</a>.
&copy; {{ now.Format "2006"}}. Thank you for reading.
</p>
</footer>
</div>