-
Notifications
You must be signed in to change notification settings - Fork 2
/
tailwind.config.js
48 lines (47 loc) · 1.18 KB
/
tailwind.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/** @type {import('tailwindcss').Config} */
const colors = require("tailwindcss/colors");
module.exports = {
content: [
"./pages/**/*.{js,ts,jsx,tsx}",
"./app/**/*.{js,ts,jsx,tsx}",
"./components/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: ["Inter Variable", "LINE Seed JP", "sans-serif"],
},
extend: {
colors: {
brand: {
DEFAULT: "var(--color-brand)",
allstars: {
DEFAULT: "#f34f6d",
light: colors.rose["200"],
dark: colors.rose["800"],
},
cinderellagirls: {
DEFAULT: "#2681c8",
light: colors.blue["200"],
dark: colors.blue["800"],
},
millionlive: {
DEFAULT: "#ffc30b",
light: colors.yellow["200"],
dark: colors.yellow["800"],
},
sidem: {
DEFAULT: "#11be93",
light: colors.emerald["200"],
dark: colors.emerald["800"],
},
shinycolors: {
DEFAULT: "#8dbbff",
light: colors.sky["200"],
dark: colors.sky["800"],
},
},
},
},
},
plugins: [],
};