This repository has been archived on 2022-10-07. You can view files and clone it, but cannot push or open issues or pull requests.
skynet-webportal/packages/website/tailwind.config.js

65 lines
1.4 KiB
JavaScript

const defaultTheme = require("tailwindcss/defaultTheme");
const palette = {
100: "#f5f7f7",
200: "#d4dddb",
300: "#9e9e9e",
400: "#555555",
500: "#242424",
600: "#0d0d0d",
};
module.exports = {
purge: ["./src/**/*.{js,jsx,ts,tsx}"],
darkMode: false, // or 'media' or 'class'
theme: {
screens: {
sm: "640px",
tablet: "640px",
md: "768px",
lg: "1024px",
desktop: "1024px",
xl: "1280px",
hires: "1408px",
"2xl": "1536px",
},
backgroundColor: (theme) => ({ ...theme("colors"), palette }),
borderColor: (theme) => ({ ...theme("colors"), palette }),
textColor: (theme) => ({ ...theme("colors"), palette }),
placeholderColor: (theme) => ({ ...theme("colors"), palette }),
extend: {
fontFamily: {
sans: ["Sora", ...defaultTheme.fontFamily.sans],
content: ["Source\\ Sans\\ Pro", ...defaultTheme.fontFamily.sans],
},
fontSize: {
xxs: ["0.625rem", "0.75rem"],
},
colors: {
primary: {
DEFAULT: "#00c65e",
},
},
maxWidth: {
column: "320px",
tablet: "640px",
desktop: "1024px",
content: "992px",
layout: "1408px",
},
lineHeight: {
16: "4rem",
},
},
},
variants: {
extend: {
animation: ["hover"],
backgroundColor: ["disabled"],
textColor: ["disabled"],
margin: ["first"],
},
},
plugins: [],
};