movie-web/tailwind.config.js

47 lines
1.2 KiB
JavaScript
Raw Normal View History

2022-12-13 23:19:07 +01:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2022-12-13 23:19:07 +01:00
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
2022-02-10 23:45:17 +01:00
extend: {
2022-02-13 18:49:03 +01:00
/* colors */
2022-02-10 23:45:17 +01:00
colors: {
2022-02-13 18:49:03 +01:00
"bink-100": "#432449",
"bink-200": "#412B57",
"bink-300": "#533670",
"bink-400": "#714C97",
"bink-500": "#8D66B5",
"bink-600": "#A87FD1",
"bink-700": "#CD97D6",
2023-01-07 23:44:46 +01:00
"denim-100": "#120F1D",
"denim-200": "#191526",
"denim-300": "#211D30",
"denim-400": "#2B263D",
"denim-500": "#38334A",
"denim-600": "#504B64",
"denim-700": "#7A758F",
"ash-600": "#817998",
"ash-500": "#9C93B5",
"ash-400": "#3D394D",
"ash-300": "#2C293A",
"ash-200": "#2B2836",
"ash-100": "#1E1C26"
2022-02-10 23:45:17 +01:00
},
2022-02-13 18:49:03 +01:00
/* fonts */
2022-02-10 23:45:17 +01:00
fontFamily: {
2023-01-07 23:44:46 +01:00
"open-sans": "'Open Sans'"
2022-02-10 23:45:17 +01:00
},
2022-02-13 18:49:03 +01:00
/* animations */
keyframes: {
"loading-pin": {
"0%, 40%, 100%": { height: "0.5em", "background-color": "#282336" },
2023-01-07 23:44:46 +01:00
"20%": { height: "1em", "background-color": "white" }
}
2022-02-13 18:49:03 +01:00
},
2023-01-07 23:44:46 +01:00
animation: { "loading-pin": "loading-pin 1.8s ease-in-out infinite" }
}
},
2023-08-15 22:46:48 +02:00
plugins: [require("tailwind-scrollbar")]
};