12345678910111213141516171819202122232425 |
- /** @type {import('tailwindcss').Config} */
- export default {
- content: [
- "./resources/**/*.blade.php",
- "./resources/**/*.js",
- ],
- theme: {
- extend: {
- colors: {
- babyblue: '#e9f6fb',
- babybluedark: '#d2ebef',
- navbarcolor: '#5a5b5e',
- }
- },
- screens: {
- 'sm': '640px',
- 'md': '768px',
- 'lg': '1024px',
- 'xl': '1280px',
- '2xl': '1536px',
- },
- },
- plugins: [],
- }
|