AlkantarClanX12

Your IP : 216.73.217.24


Current Path : /www/capitalgmcbuickregina_830/public/wp-content/themes/lbx-egypt/
Upload File :
Current File : /www/capitalgmcbuickregina_830/public/wp-content/themes/lbx-egypt/tailwind.config.js

const colors = require("tailwindcss/colors");

module.exports = {
  content: [
    "./resources/views/**/*.php",
    "./resources/scripts/components/**/*.js",
  ],
  safelist: [
    "opacity-100",
    {
      pattern: /grid-cols-\d+/,
      variants: ['sm', 'md', 'lg', 'xl', '2xl'],
    }
  ],
  theme: {
    colors: {
      black: colors.black,
      white: colors.white,
      blue: colors.blue,
      gray: colors.gray,
      green: colors.emerald,
      orange: colors.orange,

      primary: {
        DEFAULT: "#143771",
      },
      secondary: {
        DEFAULT: "#47A8E5",
      },
      light: {
        DEFAULT: "#081534",
      },
      dark: {
        DEFAULT: "#000000",
      },
      customGray: {
        DEFAULT: "#F2F2F2",
      },
      autofi: {
        DEFAULT: "#3FB94D",
      },
      darkGrey: {
        DEFAULT: "#666666",
      },
      lightGrey: {
        DEFAULT: "#F0F0F0",
      },
      bkdGrey: {
        DEFAULT: "#E9ECEC",
      },
      transparent: "transparent",
      current: "currentColor",
      lineupblue : "#2A6BAC", 
    },
    fontFamily: {
      primary: ["Primary"],
      "primary-bold": ["Primary Bold"],
      secondary: ["secondary"],
      "secondary-bold": ["Secondary Bold"],
    },
    screens: {
      sm: "640px",
      md: "768px",
      lg: "1024px",
      xl: "1280px",
      xxl: "1356px",
      "2xl": "1536px",
      "3xl": "1600px",
      "4xl": "1920px",
    },
    extend: {
      width: {
        "1/7": "14.2857143%",
        "2/7": "28.5714286%",
        "3/7": "42.8571429%",
        "4/7": "57.1428571%",
        "6/7": "85.7142857%",
      },
      gridTemplateColumns: {
        "auto-fit": "repeat(auto-fit, minmax(0, 1fr))",
        "auto-fill": "repeat(auto-fill, minmax(0, 1fr))",
      },
    },
    container: {
      center: true,
      padding: "1rem",
    },
  },
  plugins: [require("@tailwindcss/typography")],
};