diff --git a/_config.yml b/_config.yml --- a/_config.yml +++ b/_config.yml @@ -1,4 +1,4 @@ -title: 🎩 Doctored +title: Doctored description: "A blog theme prioritizing uniqueness, complexity, and minimalism." github: "https://github.com/joshpinto6/doctored" encoding: utf-8 @@ -29,4 +29,5 @@ keep_files: - assets/css/tailwind.css - - assets/css/tailwind.css.map + - assetss/css/tailwind.css.map + - assets/js diff --git a/about.md b/about.md --- a/about.md +++ b/about.md @@ -8,18 +8,22 @@ ## Features -- Dark mode and unique teal colortheme +- Dark mode and stylish teal colortheme + - Dark/light mode toggle - Tailwind styling -- FontAwesome icons (external links) +- FontAwesome icons - Homepage and About Page - Navbar and Footer - Git site statistics ## Todo -- Dark/light mode toggle - Sidenotes - Blog - Projects Page - Now Page -- Contact Form \ No newline at end of file +- Contact Form +- 404 page +- robots.txt +- rss feed +- sitemap.xml \ No newline at end of file diff --git a/favicon.ico b/favicon.ico new file mode 100644 --- /dev/null +++ b/favicon.ico diff --git a/index.md b/index.md --- a/index.md +++ b/index.md @@ -6,6 +6,8 @@ # /home +a couple of _the_ most common questions you might have. + ## What? - A blog theme which prioritizes uniqueness, technical complexity, and minimalism. diff --git a/tailwind.config.js b/tailwind.config.js --- a/tailwind.config.js +++ b/tailwind.config.js @@ -2,6 +2,7 @@ /** @type {import('tailwindcss').Config} */ module.exports = { + darkMode: 'selector', content: [ './_includes/**/*.html', './_layouts/**/*.html', @@ -10,15 +11,21 @@ ], theme: { extend: { - typography: { + typography: { DEFAULT: { - css: { + css: (theme) => ({ a: { - color: colors.teal[200], - 'text-decoration': 'underline', - 'text-decoration-style': 'dotted' + color: theme('colors.teal.200'), + 'text-decoration': 'underline', + 'text-decoration-style': 'dotted', + '&:hover': { + color: theme('colors.teal.400'), + }, + '@screen dark': { + color: theme('colors.teal.400'), + }, } - }, + }), }, }, }, @@ -26,7 +33,7 @@ display: ['LibertinusMonoMono'], sans: ['sans-serif'], }, - + }, variants: {}, plugins: [require('@tailwindcss/typography')], diff --git a/_includes/foot.html b/_includes/foot.html --- a/_includes/foot.html +++ b/_includes/foot.html @@ -1,10 +1,10 @@
Site built on {{ site.git.last_commit.commit_date }} from
{{ site.git.last_commit.short_sha }}
+ href="{{ site.github }}/commit/{{ site.git.last_commit.long_sha }}">{{ site.git.last_commit.short_sha }}