mirror of
https://github.com/movie-web/movie-web.git
synced 2024-11-10 23:15:06 +01:00
105 lines
2.6 KiB
JavaScript
105 lines
2.6 KiB
JavaScript
const themer = require("tailwindcss-themer");
|
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
/* colors */
|
|
colors: {
|
|
"bink-100": "#432449",
|
|
"bink-200": "#412B57",
|
|
"bink-300": "#533670",
|
|
"bink-400": "#714C97",
|
|
"bink-500": "#8D66B5",
|
|
"bink-600": "#A87FD1",
|
|
"bink-700": "#CD97D6",
|
|
"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"
|
|
},
|
|
|
|
/* fonts */
|
|
fontFamily: {
|
|
"open-sans": "'Open Sans'"
|
|
},
|
|
|
|
/* animations */
|
|
keyframes: {
|
|
"loading-pin": {
|
|
"0%, 40%, 100%": { height: "0.5em", "background-color": "#282336" },
|
|
"20%": { height: "1em", "background-color": "white" }
|
|
}
|
|
},
|
|
animation: { "loading-pin": "loading-pin 1.8s ease-in-out infinite" }
|
|
}
|
|
},
|
|
plugins: [
|
|
require("tailwind-scrollbar"),
|
|
themer({
|
|
defaultTheme: {
|
|
extend: {
|
|
colors: {
|
|
// meta data for the theme itself
|
|
global: {
|
|
accentA: "#505DBD",
|
|
accentB: "#3440A1"
|
|
},
|
|
|
|
// light bar
|
|
lightBar: {
|
|
light: "#2A2A71"
|
|
},
|
|
|
|
// only used for body colors/textures
|
|
background: {
|
|
main: "#0A0A10",
|
|
accentA: "#6E3B80",
|
|
accentB: "#1F1F50"
|
|
},
|
|
|
|
// typography
|
|
type: {
|
|
emphasis: "#FFFFFF",
|
|
text: "#73739D",
|
|
dimmed: "#926CAD",
|
|
divider: "#262632"
|
|
},
|
|
|
|
// search bar
|
|
search: {
|
|
background: "#1E1E33",
|
|
focused: "#24243C",
|
|
placeholder: "#4A4A71",
|
|
icon: "#545476",
|
|
text: "#FFFFFF"
|
|
},
|
|
|
|
// media cards
|
|
mediaCard: {
|
|
hoverBackground: "#161622",
|
|
hoverAccent: "#4D79A8",
|
|
hoverShadow: "#0A0A10",
|
|
shadow: "#161622",
|
|
barColor: "#4B4B63",
|
|
barFillColor: "#BA7FD6",
|
|
badge: "#151522",
|
|
badgeText: "#5F5F7A"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
]
|
|
};
|