Catalyst / admin/Synapse-Cortex 14.8 GB / 57.8 GB 40.0 GB free
Help Sign in

admin / Synapse-Cortex

public

Self Hosted ITSM Tool with RBAC/Tenanting and MFA

Code Issues Pull requests Pipelines Packages Security Insights Wiki Settings
Synapse-Cortex / Synapse-Cortexv2 / frontend / tailwind.config.js 928 B · main
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/** @type {import('tailwindcss').Config} */
export default {
  darkMode: 'class',
  content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
  theme: {
    extend: {
      colors: {
        cortex: {
          bg: '#030d18',
          panel: '#081823',
          panel2: '#0c2231',
          border: '#123a52',
          'border-glow': '#1d5778',
          muted: '#6b8499',
        },
        chrome: {
          DEFAULT: '#c8d4e0',
          dim: '#8aa2b5',
        },
        accent: {
          blue: '#22d3ff',
          'blue-bright': '#5ce6ff',
          'blue-dim': '#0a8fb8',
          green: '#39ff8a',
          orange: '#ff8a1e',
          red: '#ff3b5c',
        },
      },
      fontFamily: {
        display: ['"Space Grotesk"', 'system-ui', 'sans-serif'],
        body: ['Inter', 'system-ui', 'sans-serif'],
        mono: ['"JetBrains Mono"', 'ui-monospace', 'monospace'],
      },
    },
  },
  plugins: [],
}