Skip to content
Snippets Groups Projects
Select Git revision
  • 96f5680e6de7bf84a490d1550383983310947885
  • master default protected
  • dev
  • ckan-2.9
  • refactor-css
  • improve-accessibility
  • fix-get_action-calls
  • summary-collection
  • debug-collections
  • debug-eakte
  • experimental-linked-resources-as-uploads
  • button-text-detail
  • Detailinfo
  • hash
  • URL_Upload
  • URL_Upload_working_BB
  • url_exp
  • ODPSH-550
  • href-for-preview
  • ODPSH-HASH-ALGO
  • Algo
  • v1.61
  • v1.6
  • v1.51
  • v1.5
  • v1.4
  • v1.3
  • v1.2
  • v1.1
  • v1.0
  • v0.1
  • sprint-18
  • sprint11_2
  • sprint10
  • sprint8
  • sprint7
  • sprint6
37 results

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