learnsteam-quiz/tailwind.config.ts
2023-11-10 18:34:35 +09:00

147 lines
3.4 KiB
TypeScript

import type { Config } from "tailwindcss"
const config: Config = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx}",
"./src/components/**/*.{js,ts,jsx,tsx}",
"./src/app/**/*.{js,ts,jsx,tsx}",
],
theme: {
fontFamily: {
sans: [
"Helvetica Neue",
"Apple SD Gothic Neo",
"Malgun Gothic",
"맑은고딕",
"Dotum",
"돋움",
"Gulim",
"굴림",
"Helvetica",
"Arial",
"sans-serif",
],
mono: [
"ui-monospace",
"Consolas",
"SFMono-Regular",
"Liberation Mono",
"Menlo",
"Monaco",
"Courier",
"Apple SD Gothic Neo",
"Nanum Gothic",
"나눔고딕",
"Malgun Gothic",
"맑은고딕",
"monospace",
"NerdFontsSymbols Nerd Font",
],
},
extend: {
colors: {
"antd-form": "#d9d9d9",
brand: "#63489a",
turquoise: "#1abc9c",
greensea: "#16a085",
emerald: "#2ecc71",
nephritis: "#27ae60",
peterriver: "#3498db",
belizehole: "#2980b9",
amethyst: "#9b59b6",
wisteria: "#8e44ad",
wetasphalt: "#34495e",
midnightblue: "#2c3e50",
sunflower: "#f1c40f",
orange: "#f39c12",
carrot: "#e67e22",
pumpkin: "#d35400",
alizarin: "#e74c3c",
pomegranate: "#c0392b",
clouds: "#ecf0f1",
silver: "#bdc3c7",
concrete: "#95a5a6",
asbestos: "#7f8c8d",
},
},
},
plugins: [],
corePlugins: {
preflight: false,
},
}
export default config
// /** @type {import('tailwindcss').Config} */
// module.exports = {
// content: [
// "./src/pages/**/*.{js,ts,jsx,tsx}",
// "./src/components/**/*.{js,ts,jsx,tsx}",
// "./src/app/**/*.{js,ts,jsx,tsx}",
// ],
// theme: {
// fontFamily: {
// sans: [
// "Helvetica Neue",
// "Apple SD Gothic Neo",
// "Malgun Gothic",
// "맑은고딕",
// "Dotum",
// "돋움",
// "Gulim",
// "굴림",
// "Helvetica",
// "Arial",
// "sans-serif",
// ],
// mono: [
// "ui-monospace",
// "Consolas",
// "SFMono-Regular",
// "Liberation Mono",
// "Menlo",
// "Monaco",
// "Courier",
// "Apple SD Gothic Neo",
// "Nanum Gothic",
// "나눔고딕",
// "Malgun Gothic",
// "맑은고딕",
// "monospace",
// "NerdFontsSymbols Nerd Font",
// ],
// },
// extend: {
// colors: {
// "antd-form": "#d9d9d9",
// brand: "#63489a",
// turquoise: "#1abc9c",
// greensea: "#16a085",
// emerald: "#2ecc71",
// nephritis: "#27ae60",
// peterriver: "#3498db",
// belizehole: "#2980b9",
// amethyst: "#9b59b6",
// wisteria: "#8e44ad",
// wetasphalt: "#34495e",
// midnightblue: "#2c3e50",
// sunflower: "#f1c40f",
// orange: "#f39c12",
// carrot: "#e67e22",
// pumpkin: "#d35400",
// alizarin: "#e74c3c",
// pomegranate: "#c0392b",
// clouds: "#ecf0f1",
// silver: "#bdc3c7",
// concrete: "#95a5a6",
// asbestos: "#7f8c8d",
// },
// },
// },
// plugins: [],
// corePlugins: {
// preflight: false,
// },
// }