Skip to content
Snippets Groups Projects
Select Git revision
  • d2666fc1eb5a87e0c0ae693bdb09675cef8b31c0
  • main default protected
  • OZG-7985-anfrage-von-landesebene
  • release
  • OZG-8252-gitlab-pipeline
  • OZG-7774-E2E
  • OZG-5120-PoC-Native-Image
  • 1.10.0
  • 1.9.0
  • 1.8.0
  • 1.7.0
  • 1.6.0
  • 1.5.0
  • 1.4.0
  • 1.3.0
  • 1.2.1
  • 1.2.0
  • 1.1.1
  • 1.1.0
  • 1.0.0
  • 0.8.0
  • 0.7.0
  • 0.6.0
  • 0.5.0
  • 0.4.0
  • 0.3.0
  • 0.2.0
27 results

SecurityConfiguration.java

Blame
  • tailwind.config.js 1.97 KiB
    /* eslint-env node */
    /* eslint @typescript-eslint/no-var-requires: "off" */
    
    const { createGlobPatternsForDependencies } = require('@nx/angular/tailwind');
    const { join } = require('path');
    
    /** @type {import('tailwindcss').Config} */
    module.exports = {
      content: [
        join(__dirname, 'src/**/!(*.stories|*.spec).{ts,html}'),
        ...createGlobPatternsForDependencies(__dirname),
      ],
      darkMode: 'class',
      theme: {
        extend: {
          colors: {
            ozgblue: {
              50: 'hsl(200, 100%, 96%)',
              100: 'hsl(200, 100%, 92%)',
              200: 'hsl(199, 100%, 85%)',
              300: 'hsl(197, 100%, 76%)',
              400: 'hsl(199, 100%, 64%)',
              500: 'hsl(204, 100%, 56%)',
              600: 'hsl(209, 100%, 51%)',
              700: 'hsl(213, 100%, 48%)',
              800: 'hsl(215, 92%, 40%)',
              900: 'hsl(213, 85%, 33%)',
              DEFAULT: 'hsl(215, 75%, 22%)',
            },
            background: {
              50: 'hsl(var(--color-background-50) / <alpha-value>)',
              100: 'hsl(var(--color-background-100) / <alpha-value>)',
              200: 'hsl(var(--color-background-200) / <alpha-value>)',
              DEFAULT: 'hsl(var(--color-background-100) / <alpha-value>)',
            },
            bewilligt: {
              100: 'hsl(var(--color-bewilligt-100) / <alpha-value>)',
              700: 'hsl(var(--color-bewilligt-700) / <alpha-value>)',
              DEFAULT: 'hsl(var(--color-bewilligt-700) / <alpha-value>)',
            },
            abgelehnt: {
              100: 'hsl(var(--color-abgelehnt-100) / <alpha-value>)',
              700: 'hsl(var(--color-abgelehnt-500) / <alpha-value>)',
              DEFAULT: 'hsl(var(--color-abgelehnt-500) / <alpha-value>)',
            },
            mainbg: 'hsl(var(--color-mainbg) / <alpha-value>)',
            primary: {
              600: 'hsl(var(--color-primary-600) / <alpha-value>)',
              DEFAULT: 'hsl(var(--color-primary-600) / <alpha-value>)',
            },
            text: 'hsl(var(--text) / <alpha-value>)',
            warning: 'hsl(var(--warning))',
          },
        },
      },
      plugins: [],
    };