gitbutler/tailwind.config.cjs

23 lines
432 B
JavaScript
Raw Normal View History

2023-01-31 17:55:57 +03:00
const config = {
2023-02-16 14:15:45 +03:00
content: ["./src/**/*.{html,js,svelte,ts}"],
darkMode: "class",
2023-01-31 17:55:57 +03:00
2023-02-16 14:15:45 +03:00
theme: {
fontFamily: {
sans: ["Inter", "SF Pro", "-apple-system", "system-ui"],
},
fontSize: {
xs: "10px",
sm: "12px",
base: "13px",
lg: "15px",
xl: "22px",
},
2023-02-16 14:15:45 +03:00
extend: {},
},
2023-01-31 17:55:57 +03:00
2023-02-16 14:15:45 +03:00
plugins: [],
2023-01-31 17:55:57 +03:00
};
module.exports = config;