vitess.io/vitess@v0.16.2/web/vtadmin/tailwind.config.js (about)

     1  module.exports = {
     2      content: ['./src/**/*.{js,jsx,ts,tsx}', './public/index.html'],
     3      theme: {
     4          extend: {
     5              colors: {
     6                  danger: {
     7                      DEFAULT: '#D32F2F',
     8                      50: '#FF6659',
     9                      200: '#9a0007',
    10                  },
    11                  gray: {
    12                      75: '#FAFAFA',
    13                      100: '#F3F3F3',
    14                      200: '#EDF2F7',
    15                      400: '#CBD5E0',
    16                      600: '#7A8096',
    17                      800: '#2D3748',
    18                      900: '#1E2531',
    19                  },
    20                  success: {
    21                      DEFAULT: '#00893E',
    22                      50: '#4CBA6A',
    23                      200: '#005A13',
    24                  },
    25                  vtblue: {
    26                      DEFAULT: '#3D5AfE',
    27                      50: '#8187FF',
    28                      200: '#0031CA',
    29                      dark: {
    30                          DEFAULT: '#8187FF',
    31                          50: '#B6B7FF',
    32                          200: '#4A5ACB',
    33                      },
    34                  },
    35                  warning: {
    36                      DEFAULT: '#FFAB40',
    37                      50: '#FFDD71',
    38                      200: '#C77C02',
    39                  },
    40              },
    41              textColor: {
    42                  primary: '#17171b',
    43                  secondary: '#718096',
    44                  none: '#17171b',
    45              },
    46              inset: {
    47                  '-3full': '-300%',
    48              },
    49          },
    50          fontFamily: {
    51              mono: ['NotoMono', 'source-code-pro', 'menlo', 'monaco', 'consolas', 'Courier New', 'monospace'],
    52              sans: [
    53                  'NotoSans',
    54                  '-apple-system',
    55                  'blinkmacsystemfont',
    56                  'Segoe UI',
    57                  'Roboto',
    58                  'Oxygen',
    59                  'Ubuntu',
    60                  'Cantarell',
    61                  'Fira Sans',
    62                  'Droid Sans',
    63                  'Helvetica Neue',
    64                  'sans-serif',
    65              ],
    66          },
    67          // Presently, we use a 1rem = 10px basis, which diverges from
    68          // tailwind's (or, more specifically, most browsers') 16px default basis.
    69          fontSize: {
    70              sm: '1.2rem',
    71              base: '1.4rem',
    72              lg: '1.6rem',
    73              xl: '2rem',
    74              '2xl': '2.8rem',
    75              '3xl': '3.6rem',
    76          },
    77      },
    78      plugins: [],
    79  };