prosemirror-markdown/tailwind.config.cjs

31 lines
651 B
JavaScript
Raw Normal View History

2022-06-02 16:39:39 +02:00
module.exports = {
2022-06-10 12:28:44 +02:00
content: ['./src/**/*.{html,js,svelte,ts}'],
theme: {
colors: {
blue: '#1fb6ff',
purple: '#7e5bef',
pink: '#ff49db',
orange: '#ff7849',
green: '#13ce66',
yellow: '#ffc82c',
'gray-dark': '#273444',
gray: '#8492a6',
'gray-light': '#d3dce6'
},
fontFamily: {
sans: ['Graphik', 'sans-serif'],
serif: ['Merriweather', 'serif']
},
extend: {
spacing: {
'8xl': '96rem',
'9xl': '128rem'
2022-06-02 16:39:39 +02:00
},
2022-06-10 12:28:44 +02:00
borderRadius: {
'4xl': '2rem'
2022-06-02 16:39:39 +02:00
}
2022-06-10 12:28:44 +02:00
}
},
plugins: [require('@tailwindcss/typography'), require('daisyui')]
};