Indigo
Deep intuition and wisdom — indigo bridges the rational and mystical.
50
100
200
300
400
500
600
700
800
All Indigo Shades
Click any shade to copy the hex code instantly.
Usage in Code
CSS Variables
:root {
--indigo-50: #eef2ff;
--indigo-100: #e0e7ff;
--indigo-200: #c7d2fe;
--indigo-300: #a5b4fc;
--indigo-400: #818cf8;
--indigo-500: #6366f1;
--indigo-600: #4f46e5;
--indigo-700: #4338ca;
--indigo-800: #3730a3;
--indigo-900: #312e81;
--indigo-950: #1e1b4b;
} Tailwind Config
// tailwind.config.js
module.exports = {
theme: {
extend: {
colors: {
indigo: {
50: '#eef2ff',
100: '#e0e7ff',
200: '#c7d2fe',
300: '#a5b4fc',
400: '#818cf8',
500: '#6366f1',
600: '#4f46e5',
700: '#4338ca',
800: '#3730a3',
900: '#312e81',
950: '#1e1b4b',
},
},
},
},
}; SCSS Map
$indigo-palette: (
50: #eef2ff,
100: #e0e7ff,
200: #c7d2fe,
300: #a5b4fc,
400: #818cf8,
500: #6366f1,
600: #4f46e5,
700: #4338ca,
800: #3730a3,
900: #312e81,
950: #1e1b4b,
);