-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.config.js
More file actions
36 lines (36 loc) · 979 Bytes
/
tailwind.config.js
File metadata and controls
36 lines (36 loc) · 979 Bytes
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
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
// MWD custom color palette
mwd: {
// Primary blue scale - more vibrant blue that pops
blue: {
50: '#f0f7fc',
100: '#e3eef7', // Soft blue-tinted white
200: '#c4ddf0',
300: '#9ec8e8',
400: '#82aed6', // Light sky blue - rgb(130, 174, 214)
500: '#4a90c4',
600: '#2e74a8',
700: '#1e5a8a', // Vibrant medium blue
800: '#164876', // Rich blue (more blue, less gray)
900: '#0f3456',
},
},
// Semantic aliases for common uses
lavender: {
50: '#f8fafc', // Lighter
100: '#eef2f7', // Lighter lavender background
200: '#e1e8f0',
},
},
},
},
plugins: [],
}