Files
release11-tools/Frontend/tailwind.config.js
widlam 50c44fc9a8 Created theme switcher (#270)
Reviewed-on: #270
Reviewed-by: Adam Bem <bema@noreply.example.com>
Co-authored-by: widlam <mikolaj.widla@gmail.com>
Co-committed-by: widlam <mikolaj.widla@gmail.com>
2023-12-04 12:11:26 +01:00

16 lines
281 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{vue,js,ts,jsx,tsx}",
],
theme: {
extend: {},
fontFamily: {
'sans': ['Raleway'],
'mono': ["Sono"],
}
},
darkMode: 'class',
plugins: [],
}