|
123456789101112131415161718192021222324252627282930313233343536373839 |
- module.exports = {
- mode: 'jit',
- content: [
- '../templates/*.html'
- ],
- theme: {
- extend: {
- fontSize: {
-
- sm: ['0.95rem', { lineHeight: '1.35' }],
- base: ['1.1rem', { lineHeight: '1.22' }],
- lg: ['1.24rem', { lineHeight: '1.1' }],
- xl: ['1.5rem', { lineHeight: '1.1' }],
- '2xl': ['1.85rem', { lineHeight: '1' }],
- '3xl': ['2rem', { lineHeight: '1' }],
- '4xl': ['3rem', { lineHeight: '1' }],
- '5xl': ['4.2rem', { lineHeight: '0.9' }],
-
-
-
-
- },
- colors: {
- 'expurple': {
- DEFAULT: 'rgba(103, 48, 255,0.5)'
- }
-
-
-
-
-
- },
- }
- },
- variants: {
- extend: {},
- },
- plugins: [],
- }
|