Skip to content
Snippets Groups Projects
Select Git revision
  • 52c7e97be28cbf9f94e57da6ce16af87c997386a
  • main default protected
  • userHandling
  • snuggle
4 results

tailwind.config.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    tailwind.config.js 2.11 KiB
    /** @type {import('tailwindcss').Config} */
    export default {
      content: [
        "./index.html",
        "./src/**/*.{js,ts,jsx,tsx}",
      ],
      theme: {
        extend: {
          colors: {
            UhhBlue: '#0271bb',
            UhhLightBlue: 'rgba(128, 184, 219, 0.5)',
            UhhRed: '#e2001a',
            UhhLightRed: 'rgba(240, 130, 136, 0.5)',
            UhhGrey: '#3b515b',
            UhhLightGrey: '#f3f3f3',
            UhhWhite: '#fff',
            UhhWLightWhite: '#FFFAF0',
            border: "hsl(var(--border))",
            input: "hsl(var(--input))",
            ring: "hsl(var(--ring))",
            background: "hsl(var(--background))",
            foreground: "hsl(var(--foreground))",
            primary: {
              DEFAULT: "hsl(var(--primary))",
              foreground: "hsl(var(--primary-foreground))",
            },
            secondary: {
              DEFAULT: "hsl(var(--secondary))",
              foreground: "hsl(var(--secondary-foreground))",
            },
            destructive: {
              DEFAULT: "hsl(var(--destructive))",
              foreground: "hsl(var(--destructive-foreground))",
            },
            muted: {
              DEFAULT: "hsl(var(--muted))",
              foreground: "hsl(var(--muted-foreground))",
            },
            accent: {
              DEFAULT: "hsl(var(--accent))",
              foreground: "hsl(var(--accent-foreground))",
            },
            popover: {
              DEFAULT: "hsl(var(--popover))",
              foreground: "hsl(var(--popover-foreground))",
            },
            card: {
              DEFAULT: "hsl(var(--card))",
              foreground: "hsl(var(--card-foreground))",
            },
          },
          spacing: {
            '1/7': '14.285%'
          },
          fontFamily: {
            'UhhSLC': ['TheSansUHHSemiLightCaps'],
            'UhhB': ['TheSansUHHBold'],
            'UhhBC': ['TheSansUHHBoldCaps'],
            'UhhR': ['TheSansUHHRegular'],
            'Uhh': ['TheSansUHH'],
            'UhhRC': ['TheSansUHHRegularCaps'],
            'UhhI': ['TheSansUHHItalic'],
          },
          borderColor: {
            DEFAULT: '#3b515b'
          },
          minWidth: {
            'xs': '20rem',
            'sm': '24rem',
            'md': '28rem',