Change the Site Title
In index.html, update the title and header:
<!-- In index.html --> <title>Content Pipeline | YourBrand</title> ... <h1>🔺 YourBrand Content Pipeline</h1>
Change Color Scheme
In design-tokens.css, customize the primary color:
/* In design-tokens.css */ --color-primary-500: #your-hex-color;
Change Fonts
In design-tokens.css, import different Google Fonts:
/* In design-tokens.css */
@import url('https://fonts.googleapis.com/css2?family=YourFont:wght@400;600&display=swap');
--font-heading: 'YourFont', sans-serif;