From 6ce405eedbbd2d223fa40d208139f393b202499e Mon Sep 17 00:00:00 2001 From: Yanzz231 Date: Wed, 4 Mar 2026 19:44:24 +0700 Subject: [PATCH 1/2] feat: add BNCC color palette and Montserrat font --- .github/labeler.yml | 2 +- src/index.css | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index e857749..339bc13 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -14,7 +14,7 @@ hooks: - changed-files: - any-glob-to-any-file: 'src/hooks/**' -styles: +styling: - changed-files: - any-glob-to-any-file: - 'src/**/*.css' diff --git a/src/index.css b/src/index.css index f1d8c73..aa7bb3b 100644 --- a/src/index.css +++ b/src/index.css @@ -1 +1,38 @@ +@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap'); @import "tailwindcss"; + +@theme { + --font-sans: 'Montserrat', sans-serif; + + --color-primary-50: #e6f0fb; + --color-primary-100: #cce0f7; + --color-primary-200: #99c1ef; + --color-primary-300: #66a2e7; + --color-primary-400: #3383df; + --color-primary-500: #0054a5; + --color-primary-600: #004a94; + --color-primary-700: #003b76; + --color-primary-800: #002c58; + --color-primary-900: #001d3a; + + --color-background: #ffffff; + --color-foreground: #09090b; + --color-card: #ffffff; + --color-card-foreground: #09090b; + --color-muted: #f4f4f5; + --color-muted-foreground: #71717a; + --color-border: #e4e4e7; + --color-input: #e4e4e7; + --color-ring: #0054a5; +} + +* { + border-color: var(--color-border); +} + +body { + background-color: var(--color-background); + color: var(--color-foreground); + font-family: var(--font-sans); + -webkit-font-smoothing: antialiased; +} From 2f5e66f2a1ac6e417e3b76843456584f86153ff6 Mon Sep 17 00:00:00 2001 From: Yanzz231 Date: Wed, 4 Mar 2026 19:50:03 +0700 Subject: [PATCH 2/2] chore: update auto label config with emoji and capitalized names --- .github/labeler.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/labeler.yml b/.github/labeler.yml index 339bc13..58515ab 100644 --- a/.github/labeler.yml +++ b/.github/labeler.yml @@ -1,34 +1,34 @@ -feature: +🚀 Feature: - changed-files: - any-glob-to-any-file: 'src/pages/**' -components: +🧩 Components: - changed-files: - any-glob-to-any-file: 'src/components/**' -config: +⚙️ Config: - changed-files: - any-glob-to-any-file: 'src/config/**' -hooks: +🪝 Hooks: - changed-files: - any-glob-to-any-file: 'src/hooks/**' -styling: +🎨 Styling: - changed-files: - any-glob-to-any-file: - 'src/**/*.css' - 'tailwind.config.*' -documentation: +📝 Documentation: - changed-files: - any-glob-to-any-file: '*.md' -ci: +🔧 CI: - changed-files: - any-glob-to-any-file: '.github/**' -dependencies: +📦 Dependencies: - changed-files: - any-glob-to-any-file: - 'package.json'