-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
121 lines (118 loc) · 3.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
module.exports = {
content: [
'./app/views/**/*.html.erb',
'./app/helpers/**/*.rb',
'./app/bbcode/*.rb',
'./bbcode-rails/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/javascript/**/*.js'
],
theme: {
fontFamily: {
'sans': ["Courier", "Courier New", "Ricty", "Inconsolata", "monospace"]
},
extend: {
backgroundImage: {
global: 'var(--background-image)'
},
animation: {
marquee: 'marquee 25s linear infinite',
marquee2: 'marquee2 25s linear infinite',
typing: 'typing 2s steps(6), blink 1s infinite',
},
keyframes: {
marquee: {
'0%': { transform: 'translateX(0%)' },
'100%': { transform: 'translateX(-100%)' },
},
marquee2: {
'0%': { transform: 'translateX(100%)' },
'100%': { transform: 'translateX(0%)' },
},
typing: {
from: {
width: '0'
},
to: {
width: '6ch'
},
},
blink: {
from: {
'border-right-color': 'transparent'
},
to: {
'border-right-color': 'black'
},
},
},
}
},
plugins: [
require("@tailwindcss/typography"),
require("daisyui"),
require("tailwindcss-inner-border"),
],
daisyui: {
themes: [
"emerald",
"light",
"dark",
"cupcake",
"bumblebee",
"corporate",
"synthwave",
"retro",
"cyberpunk",
"valentine",
"halloween",
"garden",
"forest",
"lofi",
"pastel",
"fantasy",
"wireframe",
"black",
"luxury",
"dracula",
"cmyk",
"autumn",
"business",
"acid",
"lemonade",
"night",
"coffee",
"winter",
{
felt: {
"primary": "#d9f99d",
"secondary": "#4ade80",
"accent": "#a3e635",
"neutral": "#27e100",
"neutral-text": "#27e100",
"neutral-content": "#27e100",
"base-100": "#000000",
"base-200": "#156704",
"base-300": "#4d7c0f",
"base-content": "#27e100",
"info": "#ecfccb",
"success": "#84cc16",
"warning": "#bef264",
"error": "#86efac",
//"fontFamily": "'Alternian CBB', 'alternianFontOne', TrollType, mono",
"--rounded-box": "0rem", // border radius rounded-box utility class, used in card and other large boxes
"--rounded-btn": "0rem", // border radius rounded-btn utility class, used in buttons and similar element
"--rounded-badge": "0rem", // border radius rounded-badge utility class, used in badges and similar
"--animation-btn": "0.25s", // duration of animation when you click on button
"--animation-input": "0.2s", // duration of animation for inputs like checkbox, toggle, radio, etc
"--btn-text-case": "uppercase", // set default text transform for buttons
"--btn-focus-scale": "0.95", // scale transform of button when you focus on it
"--border-btn": "1px", // border width of buttons
"--tab-border": "1px", // border width of tabs
"--tab-radius": "0rem", // border radius of tabs
"--background-image": "var(--felt-background-image)"
},
},
],
},
}