| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- /** @type {import('tailwindcss').Config} */
- module.exports = {
- content: ["./src/**/*.{js,jsx,ts,tsx}"],
- presets: [require("nativewind/preset")],
- theme: {
- extend: {
- colors: {
- // — Primary —
- primary: {
- DEFAULT: "#004ac6",
- container: "#2563eb",
- fixed: "#dbe1ff",
- "fixed-dim": "#b4c5ff",
- },
- "on-primary": {
- DEFAULT: "#ffffff",
- container: "#eeefff",
- fixed: "#00174b",
- "fixed-variant": "#003ea8",
- },
- // — Secondary —
- secondary: {
- DEFAULT: "#495c95",
- container: "#acbfff",
- fixed: "#dbe1ff",
- "fixed-dim": "#b4c5ff",
- },
- "on-secondary": {
- DEFAULT: "#ffffff",
- container: "#394c84",
- fixed: "#00174b",
- "fixed-variant": "#31447b",
- },
- // — Tertiary —
- tertiary: {
- DEFAULT: "#943700",
- container: "#bc4800",
- fixed: "#ffdbcd",
- "fixed-dim": "#ffb596",
- },
- "on-tertiary": {
- DEFAULT: "#ffffff",
- container: "#ffede6",
- fixed: "#360f00",
- "fixed-variant": "#7d2d00",
- },
- // — Error —
- error: {
- DEFAULT: "#ba1a1a",
- container: "#ffdad6",
- },
- "on-error": {
- DEFAULT: "#ffffff",
- container: "#93000a",
- },
- // — Surface (Tonal Architecture) —
- surface: {
- DEFAULT: "#f9f9fe",
- dim: "#d9dade",
- bright: "#f9f9fe",
- variant: "#e2e2e7",
- tint: "#0053db",
- container: {
- DEFAULT: "#ededf2",
- lowest: "#ffffff",
- low: "#f3f3f8",
- high: "#e8e8ed",
- highest: "#e2e2e7",
- },
- },
- "on-surface": {
- DEFAULT: "#1a1c1f",
- variant: "#434655",
- },
- // — Outline —
- outline: {
- DEFAULT: "#737686",
- variant: "#c3c6d7",
- },
- // — Background —
- background: "#f9f9fe",
- "on-background": "#1a1c1f",
- // — Inverse —
- "inverse-surface": "#2e3034",
- "inverse-on-surface": "#f0f0f5",
- "inverse-primary": "#b4c5ff",
- },
- borderRadius: {
- DEFAULT: "0.25rem",
- lg: "1rem",
- xl: "1.5rem",
- "2xl": "2rem",
- full: "9999px",
- },
- fontFamily: {
- headline: ["System", "PingFang SC", "sans-serif"],
- body: ["System", "PingFang SC", "sans-serif"],
- label: ["System", "PingFang SC", "sans-serif"],
- },
- },
- },
- plugins: [],
- };
|