generated from Mwapsam/rails-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
49 lines (48 loc) · 1.35 KB
/
tailwind.config.js
File metadata and controls
49 lines (48 loc) · 1.35 KB
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
const colors = require('tailwindcss/colors')
const defaultTheme = require('tailwindcss/defaultTheme')
const withMT = require("@material-tailwind/react/utils/withMT");
module.exports = withMT({
content: [
'./app/helpers/**/*.rb',
'./app/assets/stylesheets/**/*.css',
'./app/views/**/*.{html,html.erb,erb}',
'./app/javascript/components/**/*.{vue,js,ts,jsx,tsx}',
'./app/javascript/**/*.{vue,js,ts,jsx,tsx}',
'./app/**/*.{vue,js,ts,jsx,tsx}',
// './node_modules/@material-tailwind/react/components/**/*.{js,ts,jsx,tsx}',
// './node_modules/@material-tailwind/react/theme/components/**/*.{js,ts,jsx,tsx}'
],
mode: "jit",
theme: {
extend: {
colors: {
primary: "#00040f",
secondary: "#00f6ff",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
},
container: {
center: true,
padding: '2rem',
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
gridTemplateRows: {
'[auto,auto,1fr]': 'auto auto 1fr',
},
},
extend: {
},
},
corePlugins: {
aspectRatio: false,
},
plugins: [
require('@tailwindcss/typography'),
require('@tailwindcss/forms'),
require('@tailwindcss/aspect-ratio'),
require('@tailwindcss/line-clamp'),
require('@tailwindcss/aspect-ratio'),
],
})