Select Git revision
tailwind.config.js
Forked from
Institut π / pi-cms
62 commits behind the upstream repository.
-
Tomáš Valenta authoredTomáš Valenta authored
tailwind.config.js 1.05 KiB
const defaultTheme = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./static_src/*.js",
"./static_src/**/*.js",
"*/templates/**/*.html",
"*/templates/**/*.svg",
],
theme: {
extend: {
fontFamily: {
"alt": ["Bebas Neue", defaultTheme.fontFamily.sans],
"condensed": ["Roboto Condensed", defaultTheme.fontFamily.sans],
},
colors: {
"transparent": "transparent",
"black": "#000000",
"white": "#ffffff",
"grey": {
"25": "#fafafa",
"50": "#f7f7f7",
"100": "#f3f3f3",
"125": "#f0f0f0",
"150": "#ececec",
"175": "#d0d0d0",
"200": "#adadad",
"300": "#4c4c4c",
"350": "#4f4f4f",
"400": "#343434",
"500": "#303132",
"600": "#262626",
"700": "#202020",
"800": "#1f1f1f",
},
"pii-cyan": "#2782af"
}
}
},
plugins: [
require("@tailwindcss/typography"),
],
}