feat: add four new student modules (rotation, skill-video, exam-prep, academic) with backend APIs and frontend pages; add exam-prep question history with DB persistence
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import type { Config } from 'tailwindcss';
|
||||
|
||||
const config: Config = {
|
||||
content: ['./src/**/*.{ts,tsx}'],
|
||||
theme: {
|
||||
extend: {
|
||||
colors: {
|
||||
brand: {
|
||||
50: '#eef6ff',
|
||||
100: '#d9eaff',
|
||||
200: '#bcd9ff',
|
||||
300: '#8ec1ff',
|
||||
400: '#599dff',
|
||||
500: '#3377f5',
|
||||
600: '#1f59db',
|
||||
700: '#1a47b0',
|
||||
800: '#1b3e8c',
|
||||
900: '#1c386f',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
plugins: [],
|
||||
};
|
||||
|
||||
export default config;
|
||||
Reference in New Issue
Block a user