An easy-to-use platform for EEG experimentation in the classroom
1/** @type {import('tailwindcss').Config} */
2module.exports = {
3 darkMode: ['class'],
4 content: ['./src/renderer/**/*.{ts,tsx,js,jsx}'],
5 theme: {
6 extend: {
7 colors: {
8 brand: {
9 DEFAULT: '#007c70',
10 dark: '#00635a',
11 light: '#e6f2f1',
12 },
13 accent: {
14 DEFAULT: '#ffc107',
15 light: '#ffe69c',
16 },
17 signal: {
18 great: '#66b0a9',
19 ok: '#ffcd39',
20 bad: '#e06766',
21 none: '#bfbfbf',
22 },
23 },
24 borderRadius: {
25 lg: 'var(--radius)',
26 md: 'calc(var(--radius) - 2px)',
27 sm: 'calc(var(--radius) - 4px)',
28 },
29 },
30 },
31 plugins: [],
32};