diff options
| author | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-18 20:52:20 +0100 |
|---|---|---|
| committer | Joe Carstairs <65492573+Sycamost@users.noreply.github.com> | 2023-08-18 20:52:20 +0100 |
| commit | 2eb8c495a8b03a155ad9130ff54c8f78a92a5e34 (patch) | |
| tree | 2f1619287430c2ade1ae95fffd8919247f5a40d1 /public/css | |
| parent | 14eff2bd8aa73cac517aaa360eb07981d106fed2 (diff) | |
Adds base theme
Diffstat (limited to 'public/css')
| -rw-r--r-- | public/css/base/index.css | 3 | ||||
| -rw-r--r-- | public/css/base/theme.css | 9 |
2 files changed, 11 insertions, 1 deletions
diff --git a/public/css/base/index.css b/public/css/base/index.css index 5fcf00b..169a60f 100644 --- a/public/css/base/index.css +++ b/public/css/base/index.css @@ -1 +1,2 @@ -@import './typography.css';
\ No newline at end of file +@import './typography.css'; +@import './theme.css';
\ No newline at end of file diff --git a/public/css/base/theme.css b/public/css/base/theme.css new file mode 100644 index 0000000..5ee8b4b --- /dev/null +++ b/public/css/base/theme.css @@ -0,0 +1,9 @@ +:root { + color: var(--text-color); + background-color: var(--background-color); +} + +:is(main, article) { + color: var(--text-color); + background-color: var(--background-color); +}
\ No newline at end of file |
