style: configured global design tokens - #12
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Introduces a first pass of global design tokens via CSS custom properties and wires them into Tailwind v4 theme variables to support consistent (dark) site-wide styling.
Changes:
- Added a set of color design tokens in
app/globals.cssand attempted to expose them as Tailwind theme colors. - Updated global
bodystyles to use the new background/text/font variables. - Updated the home page to use the new Tailwind text color utility (
text-text-primary).
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
app/globals.css |
Defines global color tokens and Tailwind theme mappings; applies global dark background + primary text + font family. |
app/page.tsx |
Uses the new Tailwind text color token for the page content. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Collaborator
|
Looks good 👍 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request
Description
Introduces CSS custom properties (design tokens) and maps them into Tailwind theme variables; applies a dark-themed global stylesheet and font variables for consistent site-wide styling.
Closes Notion task 'T1 (Foundation) - Configure global design tokens' (https://app.notion.com/p/graphicsprogrammingknights/T1-Foundation-Configure-global-design-tokens-37b4589a9ffa8091bb82e019d28eac67?source=copy_link).
Type of Change
feat: New featurefix: Bug fixchore: Maintenance (dependencies, config, etc.)docs: Documentation onlystyle: Code style (formatting, no logic change)refactor: Code refactor (no new feature or fix)Changes Made
global.css, page.tsx
Checklist
npm run lintpasses without errorsnpm run buildcompletes successfullyRelated Issues