55 lines
1.2 KiB
JavaScript
55 lines
1.2 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Brand colors from ARGE ICT logo
|
|
brand: {
|
|
green: {
|
|
DEFAULT: '#159052',
|
|
dark: '#046D3F',
|
|
light: '#53BA6F',
|
|
},
|
|
orange: '#F69036',
|
|
blue: '#0F578B',
|
|
red: '#B42832',
|
|
},
|
|
// Semantic colors
|
|
primary: {
|
|
50: '#e6f7ef',
|
|
100: '#b3e6d0',
|
|
200: '#80d5b1',
|
|
300: '#4dc492',
|
|
400: '#1ab373',
|
|
500: '#159052', // Main brand green
|
|
600: '#117342',
|
|
700: '#0d5631',
|
|
800: '#093921',
|
|
900: '#051c10',
|
|
},
|
|
secondary: {
|
|
50: '#fff3e6',
|
|
100: '#ffdbb3',
|
|
200: '#ffc380',
|
|
300: '#ffab4d',
|
|
400: '#ff931a',
|
|
500: '#F69036', // Brand orange
|
|
600: '#c5722b',
|
|
700: '#945520',
|
|
800: '#633816',
|
|
900: '#321c0b',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|