Untitled

 avatar
unknown
javascript
a year ago
664 B
4
Indexable
/** @type {import('tailwindcss').Config} */
module.exports = {
  content: ["./src/**/*.{html,js}"],
  theme: {
    extend: {
      screens: {
        'xl': '1440px'
      }
    },
    fontFamily: {
      'PrimaryFont': ['"Figtree"', 'serif'] // Ensure fonts with spaces have " " surrounding it.
    },
    backgroundImage: theme => ({
      'banner-bg': "url('/images/slider-bg.png')",
    }),
    colors: {
      'headingColor': '#202020',
      'paragraphcolor': '#808080',
      'bg-primary': '#0B94D9',
      'bg-secondary': '#F0F0F0',
      'text-white': '#fff',
      'text-color-primary': '#0B94D9',
    },
  },
  plugins: [],
}

Editor is loading...
Leave a Comment