-
Notifications
You must be signed in to change notification settings - Fork 25
/
tailwind.config.js
46 lines (40 loc) · 1.33 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
/* eslint-disable @typescript-eslint/no-var-requires */
// const { fontFamily } = require("tailwindcss/defaultTheme");
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
extend: {
// NOTE: 본 템플릿은 대부분이 모노톤으로 이루어져 있습니다. primary 컬러만 수정하여 사용하시는 것을 권장드립니다.
colors: {
GRAY_LIGHT: "#f1f3f5",
GRAY: "#adb5bd",
GRAY_HEAVY: "#868e96",
GRAY_EXTRAHEAVY: "#495057",
BLACK: "#212529",
/**
* @description selection(드래그 블록)에 사용되는 컬러입니다.
*/
PRIMARY_LIGHT: "#c3fae8",
/**
* @description 자기소개의 이름 부분, code tag의 darkmode에 사용되는 컬러입니다.
*/
PRIMARY: "#12b886",
/**
* @description code tag, link hover icon에 사용되는 컬러입니다.
*/
PRIMARY_HEAVY: "#087f5b",
/**
* @description 페이지 최상단 gradient의 시작 컬러입니다.
*/
GRADIENT_FROM: "#51cf66",
/**
* @description 페이지 최상단 gradient의 종료 컬러입니다.
*/
GRADIENT_TO: "#0c8599",
},
},
},
plugins: [],
};