aboutsummaryrefslogblamecommitdiff
path: root/tailwind.config.js
blob: 7c3023302c767fd720a49111c617b8e901a73b3a (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                  

                            






                                   






                                 






                                            
module.exports = {
  content: [
    "./templates/**/*.html",
    "./static/js/site.js",
  ],
  theme: {
    extend: {
      colors: {
        'garage-orange': "#FF9329",
        'garage-gray': "#4E4E4E",
      },
      backgroundSize: {
        'size-200': '200% 200%',
      },
      backgroundPosition: {
          'pos-0': '0% 0%',
          'pos-100': '100% 100%',
      },
    },
  },
  variants: {
    width: ["responsive", "hover", "focus"],
  },
  plugins: [],
}