Skip to content
Snippets Groups Projects
Select Git revision
  • 5407174b7f93696fc955a5040a6d0880e3d0749a
  • master default protected
  • add-frequency-to-form
  • dev protected
  • ckan-2.11.0
  • add-package-custom-fields
  • fix-adding-datasets-for-users-and-editors
  • add-auth-subroute
  • 71-migrate-custom-fields-to-ckanext-scheming
  • add-author-maintainer-information
  • fix-inline-flex-btns
  • fix-known-spatial-uri-validation
  • py3
  • 47-aktuelle-resource-einer-collection-wird-nicht-mehr-gefunden
  • 10-eingabe-der-dct-accrualperiodicity-in-weboberflache
  • v1.3
  • 2.5.3
  • 2.5.2
  • 2.5.1
  • 2.5.0
  • 2.4.7
  • 2.4.6
  • 2.4.5
  • 2.4.4
  • 2.4.3
  • 2.4.2
  • 2.4.1
  • 2.4.0
  • 2.3.1
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.4.3
  • 1.4.2
  • 1.4.1
36 results

precondition.py

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: [],
    };