https://gitlab.opengeosys.org/ogs/ogs.git
Revision 93090cfac69bdbe827c3760592ce12de488113b9 authored by Lars Bilke on 03 August 2021, 13:02:03 UTC, committed by Lars Bilke on 03 August 2021, 13:02:03 UTC
[cmake] Some improvements based on CMake 3.21

See merge request ogs/ogs!3707
2 parent s 11e72c1 + af223f2
Raw File
Tip revision: 93090cfac69bdbe827c3760592ce12de488113b9 authored by Lars Bilke on 03 August 2021, 13:02:03 UTC
Merge branch 'cmake-3.21' into 'master'
Tip revision: 93090cf
tailwind.config.js
const defaultTheme = require('tailwindcss/defaultTheme')

module.exports = {
  purge: [
    './layouts/**/*.html',
  ],
  theme: {
    extend: {
      typography: {
        DEFAULT: {
          css: {
            a: {
              color: '#104EB2',
            }
          },
        },
      },
      fontFamily: {
        sans: ['Open Sans', ...defaultTheme.fontFamily.sans]
      },
      colors: {
        'brand': {
          50: '#F3F6FB',
          100: '#E7EDF7',
          200: '#C3D3EC',
          300: '#9FB8E0',
          400: '#5883C9',
          500: '#104EB2',
          600: '#0E46A0',
          700: '#0A2F6B',
          800: '#072350',
          900: '#051735',
        },
      }
    },
  },
  plugins: [
    require('@tailwindcss/typography'),
    require('@tailwindcss/line-clamp'),
  ],
}
back to top