Some checks failed
CD Pipeline / Deploy to Staging (push) Failing after 20s
CI Pipeline / Lint and Type Check (push) Failing after 32s
CI Pipeline / Build (push) Has been skipped
CI Pipeline / Test Backend (push) Failing after 1m28s
CI Pipeline / Test Frontend (push) Failing after 33s
CI Pipeline / Security Scan (push) Failing after 1m6s
Deploy to Staging / Deploy to Staging (push) Failing after 33s
Portal CI / Portal Lint (push) Failing after 20s
Portal CI / Portal Type Check (push) Failing after 22s
Portal CI / Portal Test (push) Failing after 21s
Portal CI / Portal Build (push) Failing after 20s
Test Suite / frontend-tests (push) Failing after 32s
Test Suite / api-tests (push) Failing after 52s
Test Suite / blockchain-tests (push) Failing after 30s
Type Check / type-check (map[directory:. name:root]) (push) Failing after 23s
Type Check / type-check (map[directory:api name:api]) (push) Failing after 18s
Type Check / type-check (map[directory:portal name:portal]) (push) Failing after 18s
CD Pipeline / Deploy to Production (push) Has been skipped
Replace the generic S wordmark with geometric Sankofa, Phoenix, and PanTel marks, institutional palette tokens, IBM Plex Sans, ecosystem trinity homepage, /brand reference page, corporate graphics, and portal shell refresh. Co-authored-by: Cursor <cursoragent@cursor.com>
39 lines
905 B
JavaScript
39 lines
905 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
sovereign: {
|
|
obsidian: '#111111',
|
|
midnight: '#0D1B2A',
|
|
gold: '#D4A64A',
|
|
bronze: '#8B6A3E',
|
|
copper: '#C56B2C',
|
|
ivory: '#F5F1E8',
|
|
},
|
|
primary: {
|
|
50: '#faf6ed',
|
|
100: '#f5eed9',
|
|
200: '#e8d4a8',
|
|
300: '#d4a64a',
|
|
400: '#c9923a',
|
|
500: '#8b6a3e',
|
|
600: '#6b5230',
|
|
700: '#4a3821',
|
|
800: '#2a2012',
|
|
900: '#111111',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['var(--font-ibm-plex)', 'IBM Plex Sans', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|