2
0
mirror of https://github.com/inventree/inventree-website.git synced 2025-08-07 13:02:16 +00:00
Files
.github
_data
_drafts
_includes
_layouts
_news
_plugins
_posts
_publishers
_repo
about
alternatives
assets
extend
use
.gitignore
404.md
CNAME
Gemfile
Gemfile.lock
LICENSE
README.md
_config.yml
blog.html
categories.html
contribute.md
demo.md
deploy.md
digitalocean.md
functions.md
index.md
news.html
newsletter.md
package-lock.json
package.json
plugins.html
postcss.config.js
publishers.html
support.md
tags.html
tailwind.config.js
inventree-website/tailwind.config.js
Matthias Mair f149e61244 Accessibility improvements ()
* add alt tags to lear more

* make logo section better screenreadable

* enhance contrast on footer

* add alt text to back button

* switch colors -> maybe better contrast on links?

* make link text better readable

* switch color back

* and another try

* Revert "and another try"

This reverts commit cb58c92c51.
2022-11-10 22:29:41 +01:00

24 lines
516 B
JavaScript

const defaultTheme = require('tailwindcss/defaultTheme')
module.exports = {
purge: {
enabled: true,
content: ['./**/*.html'],
},
darkMode: 'media',
theme: {
extend: {
colors: {
'primary': '#90A8D8',
'secondary': '#DDBC91',
},
screens: {
'xs': '470px',
...defaultTheme.screens
}
},
},
plugins: [
require('@tailwindcss/typography'),
],
}