diff --git a/.agents/skills/cmk-codebase-docs/SKILL.md b/.agents/skills/cmk-codebase-docs/SKILL.md
deleted file mode 100644
index be0920e..0000000
--- a/.agents/skills/cmk-codebase-docs/SKILL.md
+++ /dev/null
@@ -1,193 +0,0 @@
----
-name: cmk:codebase-docs
-description: Generate or update hierarchical, AI-navigable documentation for a codebase under `docs/ai/`. Use whenever the user asks to "document the codebase for AI", "bootstrap AI docs", "generate codebase map", "set up AI navigation docs", "update AI docs", "refresh docs after change", or mentions building progressive-disclosure docs so an AI can find the right source files quickly. Produces a tree of concise docs that *point to* code rather than duplicate it. Use even when the user only says "document this repo" without specifying the structure.
-version: 0.1.0
----
-
-# Codebase Docs for AI Navigation
-
-Build a tree of short documentation files under `docs/ai/` whose only job is to help an AI (or a human skimming quickly) locate the right source file for a topic. Each doc describes **what a thing is and where it lives**, not how the code works line-by-line.
-
-The tree mirrors how a newcomer would ask questions: start broad ("what is this repo?"), then drill down ("how does the TUI input loop work?"). At each level, the reader sees a short menu of sub-topics, each a one-line hook, and only descends into the ones that matter.
-
-## When to use
-
-Two explicit entry points — never run on autopilot:
-
-- **Bootstrap** — user says something like "set up AI docs", "document the codebase for AI", or it's a fresh repo with nothing under `docs/ai/`. Build the whole tree from the top.
-- **Update** — user says "update the AI docs for X", "I added feature Y, refresh the docs", or similar. Find the affected nodes and edit in place; don't rewrite everything.
-
-If the mode is ambiguous, ask.
-
-## Output location and shape
-
-```
-docs/ai/
-├── README.md # root: whole-repo overview + link menu
-├── /
-│ ├── README.md # area overview + link menu to topics/sub-areas
-│ ├── .md # a leaf doc for a bounded concept
-│ └── /
-│ ├── README.md
-│ └── .md
-```
-
-- Folders with their own `README.md` act as branch nodes; leaves are plain `.md` files named after the topic (`session-loop.md`, not `00-session-loop.md` — no numeric prefixes).
-- A branch's `README.md` lists children as a flat menu of one-liners with relative links. It does **not** re-explain what children cover.
-- Keep folder names lowercase-kebab, matching the vocabulary the code already uses. Whatever the codebase calls a unit — package, module, service, app, crate, workspace — mirror that name. If the source folder is `billing-service/`, the doc folder is `billing-service/`, not `billing/` or `payments/`.
-
-## What goes in one doc
-
-Every doc answers three questions, in order, and then stops:
-
-1. **What is this?** — one or two sentences, plain language.
-2. **Why does it exist / what problem does it solve?** — only if non-obvious. Skip for things a reader can infer from the name.
-3. **Where is it?** — file paths with a symbol hint (function, struct, class, or a grep-able phrase) so AI can jump directly. Use markdown bullets, not prose.
-
-For a branch doc (`README.md`), replace (3) with a link menu to children.
-
-If implementation approach matters (an unusual pattern, a deliberate trade-off, an invariant that isn't obvious from the code), add a short "Approach" section — a paragraph or two — and still point to the code for the actual details.
-
-### Code reference format
-
-Point to files with enough of a hint to let AI skip straight to the right lines. The pattern is `path → symbol-or-grep-hint`:
-
-```
-- One-line description of what this thing does.
- → `` — ``
-```
-
-Use a named symbol when one exists — function, class, struct, type, const, route, config key, whatever the language offers. Fall back to a short grep-able string from the code only if no named symbol covers it (e.g., a regex, a magic number, a CLI flag). Don't invent names — if you can't quickly find a hook, open the file and grab the real one.
-
-**Always write paths relative to the repo root**, not bare filenames. `apps/api/src/server.ts`, not just `server.ts`. A doc about a sub-folder still writes the full path from the repo root when it references a file, because the reader (an AI or a human `find`-ing) starts at the repo root, not inside the doc's folder. Bare filenames force a guess-the-path step that the skill exists to eliminate. The only exception: when every path in a tight list is in the same directory and you've just named that directory one line above, shortening is fine — but err toward being explicit.
-
-## Principles
-
-**Progressive disclosure.** A doc should be readable in ten seconds and tell the reader where to go for more. If you catch yourself explaining a sub-concept in depth, that sub-concept probably deserves its own doc — link to it instead.
-
-**Don't duplicate the code.** No copy-pasted function bodies, no snippets longer than a couple of lines. If a reader needs the actual logic, they open the file. The doc's value is knowing *which* file.
-
-**Don't document the obvious.** Skip things whose purpose is clear from the name or from reading the first ten lines of the file. `src/main.rs: entry point` is noise. A non-obvious invariant ("this must run before `init_db` or migrations panic") is signal.
-
-**Coherence over splitting.** If a topic is naturally one story, keep it in one doc even if it runs a bit long. Only split when there's a genuinely bounded sub-concept *and* the parent is getting unwieldy — see the split heuristic below.
-
-**Match the code's vocabulary.** Use the same names the code uses. If the source folder is `rcp/` (or the package is `@org/rcp`, or the module is `rcp`), the doc folder is `rcp/` — not a more "descriptive" alias like `remote-control-protocol/`. The doc's job is to be findable from the code's own terms.
-
-## Split heuristic
-
-Split a topic into its own sub-doc when **both** are true:
-
-1. **Bounded** — the sub-topic has a clear boundary a reader could land on directly without needing the parent's context.
-2. **Substantial** — it would take more than a few bullets or a short paragraph to cover, *or* the parent doc is pushing past ~100–150 lines and getting hard to skim.
-
-If only (1) holds and the sub-topic is a two-line bullet, leave it inline. If only (2) holds (the parent is long but the content is one continuous narrative), don't chop it artificially — rewrite for brevity first.
-
-Rule of thumb: a good branch doc is ~30–80 lines. A good leaf doc is ~20–120 lines. If a leaf is heading past 200, ask whether it's really one topic.
-
-## What NOT to document
-
-- Entry points whose role is obvious from the filename (`main.*`, `index.*`, `app.*`, `cmd/*/main.go`, etc.).
-- Boilerplate: standard package manifests (`package.json`, `Cargo.toml`, `pyproject.toml`, `go.mod`, `pom.xml`, `Gemfile`, etc.) and typical framework scaffolding.
-- Anything already well-covered by a top-level `README.md` — link to it instead of restating.
-- Generated code, vendored dependencies, lockfiles, migration files.
-- Features that don't exist yet. Don't speculate.
-
-## Bootstrap workflow
-
-1. **Survey the repo.** Read the root `README.md`, any `CLAUDE.md` / `AGENTS.md`, the top-level directory layout, and whatever package/workspace manifest the stack uses (`package.json`, `Cargo.toml`, `pyproject.toml`, `go.mod`, `pom.xml`, `Gemfile`, etc.) for declared workspace members or sub-packages. Identify the 3–8 major areas — apps, services, packages, modules, significant subsystems. Note anything the existing README already explains well — don't duplicate it.
-
-2. **Draft `docs/ai/README.md`.** One paragraph: what this repo is, what it does, who it's for. Then a link menu to the major areas, each a single sentence. Nothing else.
-
-3. **For each area, decide branch vs. leaf.** If the area has ≥2 substantial sub-topics, make it a folder with its own `README.md`. If it's one coherent thing, make it a single `.md` at the parent level.
-
-4. **Drill down recursively.** For each branch, identify its sub-topics by skimming the code (directory structure, module boundaries, key types/functions). Apply the split heuristic. Stop recursing when a sub-topic is either (a) obvious from its name + file path, or (b) small enough to fit as a bullet in its parent.
-
-5. **Write leaf docs.** For each, read enough of the actual code to write a truthful what/why/where. Don't paraphrase from guesswork — open the file. Grab the real symbol names.
-
-6. **Verify links.** All relative links resolve; all file paths exist; all symbol hints are real (grep for them). Broken references are worse than no reference.
-
-7. **Sanity-check length.** Every doc under the length guidance above. Any doc that runs long, either split or trim.
-
-## Update workflow
-
-1. **Locate affected nodes.** Given the change (new feature, renamed module, deleted subsystem), find every doc that mentions it. `grep -r` on the old name is usually enough.
-
-2. **Edit in place.** Preserve the existing structure; don't rewrite docs that still describe reality. Update file-path hints, symbol names, and one-line summaries as needed.
-
-3. **Add new nodes if genuinely new.** A new area gets a new folder + `README.md`; a new topic inside an existing area gets a new leaf and a line in the parent's menu.
-
-4. **Remove stale nodes.** If a subsystem is deleted, delete its doc and remove it from the parent's menu. Don't leave tombstones.
-
-5. **Re-verify links and symbols** for every edited file.
-
-## Working example (sketch)
-
-The shape is the same regardless of stack — the folder names just mirror whatever the codebase calls its parts. A typical tree for a multi-area repo:
-
-```
-docs/ai/
-├── README.md # one paragraph: what the repo is + a menu of areas
-├── /
-│ ├── README.md # menu of sub-topics in this area
-│ ├── .md # leaf: what / (why) / where
-│ ├── .md
-│ └── /
-│ ├── README.md
-│ └── .md
-├── /
-│ ├── README.md
-│ ├── .md
-│ └── .md
-└── /
- └── README.md # small enough to stay single-doc
-```
-
-Concrete shape examples for different stacks:
-
-- **TS monorepo (`apps/`, `packages/`)** — top-level menu mirrors workspace members: `docs/ai/apps//`, `docs/ai/packages//`.
-- **Rust workspace (`crates/`)** — top-level menu mirrors crate names: `docs/ai//`.
-- **Python project (`src//`)** — menu mirrors top-level modules: `docs/ai//`.
-- **Go services (`cmd/`, `internal/`, `pkg/`)** — menu mirrors services/packages: `docs/ai//`, `docs/ai/internal//`.
-- **Single-app repo with no clear sub-packages** — group by domain concept (e.g. `auth/`, `billing/`, `ingest/`) and let the leaves point at files anywhere in `src/`.
-
-A leaf doc — same structure regardless of language — might read in full:
-
-```markdown
-# Session loop
-
-## What
-The main driver of an interactive session. Each iteration reads one user
-input, dispatches to the worker, streams output back, and returns to idle.
-Keeps the input handler responsive across long-running calls.
-
-## Approach
-The loop is persistent rather than per-turn: a single task owns the input
-channel and the output renderer for the whole session. Earlier versions
-re-created the task per turn, which dropped events during transitions.
-See commit 88af577 for the fix.
-
-## Where
-- Entry: `` — ``
-- Input source: `` — ``
-- Output renderer: `` — ``
-```
-
-That's the whole doc — ~15 lines, three clear hooks into the code, no copied source. Replace the placeholders with real paths and real symbol names from whatever language the project uses.
-
-## Common failure modes
-
-- **Paraphrased code.** If the doc is explaining control flow line-by-line, delete that and just point to the function.
-- **Essay-style prose.** Bullets and short paragraphs beat flowing prose for skim-reading.
-- **Phantom references.** Never invent a function or file name. If you're unsure, open the file and check.
-- **Over-splitting.** Eight three-line leaves are harder to navigate than one thirty-line doc. Err toward keeping related things together.
-- **Under-splitting.** A single 500-line `README.md` with everything is exactly what this skill is trying to replace.
-- **Documenting aspirations.** Only describe what's in the code now.
-
-## Final check before finishing
-
-- [ ] Root `docs/ai/README.md` exists and links to every top-level area.
-- [ ] Every branch `README.md` has a link menu, not a wall of text.
-- [ ] Every leaf has what / (why, if non-obvious) / where.
-- [ ] Every `→` reference points to a real file and a real symbol (spot-check a few with grep).
-- [ ] No doc is over the length guidance without a reason.
-- [ ] No duplicated content between parent and child.
diff --git a/.agents/skills/cmk-codebase-docs/eval.json b/.agents/skills/cmk-codebase-docs/eval.json
deleted file mode 100644
index 4ddbb03..0000000
--- a/.agents/skills/cmk-codebase-docs/eval.json
+++ /dev/null
@@ -1,34 +0,0 @@
-[
- {
- "eval_id": 1,
- "eval_name": "bootstrap-ai-devkit",
- "prompt": "Set up AI navigation docs for this repository. Read skills/codebase-docs/SKILL.md and follow its bootstrap workflow. Output the full tree under docs/ai/.",
- "assertions": [
- "docs/ai/README.md exists and is one paragraph + a link menu (not a wall of text)",
- "Top-level menu links every major area in the repo (skills/, docs/, .claude-plugin/, .opencode/ if relevant)",
- "Each branch's README.md is a link menu of one-liners, not a re-explanation of children",
- "Folder names mirror the repo's own vocabulary (e.g., 'skills' not 'plugins-and-skills')",
- "Every leaf doc follows the what / (why) / where structure",
- "Every file path referenced in docs is relative to the repo root, not bare filenames",
- "Every referenced file path actually exists in the repo (no phantom paths)",
- "Symbol hints (when present) are real grep-able strings, not invented names",
- "No leaf doc duplicates code blocks longer than a couple of lines",
- "No leaf doc exceeds ~200 lines",
- "No tombstone references to the deleted codebase-summary skill",
- "docs/ai/skills/README.md (or equivalent) lists codebase-docs as one of the skills"
- ]
- },
- {
- "eval_id": 2,
- "eval_name": "update-add-new-skill",
- "prompt": "Assume docs/ai/ already exists with a tree describing this repo. I just added a new skill called 'cmk:foo' at skills/foo/SKILL.md. Read skills/codebase-docs/SKILL.md and follow its update workflow to refresh docs/ai/ for the new skill. Do not rewrite docs that still describe reality.",
- "assertions": [
- "Existing unrelated docs are not rewritten",
- "skills/foo/SKILL.md is added as a new leaf or menu entry under docs/ai/skills/",
- "Parent README's menu is updated to include the new skill in alphabetical or logical order",
- "Update is in-place editing — no full bootstrap rerun",
- "Symbol hints for the new skill point at real content in skills/foo/SKILL.md",
- "No new doc speculates about features that don't exist yet"
- ]
- }
-]
diff --git a/.agents/skills/cmk-worktree-dev-env/SKILL.md b/.agents/skills/cmk-worktree-dev-env/SKILL.md
deleted file mode 100644
index 6a85301..0000000
--- a/.agents/skills/cmk-worktree-dev-env/SKILL.md
+++ /dev/null
@@ -1,298 +0,0 @@
----
-name: cmk:worktree-dev-env
-description: This skill should be used when the user asks to "set up local dev", "worktree dev environment", "port conflicts between worktrees", "headless dev mode", "mprocs config", "process-compose setup", or needs to create or iterate worktree-isolated local development environments with deterministic port isolation, coherence validation, interactive and headless service runners, and env file management.
-version: 0.1.0
----
-
-# Worktree Dev Environment Setup
-
-Set up (or improve) a worktree-isolated local development environment. The goal is a system where multiple git worktrees of the same repo can run full local dev stacks simultaneously on the same machine — without port conflicts, stale configs, or cross-worktree contamination.
-
-This pattern is valuable for three audiences:
-- **Human developers** who want to work on multiple branches with live-reloading services
-- **AI agents** (Claude Code, OpenCode, Cursor, etc.) that need to spin up, test against, and tear down local dev in headless mode
-- **CI pipelines** that run integration tests against real services
-
-## The Pattern (Stack-Agnostic)
-
-The system has eight components. Each is a shell script or config file. Adapt implementation to the project's actual tech stack, but preserve the architectural boundaries — they exist because each component has a single responsibility and can fail independently.
-
-### 1. Port Isolation (`scripts/worktree-env.sh`)
-
-**Purpose:** Derive deterministic, unique port numbers from the repo's absolute path so that two worktrees on the same machine never collide.
-
-**How it works:**
-- Compute a numeric offset from a hash of the repo root path: `offset = SHA256(repo_root) % 200`
-- Apply that offset to every port the project uses: `SERVICE_PORT = BASE_PORT + offset`
-- Export all computed ports as environment variables
-- Also derive a unique compose project name (e.g., `COMPOSE_PROJECT_NAME=myapp-`) so Docker containers don't collide
-
-**Why SHA256 mod 200:** SHA256 is deterministic (same path = same ports every time, no state file needed) and the mod 200 range keeps ports in a safe user-space band while making collisions between different paths extremely unlikely.
-
-**Key rules:**
-- This script is **sourced**, never executed directly — it exports vars into the caller's environment
-- It must be idempotent (sourcing it twice produces the same result)
-- Provide an escape hatch env var (e.g., `MYAPP_WORKTREE_ISOLATION_DISABLED=1`) for cases where someone wants to override
-
-**Edge case — file-based databases (SQLite, DuckDB):** These don't use ports. Instead, isolate them via path — each worktree gets its own DB file under `.local/` (e.g., `.local/dev.db`). The coherence guard should validate the DB path prefix matches the current `REPO_ROOT` to prevent cross-worktree contamination.
-
-**Template logic:**
-```bash
-#!/usr/bin/env bash
-# worktree-env.sh — source this, don't execute it
-REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
-OFFSET=$(echo -n "$REPO_ROOT" | shasum -a 256 | cut -c1-4)
-OFFSET=$((16#$OFFSET % 200))
-
-# Adapt these to your project's services:
-export MYAPP_DB_PORT=$((55432 + OFFSET))
-export MYAPP_API_PORT=$((8080 + OFFSET))
-export MYAPP_FRONTEND_PORT=$((3000 + OFFSET))
-export COMPOSE_PROJECT_NAME="myapp-$(basename "$REPO_ROOT" | tr '[:upper:]' '[:lower:]' | sed 's/[^a-z0-9-]/-/g')"
-```
-
-### 2. Init Script (`scripts/init-worktree-dev.sh`)
-
-**Purpose:** One-command bootstrap that prepares a worktree for local development. This is the **mandatory entry point** — nothing else should run before it.
-
-**What it does (in order):**
-1. Source `worktree-env.sh` to compute ports
-2. Create `.local/` directory with all needed config and secret files (if they don't exist)
-3. Generate default configs with safe dev values (never production credentials)
-4. Normalize env files — replace placeholder values, rewrite ports/DSNs to match computed values
-5. Validate coherence (call the coherence script — hard stop on failure)
-6. Sync env vars to service-specific locations (call the sync script)
-7. Print a summary showing all service endpoints and their ports
-
-**Key rules:**
-- Use `set -euo pipefail` — fail fast on any error
-- Use atomic writes (write to temp file, then `mv`) for config files to avoid partial writes
-- Never overwrite files that already have real values — only fill in defaults/placeholders
-- When rewriting DSNs or URLs, only touch localhost entries (skip remote/production DSNs)
-
-### 3. Coherence Guard (`scripts/ensure-worktree-coherence.sh`)
-
-**Purpose:** Hard-fail safety check that validates all config files, env vars, and ports are internally consistent. If this fails, **nothing starts** — the developer must fix the mismatch first.
-
-**What it checks:**
-- All referenced config files exist and are within the current worktree (reject absolute paths pointing elsewhere)
-- All database connection strings use the correct computed port (parse the DSN, don't just check the raw number)
-- All service URLs reference the correct computed ports
-- Compose project name is consistent
-- Any inter-service references (e.g., service A's URL for reaching service B) match the computed values
-- For file-based databases, the path prefix matches `REPO_ROOT`
-
-**Why this exists:** Without this check, it's easy to accidentally run with a stale `.env` file from before a port change, or to source config from a sibling worktree. These bugs are silent and maddening to debug — authentication failures, connection refused, or worse, writes to the wrong database. The coherence guard makes these bugs loud and immediate.
-
-**Key rules:**
-- Support a `--quiet` flag that suppresses success output (for use in mprocs/headless wrappers)
-- Exit 1 with a descriptive error on any mismatch — say exactly what's wrong and what the expected value should be
-- Check every DSN, every URL, every port reference — be thorough
-
-### 4. Env Sync (`scripts/sync-service-envs.sh`)
-
-**Purpose:** Propagate worktree-computed values to the specific env files that each service reads. Many frameworks (Next.js, Vite, Rails, etc.) expect a `.env.local` in their own directory.
-
-**What it does:**
-- Read the canonical env files from `.local/`
-- Generate service-specific env files (e.g., `frontend/.env.local`, `backend/.env.local`)
-- Only write the vars each service needs — don't dump everything everywhere
-
-**Why a separate script:** Services have different env file conventions and variable names. The frontend might need `VITE_API_URL` while the backend needs `DATABASE_URL`. This script is the translation layer. Keeping it separate from init means services can re-sync without re-running the full init.
-
-### 5. Interactive Mode (`mprocs.yaml` or `process-compose.yaml`)
-
-**Purpose:** Run all services in a single terminal with live-reload for human developers.
-
-**Use [mprocs](https://github.com/pvolok/mprocs) or [process-compose](https://github.com/F1bonacc1/process-compose)** — both are lightweight process multiplexers. Choose based on the team's preference.
-
-**Each process entry should:**
-1. Source the worktree env vars
-2. Run the coherence check (`--quiet` flag)
-3. Start the service with file-watching/live-reload
-
-**Common process types:**
-- **infra**: Database, message queue, cache (via docker compose). Include signal handlers (EXIT, INT, TERM) to auto-clean containers on exit.
-- **backend**: Application server with watch mode (e.g., `cargo watch`, `bun --watch`, `nodemon`, `air` for Go)
-- **frontend**: Dev server (Vite, Next.js dev, etc.)
-- **bootstrap**: One-shot processes that seed initial data (admin accounts, dev fixtures). These should be idempotent and retry-capable since they depend on other services being ready.
-- **workers**: Background job processors, if any
-
-**Always use live-reload tooling**, not plain run commands. The right tool depends on the stack:
-
-| Stack | Live-reload tool | NOT this |
-|-------|-----------------|----------|
-| Rust | `cargo watch -x run` | `cargo run` |
-| Go | `air` or `gow` | `go run` |
-| Node/Bun | `bun --watch` / `nodemon` | `node` |
-| Python | `uvicorn --reload` / `watchfiles` | `python` |
-| Elixir | `mix phx.server` (has built-in reload) | `mix run --no-halt` |
-| Django | `python manage.py runserver` (has built-in reload) | `gunicorn` |
-
-### 6. Headless Mode (`scripts/start-headless.sh`)
-
-**Purpose:** Start all services in the background without a TTY, for use by AI agents and CI. This is what makes the project "agent-friendly."
-
-**Start flow:**
-1. Create `tmp/pids/` and `tmp/` directories
-2. Source env files + worktree isolation
-3. Validate coherence (hard stop on failure)
-4. Sync service envs
-5. Start each service with `nohup`, writing:
- - Stdout/stderr to `tmp/.log`
- - PID to `tmp/pids/.pid`
-6. Run health checks (HTTP endpoint probes or port readiness checks) for critical services
-7. Print status summary
-
-**Stop flow** (`--stop` flag):
-1. Read PID files from `tmp/pids/`
-2. Kill each process
-3. Bring down docker compose infrastructure
-4. Clean up PID files
-
-**Key rules:**
-- Start services in dependency order (infra first, then backends that other services depend on, then frontends). Think about the dependency graph — if service A calls service B, start B first.
-- Health checks should have reasonable timeouts (10-30s) and clear error messages
-- Use `tmp/` (gitignored) for all ephemeral state — never write PIDs or logs elsewhere
-- The stop command should be graceful — try SIGTERM before SIGKILL
-- For non-HTTP services (gRPC, message brokers), use TCP port checks (`nc -z`) rather than HTTP probes
-
-### 7. Service Logs (`scripts/logs.sh`)
-
-**Purpose:** Color-coded log viewer for headless services. Usable standalone by humans (`./scripts/logs.sh`) and called by `start-headless.sh --logs` internally.
-
-**Usage:**
-- `./scripts/logs.sh` — tail all services, color-coded
-- `./scripts/logs.sh api` — tail only the api service
-- `./scripts/logs.sh --no-follow` — dump current logs and exit (no live tail)
-
-**How it works:**
-- Discover services from `tmp/pids/*.pid` (same source of truth as headless start/stop)
-- Assign each service a distinct ANSI color from a rotating palette
-- Prefix every line with a colored `[service-name]` tag
-- Default is `--follow` (live tail); `--no-follow` dumps and exits
-
-**Template logic:**
-```bash
-#!/usr/bin/env bash
-set -euo pipefail
-REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
-
-COLORS=(36 33 32 35 34) # cyan, yellow, green, magenta, blue
-follow=true
-service_filter=""
-
-for arg in "$@"; do
- case "$arg" in
- --no-follow) follow=false ;;
- *) service_filter="$arg" ;;
- esac
-done
-
-tail_cmd="tail"; $follow && tail_cmd="tail -f"
-
-color_idx=0
-for pidfile in "$REPO_ROOT"/tmp/pids/*.pid; do
- svc="$(basename "$pidfile" .pid)"
- logfile="$REPO_ROOT/tmp/${svc}.log"
- [ -n "$service_filter" ] && [ "$svc" != "$service_filter" ] && continue
- [ -f "$logfile" ] || continue
-
- color="${COLORS[$((color_idx % ${#COLORS[@]}))]}"
- color_idx=$((color_idx + 1))
- $tail_cmd "$logfile" | sed "s/^/$(printf '\033[%sm' "$color")[${svc}]$(printf '\033[0m') /" &
-done
-
-[ $color_idx -eq 0 ] && echo "No service logs found in tmp/" && exit 1
-wait
-```
-
-**Integration with `start-headless.sh`:**
-- `start-headless.sh --logs [service]` delegates to `scripts/logs.sh` — no duplicated logic
-- After starting services and health checks pass, print a hint: `View logs: ./scripts/logs.sh`
-
-### 8. Agent Instructions
-
-**Purpose:** Tell AI agents how to use the dev environment. Without this, an agent will try to `npm start` or `docker-compose up` and get confused.
-
-**Add a section to the project's agent configuration file** — `CLAUDE.md` for Claude Code, `AGENTS.md` for OpenCode, or both if the project supports multiple agents:
-
-```markdown
-# Worktrees
-
-- Use `.claude/worktrees/` for git worktrees (already gitignored)
-
-## Worktree-safe local dev (required)
-
-- For any request to start local development, always run `./scripts/init-worktree-dev.sh` first.
-- Never source env files from another worktree path; only use `.local/` files in the current repo root.
-- Never bypass `scripts/ensure-worktree-coherence.sh`; if it fails, stop and report the mismatch.
-- For interactive human sessions, start services with `mprocs --config mprocs.yaml`.
-- For non-interactive/headless agent runs (no TTY), use `./scripts/start-headless.sh` (stop with `--stop`).
- View logs with `./scripts/logs.sh [service]`. Logs go to `tmp/*.log`, PIDs to `tmp/pids/`.
-```
-
-For OpenCode (`AGENTS.md`), the content is identical — just placed in the file OpenCode reads.
-
-## Workflow: Create
-
-1. **Discover the project** — Read the project structure, identify services, databases, message queues, and existing dev setup (docker-compose files, Makefiles, existing scripts).
-2. **Identify ports and services** — List every network port the project uses (databases, APIs, frontends, caches, etc.).
-3. **Implement each component** in order (1-8 above), adapting to the project's tech stack.
-4. **Test the setup** — Run init, verify coherence, start services in headless mode, confirm health checks pass.
-5. **Update .gitignore** — Ensure `.local/`, `tmp/`, and any generated env files are gitignored.
-
-## Workflow: Iterate
-
-1. **Understand what exists** — Read the current scripts, identify which components are implemented.
-2. **Identify the gap or issue** — Determine what to change: new service, flaky health check, missing coherence check.
-3. **Make targeted changes** — Edit the specific component, preserving the architecture.
-4. **Re-validate** — Run the coherence check and a headless start/stop cycle to verify.
-
-## Adapting to Tech Stacks
-
-The pattern is the same regardless of stack. Here's how the implementation details change:
-
-| Component | Node/Bun project | Python project | Go project | Rust project | Elixir project |
-|-----------|------------------|----------------|------------|-------------|----------------|
-| **Backend watch** | `bun --watch` / `nodemon` | `watchfiles` / `uvicorn --reload` | `air` / `gow` | `cargo watch -x run` | `mix phx.server` |
-| **Frontend dev** | `vite dev` / `next dev` | N/A or Jinja live-reload | N/A or templ | `trunk serve` (WASM) | N/A (Phoenix LiveView) |
-| **DB migration** | `drizzle-kit` / `prisma` | `alembic` / `django migrate` | `goose` / `migrate` | `sqlx migrate` | `mix ecto.migrate` |
-| **Package install** | `bun install` / `npm ci` | `pip install -e .` / `uv sync` | `go mod download` | `cargo build` | `mix deps.get` |
-| **Health check** | `curl http://localhost:$PORT/health` | Same | Same | Same | Same |
-| **gRPC health** | N/A | `grpc_health_probe` or `nc -z` | Same | Same | Same |
-
-The scripts themselves are always bash — they're the orchestration layer. The services they manage can be anything.
-
-## Common Pitfalls
-
-- **Don't hardcode ports in application code.** Services must read their port from environment variables, or the isolation layer can't work. If the project currently hardcodes ports, refactor those first.
-- **Don't use `docker-compose.override.yml` for port mapping.** It's not worktree-aware. Instead, use env var substitution in the compose file: `ports: ["${MYAPP_DB_PORT}:5432"]`.
-- **Don't skip the coherence check "just this once."** The whole point is that it catches silent misconfigurations. If it's too strict, fix the check — don't bypass it.
-- **Don't put secrets in the init script.** Generate random dev-only secrets at init time (e.g., `openssl rand -hex 32`), but never embed real credentials.
-- **Don't use plain `go run` or `cargo run` in interactive mode.** Always use a file-watching wrapper (`air`, `cargo watch`) so that code changes trigger automatic restarts.
-- **Don't forget inter-service dependency ordering.** If service A depends on service B, start B first and health-check it before starting A. Think about the full dependency graph.
-
-## File Layout Reference
-
-After setup, the project should have:
-
-```
-project-root/
-├── .local/ # Gitignored. Per-worktree config & secrets.
-│ ├── .env..local # One per service needing secrets
-│ └── # Service configs, TLS certs, etc.
-├── tmp/ # Gitignored. Headless runtime state.
-│ ├── pids/ # PID files for headless services
-│ └── *.log # Service logs from headless mode
-├── scripts/
-│ ├── worktree-env.sh # Port isolation (sourced, not executed)
-│ ├── init-worktree-dev.sh # Bootstrap entry point
-│ ├── ensure-worktree-coherence.sh # Hard-fail validation
-│ ├── sync-service-envs.sh # Env propagation to service dirs
-│ ├── start-headless.sh # Headless start/stop
-│ └── logs.sh # Color-coded service log viewer
-├── mprocs.yaml # Interactive process multiplexer config
-├── CLAUDE.md # Agent instructions for Claude Code
-└── AGENTS.md # Agent instructions for OpenCode
-```
diff --git a/.agents/skills/cmk-worktree-dev-env/eval.json b/.agents/skills/cmk-worktree-dev-env/eval.json
deleted file mode 100644
index 2d279e2..0000000
--- a/.agents/skills/cmk-worktree-dev-env/eval.json
+++ /dev/null
@@ -1,89 +0,0 @@
-[
- {
- "eval_id": 1,
- "eval_name": "nextjs-fastapi-monorepo",
- "prompt": "I have a Next.js monorepo with a PostgreSQL database, a FastAPI Python backend for ML inference, and the Next.js frontend. We use pnpm workspaces. I'm starting to use Claude Code with worktrees and I need multiple branches running at the same time without port conflicts. The frontend is on port 3000, the API on 8000, and Postgres on 5432. We also have a Redis cache on 6379. Can you set up worktree-isolated local dev for this project?",
- "assertions": [
- "worktree-env.sh computes a deterministic offset from SHA256 of repo root",
- "worktree-env.sh offsets all four ports (3000, 8000, 5432, 6379)",
- "init-worktree-dev.sh sources worktree-env.sh and creates .local/ directory",
- "init-worktree-dev.sh uses set -euo pipefail",
- "ensure-worktree-coherence.sh validates DSN ports match computed ports",
- "ensure-worktree-coherence.sh supports --quiet flag",
- "start-headless.sh has both start and --stop modes",
- "start-headless.sh writes PIDs to tmp/pids/ and logs to tmp/",
- "start-headless.sh starts services in dependency order (infra first)",
- "mprocs.yaml or process-compose.yaml is created with all services",
- "CLAUDE.md section includes worktree-safe local dev instructions",
- ".gitignore includes .local/ and tmp/"
- ]
- },
- {
- "eval_id": 2,
- "eval_name": "go-microservices",
- "prompt": "We have a Go microservices project with 3 services: an API gateway (port 8080), a user service (port 8081), and a notification service (port 8082). We use MySQL on 3306 and RabbitMQ on 5672/15672. Everything runs in Docker but we want to be able to run services natively for faster iteration. I work on multiple features in parallel using git worktrees and keep hitting port conflicts. Help me set up worktree-isolated dev.",
- "assertions": [
- "worktree-env.sh offsets all 6 ports (8080, 8081, 8082, 3306, 5672, 15672)",
- "Docker compose file uses env var substitution for port mapping (not hardcoded ports)",
- "init-worktree-dev.sh generates MySQL DSN with computed port",
- "ensure-worktree-coherence.sh checks all three service URLs and MySQL DSN",
- "start-headless.sh includes health checks for at least the API gateway",
- "Interactive mode config includes all 3 Go services with file-watching (air, gow, or similar)",
- "CLAUDE.md worktree section is included"
- ]
- },
- {
- "eval_id": 3,
- "eval_name": "rails-react-iteration",
- "prompt": "I already have a worktree dev setup for my Rails + React project but it's not working well. The coherence check is too basic — it only checks if files exist but doesn't validate ports. The headless mode doesn't have health checks so agents just blindly start services and hope they're up. And there's no env sync — the React app has a hardcoded localhost:3000 for the API URL instead of reading from the worktree env. Can you help me improve this setup?",
- "assertions": [
- "Coherence script is enhanced to validate port values in DSNs and URLs (not just file existence)",
- "start-headless.sh gains health check logic with timeouts (curl or nc based)",
- "A sync-service-envs.sh is created that generates frontend .env.local with dynamic API URL",
- "The React app API URL becomes dynamic via env var (REACT_APP_API_URL or similar)",
- "Existing working worktree-env.sh is preserved unchanged"
- ]
- },
- {
- "eval_id": 4,
- "eval_name": "rust-htmx-sqlite-minio",
- "prompt": "I have a Rust web app using axum that serves HTMX templates with Askama. We use SQLite for the database (file-based, no server) and MinIO on port 9000 (API) and 9001 (console) for object storage. The axum server runs on port 3000. I'm using git worktrees heavily and need isolated local dev. The tricky part is SQLite — it's a file, not a network service, so each worktree needs its own DB file path rather than a different port. Can you set up worktree-isolated dev for this?",
- "assertions": [
- "worktree-env.sh offsets network ports (3000 for axum, 9000 and 9001 for MinIO)",
- "SQLite database path is worktree-local (e.g., .local/dev.db or similar) rather than port-isolated",
- "init-worktree-dev.sh handles both port-based and file-based service isolation",
- "ensure-worktree-coherence.sh validates SQLite path is within current worktree (not pointing elsewhere)",
- "start-headless.sh includes MinIO startup (via docker or binary)",
- "Interactive mode uses cargo watch or cargo-watch for Rust live-reload",
- "CLAUDE.md worktree section is included"
- ]
- },
- {
- "eval_id": 5,
- "eval_name": "elixir-phoenix-rust-sidecar",
- "prompt": "We have a polyglot stack: an Elixir Phoenix web app (port 4000) with a Rust sidecar service for heavy ML inference (port 8080). We use Postgres on 5432 for the Phoenix app's OLTP data and ClickHouse on 8123 (HTTP) and 9000 (native) for analytics. The Phoenix app talks to the Rust sidecar over HTTP. We need worktree-isolated dev because our team works on multiple features in parallel and the port conflicts are killing us. Help set this up.",
- "assertions": [
- "worktree-env.sh offsets all 5 ports (4000, 8080, 5432, 8123, 9000)",
- "init-worktree-dev.sh handles both Elixir and Rust service configuration",
- "ensure-worktree-coherence.sh validates Phoenix-to-Rust-sidecar URL uses correct computed port",
- "start-headless.sh starts services in correct dependency order (DBs, then Rust sidecar, then Phoenix)",
- "Interactive mode uses mix phx.server for Phoenix and cargo watch for Rust",
- "Docker compose handles both Postgres and ClickHouse with env var port substitution",
- "CLAUDE.md worktree section is included"
- ]
- },
- {
- "eval_id": 6,
- "eval_name": "django-go-grpc-nats",
- "prompt": "Our project has a Django monolith (port 8000) that talks to a Go gRPC microservice (port 50051) for real-time data processing. We use Redis on 6379 for caching/sessions and NATS on 4222 (client) and 8222 (monitoring) for event streaming. The Django app calls the Go service via gRPC, and the Go service publishes events to NATS that Django consumes. I need worktree-isolated local dev — we have 4 developers using worktrees and constantly stepping on each other's ports.",
- "assertions": [
- "worktree-env.sh offsets all 5 ports (8000, 50051, 6379, 4222, 8222)",
- "init-worktree-dev.sh generates gRPC service address with computed port for Django to connect to",
- "ensure-worktree-coherence.sh validates gRPC address and NATS URL use correct computed ports",
- "start-headless.sh includes health checks for the gRPC service (not just HTTP services)",
- "Interactive mode uses appropriate dev tools (Django runserver, Go with air/gow)",
- "NATS connection URLs in env files use computed port (not hardcoded 4222)",
- "CLAUDE.md worktree section is included"
- ]
- }
-]
diff --git a/.agents/skills/ui-ux-pro-max/SKILL.md b/.agents/skills/ui-ux-pro-max/SKILL.md
deleted file mode 100644
index a64d6c2..0000000
--- a/.agents/skills/ui-ux-pro-max/SKILL.md
+++ /dev/null
@@ -1,659 +0,0 @@
----
-name: ui-ux-pro-max
-description: "UI/UX design intelligence for web and mobile. Includes 50+ styles, 161 color palettes, 57 font pairings, 161 product types, 99 UX guidelines, and 25 chart types across 10 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind, shadcn/ui, and HTML/CSS). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, and check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, and mobile app. Elements: button, modal, navbar, sidebar, card, table, form, and chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, and flat design. Topics: color systems, accessibility, animation, layout, typography, font pairing, spacing, interaction states, shadow, and gradient. Integrations: shadcn/ui MCP for component search and examples."
----
-
-# UI/UX Pro Max - Design Intelligence
-
-Comprehensive design guide for web and mobile applications. Contains 50+ styles, 161 color palettes, 57 font pairings, 161 product types with reasoning rules, 99 UX guidelines, and 25 chart types across 10 technology stacks. Searchable database with priority-based recommendations.
-
-## When to Apply
-
-This Skill should be used when the task involves **UI structure, visual design decisions, interaction patterns, or user experience quality control**.
-
-### Must Use
-
-This Skill must be invoked in the following situations:
-
-- Designing new pages (Landing Page, Dashboard, Admin, SaaS, Mobile App)
-- Creating or refactoring UI components (buttons, modals, forms, tables, charts, etc.)
-- Choosing color schemes, typography systems, spacing standards, or layout systems
-- Reviewing UI code for user experience, accessibility, or visual consistency
-- Implementing navigation structures, animations, or responsive behavior
-- Making product-level design decisions (style, information hierarchy, brand expression)
-- Improving perceived quality, clarity, or usability of interfaces
-
-### Recommended
-
-This Skill is recommended in the following situations:
-
-- UI looks "not professional enough" but the reason is unclear
-- Receiving feedback on usability or experience
-- Pre-launch UI quality optimization
-- Aligning cross-platform design (Web / iOS / Android)
-- Building design systems or reusable component libraries
-
-### Skip
-
-This Skill is not needed in the following situations:
-
-- Pure backend logic development
-- Only involving API or database design
-- Performance optimization unrelated to the interface
-- Infrastructure or DevOps work
-- Non-visual scripts or automation tasks
-
-**Decision criteria**: If the task will change how a feature **looks, feels, moves, or is interacted with**, this Skill should be used.
-
-## Rule Categories by Priority
-
-*For human/AI reference: follow priority 1→10 to decide which rule category to focus on first; use `--domain ` to query details when needed. Scripts do not read this table.*
-
-| Priority | Category | Impact | Domain | Key Checks (Must Have) | Anti-Patterns (Avoid) |
-|----------|----------|--------|--------|------------------------|------------------------|
-| 1 | Accessibility | CRITICAL | `ux` | Contrast 4.5:1, Alt text, Keyboard nav, Aria-labels | Removing focus rings, Icon-only buttons without labels |
-| 2 | Touch & Interaction | CRITICAL | `ux` | Min size 44×44px, 8px+ spacing, Loading feedback | Reliance on hover only, Instant state changes (0ms) |
-| 3 | Performance | HIGH | `ux` | WebP/AVIF, Lazy loading, Reserve space (CLS < 0.1) | Layout thrashing, Cumulative Layout Shift |
-| 4 | Style Selection | HIGH | `style`, `product` | Match product type, Consistency, SVG icons (no emoji) | Mixing flat & skeuomorphic randomly, Emoji as icons |
-| 5 | Layout & Responsive | HIGH | `ux` | Mobile-first breakpoints, Viewport meta, No horizontal scroll | Horizontal scroll, Fixed px container widths, Disable zoom |
-| 6 | Typography & Color | MEDIUM | `typography`, `color` | Base 16px, Line-height 1.5, Semantic color tokens | Text < 12px body, Gray-on-gray, Raw hex in components |
-| 7 | Animation | MEDIUM | `ux` | Duration 150–300ms, Motion conveys meaning, Spatial continuity | Decorative-only animation, Animating width/height, No reduced-motion |
-| 8 | Forms & Feedback | MEDIUM | `ux` | Visible labels, Error near field, Helper text, Progressive disclosure | Placeholder-only label, Errors only at top, Overwhelm upfront |
-| 9 | Navigation Patterns | HIGH | `ux` | Predictable back, Bottom nav ≤5, Deep linking | Overloaded nav, Broken back behavior, No deep links |
-| 10 | Charts & Data | LOW | `chart` | Legends, Tooltips, Accessible colors | Relying on color alone to convey meaning |
-
-## Quick Reference
-
-### 1. Accessibility (CRITICAL)
-
-- `color-contrast` - Minimum 4.5:1 ratio for normal text (large text 3:1); Material Design
-- `focus-states` - Visible focus rings on interactive elements (2–4px; Apple HIG, MD)
-- `alt-text` - Descriptive alt text for meaningful images
-- `aria-labels` - aria-label for icon-only buttons; accessibilityLabel in native (Apple HIG)
-- `keyboard-nav` - Tab order matches visual order; full keyboard support (Apple HIG)
-- `form-labels` - Use label with for attribute
-- `skip-links` - Skip to main content for keyboard users
-- `heading-hierarchy` - Sequential h1→h6, no level skip
-- `color-not-only` - Don't convey info by color alone (add icon/text)
-- `dynamic-type` - Support system text scaling; avoid truncation as text grows (Apple Dynamic Type, MD)
-- `reduced-motion` - Respect prefers-reduced-motion; reduce/disable animations when requested (Apple Reduced Motion API, MD)
-- `voiceover-sr` - Meaningful accessibilityLabel/accessibilityHint; logical reading order for VoiceOver/screen readers (Apple HIG, MD)
-- `escape-routes` - Provide cancel/back in modals and multi-step flows (Apple HIG)
-- `keyboard-shortcuts` - Preserve system and a11y shortcuts; offer keyboard alternatives for drag-and-drop (Apple HIG)
-
-### 2. Touch & Interaction (CRITICAL)
-
-- `touch-target-size` - Min 44×44pt (Apple) / 48×48dp (Material); extend hit area beyond visual bounds if needed
-- `touch-spacing` - Minimum 8px/8dp gap between touch targets (Apple HIG, MD)
-- `hover-vs-tap` - Use click/tap for primary interactions; don't rely on hover alone
-- `loading-buttons` - Disable button during async operations; show spinner or progress
-- `error-feedback` - Clear error messages near problem
-- `cursor-pointer` - Add cursor-pointer to clickable elements (Web)
-- `gesture-conflicts` - Avoid horizontal swipe on main content; prefer vertical scroll
-- `tap-delay` - Use touch-action: manipulation to reduce 300ms delay (Web)
-- `standard-gestures` - Use platform standard gestures consistently; don't redefine (e.g. swipe-back, pinch-zoom) (Apple HIG)
-- `system-gestures` - Don't block system gestures (Control Center, back swipe, etc.) (Apple HIG)
-- `press-feedback` - Visual feedback on press (ripple/highlight; MD state layers)
-- `haptic-feedback` - Use haptic for confirmations and important actions; avoid overuse (Apple HIG)
-- `gesture-alternative` - Don't rely on gesture-only interactions; always provide visible controls for critical actions
-- `safe-area-awareness` - Keep primary touch targets away from notch, Dynamic Island, gesture bar and screen edges
-- `no-precision-required` - Avoid requiring pixel-perfect taps on small icons or thin edges
-- `swipe-clarity` - Swipe actions must show clear affordance or hint (chevron, label, tutorial)
-- `drag-threshold` - Use a movement threshold before starting drag to avoid accidental drags
-
-### 3. Performance (HIGH)
-
-- `image-optimization` - Use WebP/AVIF, responsive images (srcset/sizes), lazy load non-critical assets
-- `image-dimension` - Declare width/height or use aspect-ratio to prevent layout shift (Core Web Vitals: CLS)
-- `font-loading` - Use font-display: swap/optional to avoid invisible text (FOIT); reserve space to reduce layout shift (MD)
-- `font-preload` - Preload only critical fonts; avoid overusing preload on every variant
-- `critical-css` - Prioritize above-the-fold CSS (inline critical CSS or early-loaded stylesheet)
-- `lazy-loading` - Lazy load non-hero components via dynamic import / route-level splitting
-- `bundle-splitting` - Split code by route/feature (React Suspense / Next.js dynamic) to reduce initial load and TTI
-- `third-party-scripts` - Load third-party scripts async/defer; audit and remove unnecessary ones (MD)
-- `reduce-reflows` - Avoid frequent layout reads/writes; batch DOM reads then writes
-- `content-jumping` - Reserve space for async content to avoid layout jumps (Core Web Vitals: CLS)
-- `lazy-load-below-fold` - Use loading="lazy" for below-the-fold images and heavy media
-- `virtualize-lists` - Virtualize lists with 50+ items to improve memory efficiency and scroll performance
-- `main-thread-budget` - Keep per-frame work under ~16ms for 60fps; move heavy tasks off main thread (HIG, MD)
-- `progressive-loading` - Use skeleton screens / shimmer instead of long blocking spinners for >1s operations (Apple HIG)
-- `input-latency` - Keep input latency under ~100ms for taps/scrolls (Material responsiveness standard)
-- `tap-feedback-speed` - Provide visual feedback within 100ms of tap (Apple HIG)
-- `debounce-throttle` - Use debounce/throttle for high-frequency events (scroll, resize, input)
-- `offline-support` - Provide offline state messaging and basic fallback (PWA / mobile)
-- `network-fallback` - Offer degraded modes for slow networks (lower-res images, fewer animations)
-
-### 4. Style Selection (HIGH)
-
-- `style-match` - Match style to product type (use `--design-system` for recommendations)
-- `consistency` - Use same style across all pages
-- `no-emoji-icons` - Use SVG icons (Heroicons, Lucide), not emojis
-- `color-palette-from-product` - Choose palette from product/industry (search `--domain color`)
-- `effects-match-style` - Shadows, blur, radius aligned with chosen style (glass / flat / clay etc.)
-- `platform-adaptive` - Respect platform idioms (iOS HIG vs Material): navigation, controls, typography, motion
-- `state-clarity` - Make hover/pressed/disabled states visually distinct while staying on-style (Material state layers)
-- `elevation-consistent` - Use a consistent elevation/shadow scale for cards, sheets, modals; avoid random shadow values
-- `dark-mode-pairing` - Design light/dark variants together to keep brand, contrast, and style consistent
-- `icon-style-consistent` - Use one icon set/visual language (stroke width, corner radius) across the product
-- `system-controls` - Prefer native/system controls over fully custom ones; only customize when branding requires it (Apple HIG)
-- `blur-purpose` - Use blur to indicate background dismissal (modals, sheets), not as decoration (Apple HIG)
-- `primary-action` - Each screen should have only one primary CTA; secondary actions visually subordinate (Apple HIG)
-
-### 5. Layout & Responsive (HIGH)
-
-- `viewport-meta` - width=device-width initial-scale=1 (never disable zoom)
-- `mobile-first` - Design mobile-first, then scale up to tablet and desktop
-- `breakpoint-consistency` - Use systematic breakpoints (e.g. 375 / 768 / 1024 / 1440)
-- `readable-font-size` - Minimum 16px body text on mobile (avoids iOS auto-zoom)
-- `line-length-control` - Mobile 35–60 chars per line; desktop 60–75 chars
-- `horizontal-scroll` - No horizontal scroll on mobile; ensure content fits viewport width
-- `spacing-scale` - Use 4pt/8dp incremental spacing system (Material Design)
-- `touch-density` - Keep component spacing comfortable for touch: not cramped, not causing mis-taps
-- `container-width` - Consistent max-width on desktop (max-w-6xl / 7xl)
-- `z-index-management` - Define layered z-index scale (e.g. 0 / 10 / 20 / 40 / 100 / 1000)
-- `fixed-element-offset` - Fixed navbar/bottom bar must reserve safe padding for underlying content
-- `scroll-behavior` - Avoid nested scroll regions that interfere with the main scroll experience
-- `viewport-units` - Prefer min-h-dvh over 100vh on mobile
-- `orientation-support` - Keep layout readable and operable in landscape mode
-- `content-priority` - Show core content first on mobile; fold or hide secondary content
-- `visual-hierarchy` - Establish hierarchy via size, spacing, contrast — not color alone
-
-### 6. Typography & Color (MEDIUM)
-
-- `line-height` - Use 1.5-1.75 for body text
-- `line-length` - Limit to 65-75 characters per line
-- `font-pairing` - Match heading/body font personalities
-- `font-scale` - Consistent type scale (e.g. 12 14 16 18 24 32)
-- `contrast-readability` - Darker text on light backgrounds (e.g. slate-900 on white)
-- `text-styles-system` - Use platform type system: iOS 11 Dynamic Type styles / Material 5 type roles (display, headline, title, body, label) (HIG, MD)
-- `weight-hierarchy` - Use font-weight to reinforce hierarchy: Bold headings (600–700), Regular body (400), Medium labels (500) (MD)
-- `color-semantic` - Define semantic color tokens (primary, secondary, error, surface, on-surface) not raw hex in components (Material color system)
-- `color-dark-mode` - Dark mode uses desaturated / lighter tonal variants, not inverted colors; test contrast separately (HIG, MD)
-- `color-accessible-pairs` - Foreground/background pairs must meet 4.5:1 (AA) or 7:1 (AAA); use tools to verify (WCAG, MD)
-- `color-not-decorative-only` - Functional color (error red, success green) must include icon/text; avoid color-only meaning (HIG, MD)
-- `truncation-strategy` - Prefer wrapping over truncation; when truncating use ellipsis and provide full text via tooltip/expand (Apple HIG)
-- `letter-spacing` - Respect default letter-spacing per platform; avoid tight tracking on body text (HIG, MD)
-- `number-tabular` - Use tabular/monospaced figures for data columns, prices, and timers to prevent layout shift
-- `whitespace-balance` - Use whitespace intentionally to group related items and separate sections; avoid visual clutter (Apple HIG)
-
-### 7. Animation (MEDIUM)
-
-- `duration-timing` - Use 150–300ms for micro-interactions; complex transitions ≤400ms; avoid >500ms (MD)
-- `transform-performance` - Use transform/opacity only; avoid animating width/height/top/left
-- `loading-states` - Show skeleton or progress indicator when loading exceeds 300ms
-- `excessive-motion` - Animate 1-2 key elements per view max
-- `easing` - Use ease-out for entering, ease-in for exiting; avoid linear for UI transitions
-- `motion-meaning` - Every animation must express a cause-effect relationship, not just be decorative (Apple HIG)
-- `state-transition` - State changes (hover / active / expanded / collapsed / modal) should animate smoothly, not snap
-- `continuity` - Page/screen transitions should maintain spatial continuity (shared element, directional slide) (Apple HIG)
-- `parallax-subtle` - Use parallax sparingly; must respect reduced-motion and not cause disorientation (Apple HIG)
-- `spring-physics` - Prefer spring/physics-based curves over linear or cubic-bezier for natural feel (Apple HIG fluid animations)
-- `exit-faster-than-enter` - Exit animations shorter than enter (~60–70% of enter duration) to feel responsive (MD motion)
-- `stagger-sequence` - Stagger list/grid item entrance by 30–50ms per item; avoid all-at-once or too-slow reveals (MD)
-- `shared-element-transition` - Use shared element / hero transitions for visual continuity between screens (MD, HIG)
-- `interruptible` - Animations must be interruptible; user tap/gesture cancels in-progress animation immediately (Apple HIG)
-- `no-blocking-animation` - Never block user input during an animation; UI must stay interactive (Apple HIG)
-- `fade-crossfade` - Use crossfade for content replacement within the same container (MD)
-- `scale-feedback` - Subtle scale (0.95–1.05) on press for tappable cards/buttons; restore on release (HIG, MD)
-- `gesture-feedback` - Drag, swipe, and pinch must provide real-time visual response tracking the finger (MD Motion)
-- `hierarchy-motion` - Use translate/scale direction to express hierarchy: enter from below = deeper, exit upward = back (MD)
-- `motion-consistency` - Unify duration/easing tokens globally; all animations share the same rhythm and feel
-- `opacity-threshold` - Fading elements should not linger below opacity 0.2; either fade fully or remain visible
-- `modal-motion` - Modals/sheets should animate from their trigger source (scale+fade or slide-in) for spatial context (HIG, MD)
-- `navigation-direction` - Forward navigation animates left/up; backward animates right/down — keep direction logically consistent (HIG)
-- `layout-shift-avoid` - Animations must not cause layout reflow or CLS; use transform for position changes
-
-### 8. Forms & Feedback (MEDIUM)
-
-- `input-labels` - Visible label per input (not placeholder-only)
-- `error-placement` - Show error below the related field
-- `submit-feedback` - Loading then success/error state on submit
-- `required-indicators` - Mark required fields (e.g. asterisk)
-- `empty-states` - Helpful message and action when no content
-- `toast-dismiss` - Auto-dismiss toasts in 3-5s
-- `confirmation-dialogs` - Confirm before destructive actions
-- `input-helper-text` - Provide persistent helper text below complex inputs, not just placeholder (Material Design)
-- `disabled-states` - Disabled elements use reduced opacity (0.38–0.5) + cursor change + semantic attribute (MD)
-- `progressive-disclosure` - Reveal complex options progressively; don't overwhelm users upfront (Apple HIG)
-- `inline-validation` - Validate on blur (not keystroke); show error only after user finishes input (MD)
-- `input-type-keyboard` - Use semantic input types (email, tel, number) to trigger the correct mobile keyboard (HIG, MD)
-- `password-toggle` - Provide show/hide toggle for password fields (MD)
-- `autofill-support` - Use autocomplete / textContentType attributes so the system can autofill (HIG, MD)
-- `undo-support` - Allow undo for destructive or bulk actions (e.g. "Undo delete" toast) (Apple HIG)
-- `success-feedback` - Confirm completed actions with brief visual feedback (checkmark, toast, color flash) (MD)
-- `error-recovery` - Error messages must include a clear recovery path (retry, edit, help link) (HIG, MD)
-- `multi-step-progress` - Multi-step flows show step indicator or progress bar; allow back navigation (MD)
-- `form-autosave` - Long forms should auto-save drafts to prevent data loss on accidental dismissal (Apple HIG)
-- `sheet-dismiss-confirm` - Confirm before dismissing a sheet/modal with unsaved changes (Apple HIG)
-- `error-clarity` - Error messages must state cause + how to fix (not just "Invalid input") (HIG, MD)
-- `field-grouping` - Group related fields logically (fieldset/legend or visual grouping) (MD)
-- `read-only-distinction` - Read-only state should be visually and semantically different from disabled (MD)
-- `focus-management` - After submit error, auto-focus the first invalid field (WCAG, MD)
-- `error-summary` - For multiple errors, show summary at top with anchor links to each field (WCAG)
-- `touch-friendly-input` - Mobile input height ≥44px to meet touch target requirements (Apple HIG)
-- `destructive-emphasis` - Destructive actions use semantic danger color (red) and are visually separated from primary actions (HIG, MD)
-- `toast-accessibility` - Toasts must not steal focus; use aria-live="polite" for screen reader announcement (WCAG)
-- `aria-live-errors` - Form errors use aria-live region or role="alert" to notify screen readers (WCAG)
-- `contrast-feedback` - Error and success state colors must meet 4.5:1 contrast ratio (WCAG, MD)
-- `timeout-feedback` - Request timeout must show clear feedback with retry option (MD)
-
-### 9. Navigation Patterns (HIGH)
-
-- `bottom-nav-limit` - Bottom navigation max 5 items; use labels with icons (Material Design)
-- `drawer-usage` - Use drawer/sidebar for secondary navigation, not primary actions (Material Design)
-- `back-behavior` - Back navigation must be predictable and consistent; preserve scroll/state (Apple HIG, MD)
-- `deep-linking` - All key screens must be reachable via deep link / URL for sharing and notifications (Apple HIG, MD)
-- `tab-bar-ios` - iOS: use bottom Tab Bar for top-level navigation (Apple HIG)
-- `top-app-bar-android` - Android: use Top App Bar with navigation icon for primary structure (Material Design)
-- `nav-label-icon` - Navigation items must have both icon and text label; icon-only nav harms discoverability (MD)
-- `nav-state-active` - Current location must be visually highlighted (color, weight, indicator) in navigation (HIG, MD)
-- `nav-hierarchy` - Primary nav (tabs/bottom bar) vs secondary nav (drawer/settings) must be clearly separated (MD)
-- `modal-escape` - Modals and sheets must offer a clear close/dismiss affordance; swipe-down to dismiss on mobile (Apple HIG)
-- `search-accessible` - Search must be easily reachable (top bar or tab); provide recent/suggested queries (MD)
-- `breadcrumb-web` - Web: use breadcrumbs for 3+ level deep hierarchies to aid orientation (MD)
-- `state-preservation` - Navigating back must restore previous scroll position, filter state, and input (HIG, MD)
-- `gesture-nav-support` - Support system gesture navigation (iOS swipe-back, Android predictive back) without conflict (HIG, MD)
-- `tab-badge` - Use badges on nav items sparingly to indicate unread/pending; clear after user visits (HIG, MD)
-- `overflow-menu` - When actions exceed available space, use overflow/more menu instead of cramming (MD)
-- `bottom-nav-top-level` - Bottom nav is for top-level screens only; never nest sub-navigation inside it (MD)
-- `adaptive-navigation` - Large screens (≥1024px) prefer sidebar; small screens use bottom/top nav (Material Adaptive)
-- `back-stack-integrity` - Never silently reset the navigation stack or unexpectedly jump to home (HIG, MD)
-- `navigation-consistency` - Navigation placement must stay the same across all pages; don't change by page type
-- `avoid-mixed-patterns` - Don't mix Tab + Sidebar + Bottom Nav at the same hierarchy level
-- `modal-vs-navigation` - Modals must not be used for primary navigation flows; they break the user's path (HIG)
-- `focus-on-route-change` - After page transition, move focus to main content region for screen reader users (WCAG)
-- `persistent-nav` - Core navigation must remain reachable from deep pages; don't hide it entirely in sub-flows (HIG, MD)
-- `destructive-nav-separation` - Dangerous actions (delete account, logout) must be visually and spatially separated from normal nav items (HIG, MD)
-- `empty-nav-state` - When a nav destination is unavailable, explain why instead of silently hiding it (MD)
-
-### 10. Charts & Data (LOW)
-
-- `chart-type` - Match chart type to data type (trend → line, comparison → bar, proportion → pie/donut)
-- `color-guidance` - Use accessible color palettes; avoid red/green only pairs for colorblind users (WCAG, MD)
-- `data-table` - Provide table alternative for accessibility; charts alone are not screen-reader friendly (WCAG)
-- `pattern-texture` - Supplement color with patterns, textures, or shapes so data is distinguishable without color (WCAG, MD)
-- `legend-visible` - Always show legend; position near the chart, not detached below a scroll fold (MD)
-- `tooltip-on-interact` - Provide tooltips/data labels on hover (Web) or tap (mobile) showing exact values (HIG, MD)
-- `axis-labels` - Label axes with units and readable scale; avoid truncated or rotated labels on mobile
-- `responsive-chart` - Charts must reflow or simplify on small screens (e.g. horizontal bar instead of vertical, fewer ticks)
-- `empty-data-state` - Show meaningful empty state when no data exists ("No data yet" + guidance), not a blank chart (MD)
-- `loading-chart` - Use skeleton or shimmer placeholder while chart data loads; don't show an empty axis frame
-- `animation-optional` - Chart entrance animations must respect prefers-reduced-motion; data should be readable immediately (HIG)
-- `large-dataset` - For 1000+ data points, aggregate or sample; provide drill-down for detail instead of rendering all (MD)
-- `number-formatting` - Use locale-aware formatting for numbers, dates, currencies on axes and labels (HIG, MD)
-- `touch-target-chart` - Interactive chart elements (points, segments) must have ≥44pt tap area or expand on touch (Apple HIG)
-- `no-pie-overuse` - Avoid pie/donut for >5 categories; switch to bar chart for clarity
-- `contrast-data` - Data lines/bars vs background ≥3:1; data text labels ≥4.5:1 (WCAG)
-- `legend-interactive` - Legends should be clickable to toggle series visibility (MD)
-- `direct-labeling` - For small datasets, label values directly on the chart to reduce eye travel
-- `tooltip-keyboard` - Tooltip content must be keyboard-reachable and not rely on hover alone (WCAG)
-- `sortable-table` - Data tables must support sorting with aria-sort indicating current sort state (WCAG)
-- `axis-readability` - Axis ticks must not be cramped; maintain readable spacing, auto-skip on small screens
-- `data-density` - Limit information density per chart to avoid cognitive overload; split into multiple charts if needed
-- `trend-emphasis` - Emphasize data trends over decoration; avoid heavy gradients/shadows that obscure the data
-- `gridline-subtle` - Grid lines should be low-contrast (e.g. gray-200) so they don't compete with data
-- `focusable-elements` - Interactive chart elements (points, bars, slices) must be keyboard-navigable (WCAG)
-- `screen-reader-summary` - Provide a text summary or aria-label describing the chart's key insight for screen readers (WCAG)
-- `error-state-chart` - Data load failure must show error message with retry action, not a broken/empty chart
-- `export-option` - For data-heavy products, offer CSV/image export of chart data
-- `drill-down-consistency` - Drill-down interactions must maintain a clear back-path and hierarchy breadcrumb
-- `time-scale-clarity` - Time series charts must clearly label time granularity (day/week/month) and allow switching
-
-## How to Use
-
-Search specific domains using the CLI tool below.
-
----
-
-## Prerequisites
-
-Check if Python is installed:
-
-```bash
-python3 --version || python --version
-```
-
-If Python is not installed, install it based on user's OS:
-
-**macOS:**
-```bash
-brew install python3
-```
-
-**Ubuntu/Debian:**
-```bash
-sudo apt update && sudo apt install python3
-```
-
-**Windows:**
-```powershell
-winget install Python.Python.3.12
-```
-
----
-
-## How to Use This Skill
-
-Use this skill when the user requests any of the following:
-
-| Scenario | Trigger Examples | Start From |
-|----------|-----------------|------------|
-| **New project / page** | "Build a landing page", "Build a dashboard" | Step 1 → Step 2 (design system) |
-| **New component** | "Create a pricing card", "Add a modal" | Step 3 (domain search: style, ux) |
-| **Choose style / color / font** | "What style fits a fintech app?", "Recommend a color palette" | Step 2 (design system) |
-| **Review existing UI** | "Review this page for UX issues", "Check accessibility" | Quick Reference checklist above |
-| **Fix a UI bug** | "Button hover is broken", "Layout shifts on load" | Quick Reference → relevant section |
-| **Improve / optimize** | "Make this faster", "Improve mobile experience" | Step 3 (domain search: ux, react) |
-| **Implement dark mode** | "Add dark mode support" | Step 3 (domain: style "dark mode") |
-| **Add charts / data viz** | "Add an analytics dashboard chart" | Step 3 (domain: chart) |
-| **Stack best practices** | "React performance tips"、"SwiftUI navigation" | Step 4 (stack search) |
-
-Follow this workflow:
-
-### Step 1: Analyze User Requirements
-
-Extract key information from user request:
-- **Product type**: Entertainment (social, video, music, gaming), Tool (scanner, editor, converter), Productivity (task manager, notes, calendar), or hybrid
-- **Target audience**: C-end consumer users; consider age group, usage context (commute, leisure, work)
-- **Style keywords**: playful, vibrant, minimal, dark mode, content-first, immersive, etc.
-- **Stack**: React Native (this project's only tech stack)
-
-### Step 2: Generate Design System (REQUIRED)
-
-**Always start with `--design-system`** to get comprehensive recommendations with reasoning:
-
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "" --design-system [-p "Project Name"]
-```
-
-This command:
-1. Searches domains in parallel (product, style, color, landing, typography)
-2. Applies reasoning rules from `ui-reasoning.csv` to select best matches
-3. Returns complete design system: pattern, style, colors, typography, effects
-4. Includes anti-patterns to avoid
-
-**Example:**
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "beauty spa wellness service" --design-system -p "Serenity Spa"
-```
-
-### Step 2b: Persist Design System (Master + Overrides Pattern)
-
-To save the design system for **hierarchical retrieval across sessions**, add `--persist`:
-
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "" --design-system --persist -p "Project Name"
-```
-
-This creates:
-- `design-system/MASTER.md` — Global Source of Truth with all design rules
-- `design-system/pages/` — Folder for page-specific overrides
-
-**With page-specific override:**
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "" --design-system --persist -p "Project Name" --page "dashboard"
-```
-
-This also creates:
-- `design-system/pages/dashboard.md` — Page-specific deviations from Master
-
-**How hierarchical retrieval works:**
-1. When building a specific page (e.g., "Checkout"), first check `design-system/pages/checkout.md`
-2. If the page file exists, its rules **override** the Master file
-3. If not, use `design-system/MASTER.md` exclusively
-
-**Context-aware retrieval prompt:**
-```
-I am building the [Page Name] page. Please read design-system/MASTER.md.
-Also check if design-system/pages/[page-name].md exists.
-If the page file exists, prioritize its rules.
-If not, use the Master rules exclusively.
-Now, generate the code...
-```
-
-### Step 3: Supplement with Detailed Searches (as needed)
-
-After getting the design system, use domain searches to get additional details:
-
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "" --domain [-n ]
-```
-
-**When to use detailed searches:**
-
-| Need | Domain | Example |
-|------|--------|---------|
-| Product type patterns | `product` | `--domain product "entertainment social"` |
-| More style options | `style` | `--domain style "glassmorphism dark"` |
-| Color palettes | `color` | `--domain color "entertainment vibrant"` |
-| Font pairings | `typography` | `--domain typography "playful modern"` |
-| Chart recommendations | `chart` | `--domain chart "real-time dashboard"` |
-| UX best practices | `ux` | `--domain ux "animation accessibility"` |
-| Alternative fonts | `typography` | `--domain typography "elegant luxury"` |
-| Individual Google Fonts | `google-fonts` | `--domain google-fonts "sans serif popular variable"` |
-| Landing structure | `landing` | `--domain landing "hero social-proof"` |
-| React Native perf | `react` | `--domain react "rerender memo list"` |
-| App interface a11y | `web` | `--domain web "accessibilityLabel touch safe-areas"` |
-| AI prompt / CSS keywords | `prompt` | `--domain prompt "minimalism"` |
-
-### Step 4: Stack Guidelines (React Native)
-
-Get React Native implementation-specific best practices:
-
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "" --stack react-native
-```
-
----
-
-## Search Reference
-
-### Available Domains
-
-| Domain | Use For | Example Keywords |
-|--------|---------|------------------|
-| `product` | Product type recommendations | SaaS, e-commerce, portfolio, healthcare, beauty, service |
-| `style` | UI styles, colors, effects | glassmorphism, minimalism, dark mode, brutalism |
-| `typography` | Font pairings, Google Fonts | elegant, playful, professional, modern |
-| `color` | Color palettes by product type | saas, ecommerce, healthcare, beauty, fintech, service |
-| `landing` | Page structure, CTA strategies | hero, hero-centric, testimonial, pricing, social-proof |
-| `chart` | Chart types, library recommendations | trend, comparison, timeline, funnel, pie |
-| `ux` | Best practices, anti-patterns | animation, accessibility, z-index, loading |
-| `google-fonts` | Individual Google Fonts lookup | sans serif, monospace, japanese, variable font, popular |
-| `react` | React/Next.js performance | waterfall, bundle, suspense, memo, rerender, cache |
-| `web` | App interface guidelines (iOS/Android/React Native) | accessibilityLabel, touch targets, safe areas, Dynamic Type |
-| `prompt` | AI prompts, CSS keywords | (style name) |
-
-### Available Stacks
-
-| Stack | Focus |
-|-------|-------|
-| `react-native` | Components, Navigation, Lists |
-
----
-
-## Example Workflow
-
-**User request:** "Make an AI search homepage."
-
-### Step 1: Analyze Requirements
-- Product type: Tool (AI search engine)
-- Target audience: C-end users looking for fast, intelligent search
-- Style keywords: modern, minimal, content-first, dark mode
-- Stack: React Native
-
-### Step 2: Generate Design System (REQUIRED)
-
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "AI search tool modern minimal" --design-system -p "AI Search"
-```
-
-**Output:** Complete design system with pattern, style, colors, typography, effects, and anti-patterns.
-
-### Step 3: Supplement with Detailed Searches (as needed)
-
-```bash
-# Get style options for a modern tool product
-python3 skills/ui-ux-pro-max/scripts/search.py "minimalism dark mode" --domain style
-
-# Get UX best practices for search interaction and loading
-python3 skills/ui-ux-pro-max/scripts/search.py "search loading animation" --domain ux
-```
-
-### Step 4: Stack Guidelines
-
-```bash
-python3 skills/ui-ux-pro-max/scripts/search.py "list performance navigation" --stack react-native
-```
-
-**Then:** Synthesize design system + detailed searches and implement the design.
-
----
-
-## Output Formats
-
-The `--design-system` flag supports two output formats:
-
-```bash
-# ASCII box (default) - best for terminal display
-python3 skills/ui-ux-pro-max/scripts/search.py "fintech crypto" --design-system
-
-# Markdown - best for documentation
-python3 skills/ui-ux-pro-max/scripts/search.py "fintech crypto" --design-system -f markdown
-```
-
----
-
-## Tips for Better Results
-
-### Query Strategy
-
-- Use **multi-dimensional keywords** — combine product + industry + tone + density: `"entertainment social vibrant content-dense"` not just `"app"`
-- Try different keywords for the same need: `"playful neon"` → `"vibrant dark"` → `"content-first minimal"`
-- Use `--design-system` first for full recommendations, then `--domain` to deep-dive any dimension you're unsure about
-- Always add `--stack react-native` for implementation-specific guidance
-
-### Common Sticking Points
-
-| Problem | What to Do |
-|---------|------------|
-| Can't decide on style/color | Re-run `--design-system` with different keywords |
-| Dark mode contrast issues | Quick Reference §6: `color-dark-mode` + `color-accessible-pairs` |
-| Animations feel unnatural | Quick Reference §7: `spring-physics` + `easing` + `exit-faster-than-enter` |
-| Form UX is poor | Quick Reference §8: `inline-validation` + `error-clarity` + `focus-management` |
-| Navigation feels confusing | Quick Reference §9: `nav-hierarchy` + `bottom-nav-limit` + `back-behavior` |
-| Layout breaks on small screens | Quick Reference §5: `mobile-first` + `breakpoint-consistency` |
-| Performance / jank | Quick Reference §3: `virtualize-lists` + `main-thread-budget` + `debounce-throttle` |
-
-### Pre-Delivery Checklist
-
-- Run `--domain ux "animation accessibility z-index loading"` as a UX validation pass before implementation
-- Run through Quick Reference **§1–§3** (CRITICAL + HIGH) as a final review
-- Test on 375px (small phone) and landscape orientation
-- Verify behavior with **reduced-motion** enabled and **Dynamic Type** at largest size
-- Check dark mode contrast independently (don't assume light mode values work)
-- Confirm all touch targets ≥44pt and no content hidden behind safe areas
-
----
-
-## Common Rules for Professional UI
-
-These are frequently overlooked issues that make UI look unprofessional:
-Scope notice: The rules below are for App UI (iOS/Android/React Native/Flutter), not desktop-web interaction patterns.
-
-### Icons & Visual Elements
-
-| Rule | Standard | Avoid | Why It Matters |
-|------|----------|--------|----------------|
-| **No Emoji as Structural Icons** | Use vector-based icons (e.g., Lucide, react-native-vector-icons, @expo/vector-icons). | Using emojis (🎨 🚀 ⚙️) for navigation, settings, or system controls. | Emojis are font-dependent, inconsistent across platforms, and cannot be controlled via design tokens. |
-| **Vector-Only Assets** | Use SVG or platform vector icons that scale cleanly and support theming. | Raster PNG icons that blur or pixelate. | Ensures scalability, crisp rendering, and dark/light mode adaptability. |
-| **Stable Interaction States** | Use color, opacity, or elevation transitions for press states without changing layout bounds. | Layout-shifting transforms that move surrounding content or trigger visual jitter. | Prevents unstable interactions and preserves smooth motion/perceived quality on mobile. |
-| **Correct Brand Logos** | Use official brand assets and follow their usage guidelines (spacing, color, clear space). | Guessing logo paths, recoloring unofficially, or modifying proportions. | Prevents brand misuse and ensures legal/platform compliance. |
-| **Consistent Icon Sizing** | Define icon sizes as design tokens (e.g., icon-sm, icon-md = 24pt, icon-lg). | Mixing arbitrary values like 20pt / 24pt / 28pt randomly. | Maintains rhythm and visual hierarchy across the interface. |
-| **Stroke Consistency** | Use a consistent stroke width within the same visual layer (e.g., 1.5px or 2px). | Mixing thick and thin stroke styles arbitrarily. | Inconsistent strokes reduce perceived polish and cohesion. |
-| **Filled vs Outline Discipline** | Use one icon style per hierarchy level. | Mixing filled and outline icons at the same hierarchy level. | Maintains semantic clarity and stylistic coherence. |
-| **Touch Target Minimum** | Minimum 44×44pt interactive area (use hitSlop if icon is smaller). | Small icons without expanded tap area. | Meets accessibility and platform usability standards. |
-| **Icon Alignment** | Align icons to text baseline and maintain consistent padding. | Misaligned icons or inconsistent spacing around them. | Prevents subtle visual imbalance that reduces perceived quality. |
-| **Icon Contrast** | Follow WCAG contrast standards: 4.5:1 for small elements, 3:1 minimum for larger UI glyphs. | Low-contrast icons that blend into the background. | Ensures accessibility in both light and dark modes. |
-
-
-### Interaction (App)
-
-| Rule | Do | Don't |
-|------|----|----- |
-| **Tap feedback** | Provide clear pressed feedback (ripple/opacity/elevation) within 80-150ms | No visual response on tap |
-| **Animation timing** | Keep micro-interactions around 150-300ms with platform-native easing | Instant transitions or slow animations (>500ms) |
-| **Accessibility focus** | Ensure screen reader focus order matches visual order and labels are descriptive | Unlabeled controls or confusing focus traversal |
-| **Disabled state clarity** | Use disabled semantics (`disabled`/native disabled props), reduced emphasis, and no tap action | Controls that look tappable but do nothing |
-| **Touch target minimum** | Keep tap areas >=44x44pt (iOS) or >=48x48dp (Android), expand hit area when icon is smaller | Tiny tap targets or icon-only hit areas without padding |
-| **Gesture conflict prevention** | Keep one primary gesture per region and avoid nested tap/drag conflicts | Overlapping gestures causing accidental actions |
-| **Semantic native controls** | Prefer native interactive primitives (`Button`, `Pressable`, platform equivalents) with proper accessibility roles | Generic containers used as primary controls without semantics |
-
-### Light/Dark Mode Contrast
-
-| Rule | Do | Don't |
-|------|----|----- |
-| **Surface readability (light)** | Keep cards/surfaces clearly separated from background with sufficient opacity/elevation | Overly transparent surfaces that blur hierarchy |
-| **Text contrast (light)** | Maintain body text contrast >=4.5:1 against light surfaces | Low-contrast gray body text |
-| **Text contrast (dark)** | Maintain primary text contrast >=4.5:1 and secondary text >=3:1 on dark surfaces | Dark mode text that blends into background |
-| **Border and divider visibility** | Ensure separators are visible in both themes (not just light mode) | Theme-specific borders disappearing in one mode |
-| **State contrast parity** | Keep pressed/focused/disabled states equally distinguishable in light and dark themes | Defining interaction states for one theme only |
-| **Token-driven theming** | Use semantic color tokens mapped per theme across app surfaces/text/icons | Hardcoded per-screen hex values |
-| **Scrim and modal legibility** | Use a modal scrim strong enough to isolate foreground content (typically 40-60% black) | Weak scrim that leaves background visually competing |
-
-### Layout & Spacing
-
-| Rule | Do | Don't |
-|------|----|----- |
-| **Safe-area compliance** | Respect top/bottom safe areas for all fixed headers, tab bars, and CTA bars | Placing fixed UI under notch, status bar, or gesture area |
-| **System bar clearance** | Add spacing for status/navigation bars and gesture home indicator | Let tappable content collide with OS chrome |
-| **Consistent content width** | Keep predictable content width per device class (phone/tablet) | Mixing arbitrary widths between screens |
-| **8dp spacing rhythm** | Use a consistent 4/8dp spacing system for padding/gaps/section spacing | Random spacing increments with no rhythm |
-| **Readable text measure** | Keep long-form text readable on large devices (avoid edge-to-edge paragraphs on tablets) | Full-width long text that hurts readability |
-| **Section spacing hierarchy** | Define clear vertical rhythm tiers (e.g., 16/24/32/48) by hierarchy | Similar UI levels with inconsistent spacing |
-| **Adaptive gutters by breakpoint** | Increase horizontal insets on larger widths and in landscape | Same narrow gutter on all device sizes/orientations |
-| **Scroll and fixed element coexistence** | Add bottom/top content insets so lists are not hidden behind fixed bars | Scroll content obscured by sticky headers/footers |
-
----
-
-## Pre-Delivery Checklist
-
-Before delivering UI code, verify these items:
-Scope notice: This checklist is for App UI (iOS/Android/React Native/Flutter).
-
-### Visual Quality
-- [ ] No emojis used as icons (use SVG instead)
-- [ ] All icons come from a consistent icon family and style
-- [ ] Official brand assets are used with correct proportions and clear space
-- [ ] Pressed-state visuals do not shift layout bounds or cause jitter
-- [ ] Semantic theme tokens are used consistently (no ad-hoc per-screen hardcoded colors)
-
-### Interaction
-- [ ] All tappable elements provide clear pressed feedback (ripple/opacity/elevation)
-- [ ] Touch targets meet minimum size (>=44x44pt iOS, >=48x48dp Android)
-- [ ] Micro-interaction timing stays in the 150-300ms range with native-feeling easing
-- [ ] Disabled states are visually clear and non-interactive
-- [ ] Screen reader focus order matches visual order, and interactive labels are descriptive
-- [ ] Gesture regions avoid nested/conflicting interactions (tap/drag/back-swipe conflicts)
-
-### Light/Dark Mode
-- [ ] Primary text contrast >=4.5:1 in both light and dark mode
-- [ ] Secondary text contrast >=3:1 in both light and dark mode
-- [ ] Dividers/borders and interaction states are distinguishable in both modes
-- [ ] Modal/drawer scrim opacity is strong enough to preserve foreground legibility (typically 40-60% black)
-- [ ] Both themes are tested before delivery (not inferred from a single theme)
-
-### Layout
-- [ ] Safe areas are respected for headers, tab bars, and bottom CTA bars
-- [ ] Scroll content is not hidden behind fixed/sticky bars
-- [ ] Verified on small phone, large phone, and tablet (portrait + landscape)
-- [ ] Horizontal insets/gutters adapt correctly by device size and orientation
-- [ ] 4/8dp spacing rhythm is maintained across component, section, and page levels
-- [ ] Long-form text measure remains readable on larger devices (no edge-to-edge paragraphs)
-
-### Accessibility
-- [ ] All meaningful images/icons have accessibility labels
-- [ ] Form fields have labels, hints, and clear error messages
-- [ ] Color is not the only indicator
-- [ ] Reduced motion and dynamic text size are supported without layout breakage
-- [ ] Accessibility traits/roles/states (selected, disabled, expanded) are announced correctly
\ No newline at end of file
diff --git a/.agents/skills/ui-ux-pro-max/data/_sync_all.py b/.agents/skills/ui-ux-pro-max/data/_sync_all.py
deleted file mode 100644
index 37f7c3a..0000000
--- a/.agents/skills/ui-ux-pro-max/data/_sync_all.py
+++ /dev/null
@@ -1,414 +0,0 @@
-#!/usr/bin/env python3
-"""
-Sync colors.csv and ui-reasoning.csv with the updated products.csv (161 entries).
-- Remove deleted product types
-- Rename mismatched entries
-- Add new entries for missing product types
-- Keep colors.csv aligned 1:1 with products.csv
-- Renumber everything
-"""
-import csv, os, json
-
-BASE = os.path.dirname(os.path.abspath(__file__))
-
-# ─── Color derivation helpers ────────────────────────────────────────────────
-def h2r(h):
- h = h.lstrip("#")
- return tuple(int(h[i:i+2], 16) for i in (0, 2, 4))
-
-def r2h(r, g, b):
- return f"#{max(0,min(255,int(r))):02X}{max(0,min(255,int(g))):02X}{max(0,min(255,int(b))):02X}"
-
-def lum(h):
- r, g, b = [x/255.0 for x in h2r(h)]
- r, g, b = [(x/12.92 if x<=0.03928 else ((x+0.055)/1.055)**2.4) for x in (r, g, b)]
- return 0.2126*r + 0.7152*g + 0.0722*b
-
-def is_dark(bg):
- return lum(bg) < 0.18
-
-def on_color(bg):
- return "#FFFFFF" if lum(bg) < 0.4 else "#0F172A"
-
-def blend(a, b, f=0.15):
- ra, ga, ba = h2r(a)
- rb, gb, bb = h2r(b)
- return r2h(ra+(rb-ra)*f, ga+(gb-ga)*f, ba+(bb-ba)*f)
-
-def shift(h, n):
- r, g, b = h2r(h)
- return r2h(r+n, g+n, b+n)
-
-def derive_row(pt, pri, sec, acc, bg, notes=""):
- """Generate full 16-token color row from 4 base colors."""
- dark = is_dark(bg)
- fg = "#FFFFFF" if dark else "#0F172A"
- on_pri = on_color(pri)
- on_sec = on_color(sec)
- on_acc = on_color(acc)
- card = shift(bg, 10) if dark else "#FFFFFF"
- card_fg = "#FFFFFF" if dark else "#0F172A"
- muted = blend(bg, pri, 0.08) if dark else blend("#FFFFFF", pri, 0.06)
- muted_fg = "#94A3B8" if dark else "#64748B"
- border = f"rgba(255,255,255,0.08)" if dark else blend("#FFFFFF", pri, 0.12)
- destr = "#DC2626"
- on_destr = "#FFFFFF"
- ring = pri
- return [pt, pri, on_pri, sec, on_sec, acc, on_acc, bg, fg, card, card_fg, muted, muted_fg, border, destr, on_destr, ring, notes]
-
-# ─── Rename maps ─────────────────────────────────────────────────────────────
-COLOR_RENAMES = {
- "Quantum Computing": "Quantum Computing Interface",
- "Biohacking / Longevity": "Biohacking / Longevity App",
- "Autonomous Systems": "Autonomous Drone Fleet Manager",
- "Generative AI Art": "Generative Art Platform",
- "Spatial / Vision OS": "Spatial Computing OS / App",
- "Climate Tech": "Sustainable Energy / Climate Tech",
-}
-UI_RENAMES = {
- "Architecture/Interior": "Architecture / Interior",
- "Autonomous Drone Fleet": "Autonomous Drone Fleet Manager",
- "B2B SaaS Enterprise": "B2B Service",
- "Biohacking/Longevity App": "Biohacking / Longevity App",
- "Biotech/Life Sciences": "Biotech / Life Sciences",
- "Developer Tool/IDE": "Developer Tool / IDE",
- "Education": "Educational App",
- "Fintech (Banking)": "Fintech/Crypto",
- "Government/Public": "Government/Public Service",
- "Home Services": "Home Services (Plumber/Electrician)",
- "Micro-Credentials/Badges": "Micro-Credentials/Badges Platform",
- "Music/Entertainment": "Music Streaming",
- "Quantum Computing": "Quantum Computing Interface",
- "Real Estate": "Real Estate/Property",
- "Remote Work/Collaboration": "Remote Work/Collaboration Tool",
- "Restaurant/Food": "Restaurant/Food Service",
- "SaaS Dashboard": "Analytics Dashboard",
- "Space Tech/Aerospace": "Space Tech / Aerospace",
- "Spatial Computing OS": "Spatial Computing OS / App",
- "Startup Landing": "Micro SaaS",
- "Sustainable Energy/Climate": "Sustainable Energy / Climate Tech",
- "Travel/Tourism": "Travel/Tourism Agency",
- "Wellness/Mental Health": "Mental Health App",
-}
-
-REMOVE_TYPES = {
- "Service Landing Page", "Sustainability/ESG Platform",
- "Cleaning Service", "Coffee Shop",
- "Consulting Firm", "Conference/Webinar Platform",
-}
-
-# ─── New color definitions: (primary, secondary, accent, bg, notes) ──────────
-# Grouped by category for clarity. Each tuple generates a full 16-token row.
-NEW_COLORS = {
- # ── Old #97-#116 that never got colors ──
- "Todo & Task Manager": ("#2563EB","#3B82F6","#059669","#F8FAFC","Functional blue + progress green"),
- "Personal Finance Tracker": ("#1E40AF","#3B82F6","#059669","#0F172A","Trust blue + profit green on dark"),
- "Chat & Messaging App": ("#2563EB","#6366F1","#059669","#FFFFFF","Messenger blue + online green"),
- "Notes & Writing App": ("#78716C","#A8A29E","#D97706","#FFFBEB","Warm ink + amber accent on cream"),
- "Habit Tracker": ("#D97706","#F59E0B","#059669","#FFFBEB","Streak amber + habit green"),
- "Food Delivery / On-Demand": ("#EA580C","#F97316","#2563EB","#FFF7ED","Appetizing orange + trust blue"),
- "Ride Hailing / Transportation":("#1E293B","#334155","#2563EB","#0F172A","Map dark + route blue"),
- "Recipe & Cooking App": ("#9A3412","#C2410C","#059669","#FFFBEB","Warm terracotta + fresh green"),
- "Meditation & Mindfulness": ("#7C3AED","#8B5CF6","#059669","#FAF5FF","Calm lavender + mindful green"),
- "Weather App": ("#0284C7","#0EA5E9","#F59E0B","#F0F9FF","Sky blue + sun amber"),
- "Diary & Journal App": ("#92400E","#A16207","#6366F1","#FFFBEB","Warm journal brown + ink violet"),
- "CRM & Client Management": ("#2563EB","#3B82F6","#059669","#F8FAFC","Professional blue + deal green"),
- "Inventory & Stock Management":("#334155","#475569","#059669","#F8FAFC","Industrial slate + stock green"),
- "Flashcard & Study Tool": ("#7C3AED","#8B5CF6","#059669","#FAF5FF","Study purple + correct green"),
- "Booking & Appointment App": ("#0284C7","#0EA5E9","#059669","#F0F9FF","Calendar blue + available green"),
- "Invoice & Billing Tool": ("#1E3A5F","#2563EB","#059669","#F8FAFC","Navy professional + paid green"),
- "Grocery & Shopping List": ("#059669","#10B981","#D97706","#ECFDF5","Fresh green + food amber"),
- "Timer & Pomodoro": ("#DC2626","#EF4444","#059669","#0F172A","Focus red on dark + break green"),
- "Parenting & Baby Tracker": ("#EC4899","#F472B6","#0284C7","#FDF2F8","Soft pink + trust blue"),
- "Scanner & Document Manager": ("#1E293B","#334155","#2563EB","#F8FAFC","Document grey + scan blue"),
- # ── A. Utility / Productivity ──
- "Calendar & Scheduling App": ("#2563EB","#3B82F6","#059669","#F8FAFC","Calendar blue + event green"),
- "Password Manager": ("#1E3A5F","#334155","#059669","#0F172A","Vault dark blue + secure green"),
- "Expense Splitter / Bill Split":("#059669","#10B981","#DC2626","#F8FAFC","Balance green + owe red"),
- "Voice Recorder & Memo": ("#DC2626","#EF4444","#2563EB","#FFFFFF","Recording red + waveform blue"),
- "Bookmark & Read-Later": ("#D97706","#F59E0B","#2563EB","#FFFBEB","Warm amber + link blue"),
- "Translator App": ("#2563EB","#0891B2","#EA580C","#F8FAFC","Global blue + teal + accent orange"),
- "Calculator & Unit Converter": ("#EA580C","#F97316","#2563EB","#1C1917","Operation orange on dark"),
- "Alarm & World Clock": ("#D97706","#F59E0B","#6366F1","#0F172A","Time amber + night indigo on dark"),
- "File Manager & Transfer": ("#2563EB","#3B82F6","#D97706","#F8FAFC","Folder blue + file amber"),
- "Email Client": ("#2563EB","#3B82F6","#DC2626","#FFFFFF","Inbox blue + priority red"),
- # ── B. Games ──
- "Casual Puzzle Game": ("#EC4899","#8B5CF6","#F59E0B","#FDF2F8","Cheerful pink + reward gold"),
- "Trivia & Quiz Game": ("#2563EB","#7C3AED","#F59E0B","#EFF6FF","Quiz blue + gold leaderboard"),
- "Card & Board Game": ("#15803D","#166534","#D97706","#0F172A","Felt green + gold on dark"),
- "Idle & Clicker Game": ("#D97706","#F59E0B","#7C3AED","#FFFBEB","Coin gold + prestige purple"),
- "Word & Crossword Game": ("#15803D","#059669","#D97706","#FFFFFF","Word green + letter amber"),
- "Arcade & Retro Game": ("#DC2626","#2563EB","#22C55E","#0F172A","Neon red+blue on dark + score green"),
- # ── C. Creator Tools ──
- "Photo Editor & Filters": ("#7C3AED","#6366F1","#0891B2","#0F172A","Editor violet + filter cyan on dark"),
- "Short Video Editor": ("#EC4899","#DB2777","#2563EB","#0F172A","Video pink on dark + timeline blue"),
- "Drawing & Sketching Canvas": ("#7C3AED","#8B5CF6","#0891B2","#1C1917","Canvas purple + tool teal on dark"),
- "Music Creation & Beat Maker": ("#7C3AED","#6366F1","#22C55E","#0F172A","Studio purple + waveform green on dark"),
- "Meme & Sticker Maker": ("#EC4899","#F59E0B","#2563EB","#FFFFFF","Viral pink + comedy yellow + share blue"),
- "AI Photo & Avatar Generator": ("#7C3AED","#6366F1","#EC4899","#FAF5FF","AI purple + generation pink"),
- "Link-in-Bio Page Builder": ("#2563EB","#7C3AED","#EC4899","#FFFFFF","Brand blue + creator purple"),
- # ── D. Personal Life ──
- "Wardrobe & Outfit Planner": ("#BE185D","#EC4899","#D97706","#FDF2F8","Fashion rose + gold accent"),
- "Plant Care Tracker": ("#15803D","#059669","#D97706","#F0FDF4","Nature green + sun yellow"),
- "Book & Reading Tracker": ("#78716C","#92400E","#D97706","#FFFBEB","Book brown + page amber"),
- "Couple & Relationship App": ("#BE185D","#EC4899","#DC2626","#FDF2F8","Romance rose + love red"),
- "Family Calendar & Chores": ("#2563EB","#059669","#D97706","#F8FAFC","Family blue + chore green"),
- "Mood Tracker": ("#7C3AED","#6366F1","#D97706","#FAF5FF","Mood purple + insight amber"),
- "Gift & Wishlist": ("#DC2626","#D97706","#EC4899","#FFF1F2","Gift red + gold + surprise pink"),
- # ── E. Health ──
- "Running & Cycling GPS": ("#EA580C","#F97316","#059669","#0F172A","Energetic orange + pace green on dark"),
- "Yoga & Stretching Guide": ("#6B7280","#78716C","#0891B2","#F5F5F0","Sage neutral + calm teal"),
- "Sleep Tracker": ("#4338CA","#6366F1","#7C3AED","#0F172A","Night indigo + dream violet on dark"),
- "Calorie & Nutrition Counter": ("#059669","#10B981","#EA580C","#ECFDF5","Healthy green + macro orange"),
- "Period & Cycle Tracker": ("#BE185D","#EC4899","#7C3AED","#FDF2F8","Blush rose + fertility lavender"),
- "Medication & Pill Reminder": ("#0284C7","#0891B2","#DC2626","#F0F9FF","Medical blue + alert red"),
- "Water & Hydration Reminder": ("#0284C7","#06B6D4","#0891B2","#F0F9FF","Refreshing blue + water cyan"),
- "Fasting & Intermittent Timer":("#6366F1","#4338CA","#059669","#0F172A","Fasting indigo on dark + eating green"),
- # ── F. Social ──
- "Anonymous Community / Confession":("#475569","#334155","#0891B2","#0F172A","Protective grey + subtle teal on dark"),
- "Local Events & Discovery": ("#EA580C","#F97316","#2563EB","#FFF7ED","Event orange + map blue"),
- "Study Together / Virtual Coworking":("#2563EB","#3B82F6","#059669","#F8FAFC","Focus blue + session green"),
- # ── G. Education ──
- "Coding Challenge & Practice": ("#22C55E","#059669","#D97706","#0F172A","Code green + difficulty amber on dark"),
- "Kids Learning (ABC & Math)": ("#2563EB","#F59E0B","#EC4899","#EFF6FF","Learning blue + play yellow + fun pink"),
- "Music Instrument Learning": ("#DC2626","#9A3412","#D97706","#FFFBEB","Musical red + warm amber"),
- # ── H. Transport ──
- "Parking Finder": ("#2563EB","#059669","#DC2626","#F0F9FF","Available blue/green + occupied red"),
- "Public Transit Guide": ("#2563EB","#0891B2","#EA580C","#F8FAFC","Transit blue + line colors"),
- "Road Trip Planner": ("#EA580C","#0891B2","#D97706","#FFF7ED","Adventure orange + map teal"),
- # ── I. Safety & Lifestyle ──
- "VPN & Privacy Tool": ("#1E3A5F","#334155","#22C55E","#0F172A","Shield dark + connected green"),
- "Emergency SOS & Safety": ("#DC2626","#EF4444","#2563EB","#FFF1F2","Alert red + safety blue"),
- "Wallpaper & Theme App": ("#7C3AED","#EC4899","#2563EB","#FAF5FF","Aesthetic purple + trending pink"),
- "White Noise & Ambient Sound": ("#475569","#334155","#4338CA","#0F172A","Ambient grey + deep indigo on dark"),
- "Home Decoration & Interior Design":("#78716C","#A8A29E","#D97706","#FAF5F2","Interior warm grey + gold accent"),
-}
-
-# ─── 1. REBUILD colors.csv ───────────────────────────────────────────────────
-def rebuild_colors():
- src = os.path.join(BASE, "colors.csv")
- with open(src, newline="", encoding="utf-8") as f:
- reader = csv.DictReader(f)
- headers = reader.fieldnames
- existing = list(reader)
-
- # Build lookup: Product Type -> row data
- color_map = {}
- for row in existing:
- pt = row.get("Product Type", "").strip()
- if not pt:
- continue
- # Remove deleted types
- if pt in REMOVE_TYPES:
- print(f" [colors] REMOVE: {pt}")
- continue
- # Rename mismatched types
- if pt in COLOR_RENAMES:
- new_name = COLOR_RENAMES[pt]
- print(f" [colors] RENAME: {pt} → {new_name}")
- row["Product Type"] = new_name
- pt = new_name
- color_map[pt] = row
-
- # Read products.csv to get the correct order
- with open(os.path.join(BASE, "products.csv"), newline="", encoding="utf-8") as f:
- products = list(csv.DictReader(f))
-
- # Build final rows in products.csv order
- final_rows = []
- added = 0
- for i, prod in enumerate(products, 1):
- pt = prod["Product Type"]
- if pt in color_map:
- row = color_map[pt]
- row["No"] = str(i)
- final_rows.append(row)
- elif pt in NEW_COLORS:
- pri, sec, acc, bg, notes = NEW_COLORS[pt]
- new_row = derive_row(pt, pri, sec, acc, bg, notes)
- d = dict(zip(headers, [str(i)] + new_row))
- final_rows.append(d)
- added += 1
- else:
- print(f" [colors] WARNING: No color data for '{pt}' - using defaults")
- new_row = derive_row(pt, "#2563EB", "#3B82F6", "#059669", "#F8FAFC", "Auto-generated default")
- d = dict(zip(headers, [str(i)] + new_row))
- final_rows.append(d)
- added += 1
-
- # Write
- with open(src, "w", newline="", encoding="utf-8") as f:
- writer = csv.DictWriter(f, fieldnames=headers)
- writer.writeheader()
- writer.writerows(final_rows)
-
- product_count = len(products)
- print(f"\n ✅ colors.csv: {len(final_rows)} rows ({product_count} products)")
- print(f" Added: {added} new color rows")
-
-# ─── 2. REBUILD ui-reasoning.csv ─────────────────────────────────────────────
-def derive_ui_reasoning(prod):
- """Generate ui-reasoning row from products.csv row."""
- pt = prod["Product Type"]
- style = prod.get("Primary Style Recommendation", "")
- landing = prod.get("Landing Page Pattern", "")
- color_focus = prod.get("Color Palette Focus", "")
- considerations = prod.get("Key Considerations", "")
- keywords = prod.get("Keywords", "")
-
- # Typography mood derived from style
- typo_map = {
- "Minimalism": "Professional + Clean hierarchy",
- "Glassmorphism": "Modern + Clear hierarchy",
- "Brutalism": "Bold + Oversized + Monospace",
- "Claymorphism": "Playful + Rounded + Friendly",
- "Dark Mode": "High contrast + Light on dark",
- "Neumorphism": "Subtle + Soft + Monochromatic",
- "Flat Design": "Bold + Clean + Sans-serif",
- "Vibrant": "Energetic + Bold + Large",
- "Aurora": "Elegant + Gradient-friendly",
- "AI-Native": "Conversational + Minimal chrome",
- "Organic": "Warm + Humanist + Natural",
- "Motion": "Dynamic + Hierarchy-shifting",
- "Accessible": "Large + High contrast + Clear",
- "Soft UI": "Modern + Accessible + Balanced",
- "Trust": "Professional + Serif accents",
- "Swiss": "Grid-based + Mathematical + Helvetica",
- "3D": "Immersive + Spatial + Variable",
- "Retro": "Nostalgic + Monospace + Neon",
- "Cyberpunk": "Terminal + Monospace + Neon",
- "Pixel": "Retro + Blocky + 8-bit",
- }
- typo_mood = "Professional + Clear hierarchy"
- for key, val in typo_map.items():
- if key.lower() in style.lower():
- typo_mood = val
- break
-
- # Key effects from style
- eff_map = {
- "Glassmorphism": "Backdrop blur (10-20px) + Translucent overlays",
- "Neumorphism": "Dual shadows (light+dark) + Soft press 150ms",
- "Claymorphism": "Multi-layer shadows + Spring bounce + Soft press 200ms",
- "Brutalism": "No transitions + Hard borders + Instant feedback",
- "Dark Mode": "Subtle glow + Neon accents + High contrast",
- "Flat Design": "Color shift hover + Fast 150ms transitions + No shadows",
- "Minimalism": "Subtle hover 200ms + Smooth transitions + Clean",
- "Motion-Driven": "Scroll animations + Parallax + Page transitions",
- "Micro-interactions": "Haptic feedback + Small 50-100ms animations",
- "Vibrant": "Large section gaps 48px+ + Color shift hover + Scroll-snap",
- "Aurora": "Flowing gradients 8-12s + Color morphing",
- "AI-Native": "Typing indicator + Streaming text + Context reveal",
- "Organic": "Rounded 16-24px + Natural shadows + Flowing SVG",
- "Soft UI": "Improved shadows + Modern 200-300ms + Focus visible",
- "3D": "WebGL/Three.js + Parallax 3-5 layers + Physics 300-400ms",
- "Trust": "Clear focus rings + Badge hover + Metric pulse",
- "Accessible": "Focus rings 3-4px + ARIA + Reduced motion",
- }
- key_effects = "Subtle hover (200ms) + Smooth transitions"
- for key, val in eff_map.items():
- if key.lower() in style.lower():
- key_effects = val
- break
-
- # Decision rules
- rules = {}
- if "dark" in style.lower() or "oled" in style.lower():
- rules["if_light_mode_needed"] = "provide-theme-toggle"
- if "glass" in style.lower():
- rules["if_low_performance"] = "fallback-to-flat"
- if "conversion" in landing.lower():
- rules["if_conversion_focused"] = "add-urgency-colors"
- if "social" in landing.lower():
- rules["if_trust_needed"] = "add-testimonials"
- if "data" in keywords.lower() or "dashboard" in keywords.lower():
- rules["if_data_heavy"] = "prioritize-data-density"
- if not rules:
- rules["if_ux_focused"] = "prioritize-clarity"
- rules["if_mobile"] = "optimize-touch-targets"
-
- # Anti-patterns
- anti_patterns = []
- if "minimalism" in style.lower() or "minimal" in style.lower():
- anti_patterns.append("Excessive decoration")
- if "dark" in style.lower():
- anti_patterns.append("Pure white backgrounds")
- if "flat" in style.lower():
- anti_patterns.append("Complex shadows + 3D effects")
- if "vibrant" in style.lower():
- anti_patterns.append("Muted colors + Low energy")
- if "accessible" in style.lower():
- anti_patterns.append("Color-only indicators")
- if not anti_patterns:
- anti_patterns = ["Inconsistent styling", "Poor contrast ratios"]
- anti_str = " + ".join(anti_patterns[:2])
-
- return {
- "UI_Category": pt,
- "Recommended_Pattern": landing,
- "Style_Priority": style,
- "Color_Mood": color_focus,
- "Typography_Mood": typo_mood,
- "Key_Effects": key_effects,
- "Decision_Rules": json.dumps(rules),
- "Anti_Patterns": anti_str,
- "Severity": "HIGH"
- }
-
-
-def rebuild_ui_reasoning():
- src = os.path.join(BASE, "ui-reasoning.csv")
- with open(src, newline="", encoding="utf-8") as f:
- reader = csv.DictReader(f)
- headers = reader.fieldnames
- existing = list(reader)
-
- # Build lookup
- ui_map = {}
- for row in existing:
- cat = row.get("UI_Category", "").strip()
- if not cat:
- continue
- if cat in REMOVE_TYPES:
- print(f" [ui-reason] REMOVE: {cat}")
- continue
- if cat in UI_RENAMES:
- new_name = UI_RENAMES[cat]
- print(f" [ui-reason] RENAME: {cat} → {new_name}")
- row["UI_Category"] = new_name
- cat = new_name
- ui_map[cat] = row
-
- with open(os.path.join(BASE, "products.csv"), newline="", encoding="utf-8") as f:
- products = list(csv.DictReader(f))
-
- final_rows = []
- added = 0
- for i, prod in enumerate(products, 1):
- pt = prod["Product Type"]
- if pt in ui_map:
- row = ui_map[pt]
- row["No"] = str(i)
- final_rows.append(row)
- else:
- row = derive_ui_reasoning(prod)
- row["No"] = str(i)
- final_rows.append(row)
- added += 1
-
- with open(src, "w", newline="", encoding="utf-8") as f:
- writer = csv.DictWriter(f, fieldnames=headers)
- writer.writeheader()
- writer.writerows(final_rows)
-
- print(f"\n ✅ ui-reasoning.csv: {len(final_rows)} rows")
- print(f" Added: {added} new reasoning rows")
-
-
-# ─── MAIN ────────────────────────────────────────────────────────────────────
-if __name__ == "__main__":
- print("=== Rebuilding colors.csv ===")
- rebuild_colors()
- print("\n=== Rebuilding ui-reasoning.csv ===")
- rebuild_ui_reasoning()
- print("\n🎉 Done!")
diff --git a/.agents/skills/ui-ux-pro-max/data/app-interface.csv b/.agents/skills/ui-ux-pro-max/data/app-interface.csv
deleted file mode 100644
index f34c3cd..0000000
--- a/.agents/skills/ui-ux-pro-max/data/app-interface.csv
+++ /dev/null
@@ -1,31 +0,0 @@
-No,Category,Issue,Keywords,Platform,Description,Do,Don't,Code Example Good,Code Example Bad,Severity
-1,Accessibility,Icon Button Labels,icon button accessibilityLabel,iOS/Android/React Native,Icon-only buttons must expose an accessible label,Set accessibilityLabel or label prop on icon buttons,Icon buttons without accessible names,"","",Critical
-2,Accessibility,Form Control Labels,form input label accessibilityLabel,iOS/Android/React Native,All inputs must have a visible label and an accessibility label,Pair Text label with input and set accessibilityLabel,Inputs with placeholder only,"Email","",Critical
-3,Accessibility,Role & Traits,accessibilityRole accessibilityTraits,iOS/Android/React Native,Interactive elements must expose correct roles/traits,Use accessibilityRole/button/link/checkbox etc.,Rely on generic views with no roles,"Submit","Submit",High
-4,Accessibility,Dynamic Updates,accessibilityLiveRegion announce,iOS/Android/React Native,Async status updates should be announced to screen readers,Use accessibilityLiveRegion or announceForAccessibility,Update text silently with no announcement,"{status}","{status}",Medium
-5,Accessibility,Decorative Icons,accessible={false} importantForAccessibility,iOS/Android/React Native,Decorative icons should be hidden from screen readers,Mark decorative icons as not accessible,Have screen reader read every icon,"","",Medium
-6,Touch,Touch Target Size,touch 44x44 hitSlop,iOS/Android/React Native,Primary touch targets must be at least 44x44pt,Increase hitSlop or padding to meet minimum,Small icons with tiny touch area,"","",Critical
-7,Touch,Touch Spacing,touch spacing gap 8px,iOS/Android/React Native,Adjacent touch targets need enough spacing,Keep at least 8dp spacing between touchables,Cluster many buttons with no gap,"","",Medium
-8,Touch,Gesture Conflicts,scroll swipe back gesture,iOS/Android/React Native,Custom gestures must not break system scroll/back,Reserve horizontal swipes for carousels,Full-screen custom swipe conflicting with back,"HorizontalPager inside vertical ScrollView","PanResponder on full screen blocking back",High
-9,Navigation,Back Behavior,back handler navigation stack,iOS/Android/React Native,Back navigation should be predictable and preserve state,Use navigation.goBack and keep screen state,Reset stack or exit app unexpectedly,onPress={() => navigation.goBack()},"BackHandler.exitApp() on first press",Critical
-10,Navigation,Bottom Tabs,tab bar max items,iOS/Android/React Native,Bottom tab bar should have at most 5 primary items,Use 3–5 tabs and move extras to More/Settings,Overloaded tab bar with many icons,Home/Explore/Profile/Settings,"Home/Explore/Shop/Cart/Profile/Settings/More",Medium
-11,Navigation,Modal Escape,modal dismiss close affordance,iOS/Android/React Native,Modals/sheets must have clear close actions,Provide close button and swipe-down where platform expects,Trapping users in modal with no obvious exit,"","{children}",High
-12,State,Preserve Screen State,navigation preserve state,iOS/Android/React Native,Returning to a screen should restore its scroll and form state,Keep components mounted or persist state,Reset list scroll and form inputs on every visit,"","",Medium
-13,Feedback,Loading Indicators,activity indicator skeleton,iOS/Android/React Native,Show visible feedback during network operations,Use ActivityIndicator or skeleton for >300ms operations,Leave button and screen frozen,"{loading ? : }", " // no loading",High
-14,Feedback,Success Feedback,toast checkmark banner,iOS/Android/React Native,Confirm successful actions with brief feedback,Show toast/checkmark or banner,Complete actions silently with no confirmation,"showToast('Saved successfully')","// silently update state only",Medium
-15,Feedback,Error Feedback,inline error banner,iOS/Android/React Native,Show clear error messages near the problem,input-level error + summary banner,Only change border color with no explanation,"{error}","",High
-16,Forms,Inline Validation,onBlur validation,iOS/Android/React Native,Validate inputs on blur or submit with clear messaging,Validate onBlur and onSubmit,Validate on every keystroke causing jank,"onBlur={() => validateEmail(value)}","onChangeText={v => validateEmail(v)} // every char",Medium
-17,Forms,Keyboard Type,keyboardType returnKeyType,iOS/Android/React Native,Use appropriate keyboardType and returnKeyType,Match email/tel/number/search types,Use default keyboard for all inputs,"","",Medium
-18,Forms,Auto Focus & Next,autoFocus blurOnSubmit onSubmitEditing,iOS/Android/React Native,Guide users through form fields with Next/Done flows,Use onSubmitEditing to focus next input,Force users to tap each field manually,"onSubmitEditing={() => nextRef.current?.focus()}","// no onSubmitEditing, manual tap only",Low
-19,Forms,Password Visibility,secureTextEntry toggle,iOS/Android/React Native,Allow toggling password visibility securely,Provide Show/Hide icon toggling secureTextEntry,Force users to type blind with no option,""," // no toggle",Medium
-20,Performance,Virtualize Long Lists,FlatList SectionList virtualization,iOS/Android/React Native,Use FlatList/SectionList for lists over ~50 items,Use keyExtractor and initialNumToRender appropriately,Render hundreds of items with ScrollView,"","{items.map(renderItem)}",High
-21,Performance,Image Size & Cache,Image resize cache,iOS/Android/React Native,Use correctly sized and cached images,Use Image component with proper resizeMode and caching,Load full-resolution images everywhere,""," // small avatar",Medium
-22,Performance,Debounce High-Freq Events,debounce scroll search,iOS/Android/React Native,Debounce scroll/search callbacks to avoid jank,Wrap handlers with debounce/throttle,Run heavy logic on every event,"onScroll={debouncedHandleScroll}","onScroll={handleScrollHeavy}",Medium
-23,Animation,Duration & Easing,animation duration easing,iOS/Android/React Native,Micro-interactions should be 150–300ms with native-like easing,Use ease-out for enter/ease-in for exit,Use long or linear animations for core UI,"Animated.timing(..., { duration: 200, easing: Easing.out(Easing.quad) })","Animated.timing(..., { duration: 800, easing: Easing.linear })",Medium
-24,Animation,Respect Reduced Motion,reduced motion accessibility,iOS/Android/React Native,Respect OS reduced-motion accessibility setting,Check reduceMotionEnabled and simplify animations,Ignore user motion preferences,"if (reduceMotionEnabled) skipAnimation()","Always run complex parallax animations",Critical
-25,Animation,Limited Continuous Motion,loop animation loader,iOS/Android/React Native,Reserve infinite animations for loaders and live data,Use looping only where necessary,Keep decorative elements looping forever,"Animated.loop(loaderAnim) for ActivityIndicator","Animated.loop(bounceAnim) on background icons",Medium
-26,Typography,Base Font Size,fontScale dynamic type,iOS/Android/React Native,Body text must be readable and support Dynamic Type,Use platform fontScale and at least 14–16pt base,Render critical text below 12pt,"Body","Body",High
-27,Typography,Dynamic Type Support,allowFontScaling adjustsFontSizeToFit,iOS/Android/React Native,Support system text scaling without breaking layout,Set allowFontScaling and test large text,Disable scaling on all text globally,"{label}","{label}",High
-28,Safe Areas,Safe Area Insets,safe area insets notch gesture,iOS/Android/React Native,Content must not overlap notches/gesture bars,Wrap screens in SafeAreaView or apply insets,Place tappable content under system bars,"","",High
-29,Theming,Light/Dark Contrast,dark mode contrast tokens,iOS/Android/React Native,Ensure sufficient contrast in both light and dark themes,Use semantic tokens and test both themes,Reuse light-theme grays directly in dark mode,"colors.textPrimaryDark = '#F9FAFB'","colors.textPrimaryDark = '#9CA3AF' on '#111827'",High
-30,Anti-Pattern,No Gesture-Only Actions,gesture only hidden controls,iOS/Android/React Native,Don't rely solely on hidden gestures for core actions,Provide visible buttons in addition to gestures,Rely on swipe/shake only with no UI affordance,"Swipe to delete + visible Delete button","Only shake device to undo with no UI",Critical
\ No newline at end of file
diff --git a/.agents/skills/ui-ux-pro-max/data/charts.csv b/.agents/skills/ui-ux-pro-max/data/charts.csv
deleted file mode 100644
index c27b726..0000000
--- a/.agents/skills/ui-ux-pro-max/data/charts.csv
+++ /dev/null
@@ -1,26 +0,0 @@
-No,Data Type,Keywords,Best Chart Type,Secondary Options,When to Use,When NOT to Use,Data Volume Threshold,Color Guidance,Accessibility Grade,Accessibility Notes,A11y Fallback,Library Recommendation,Interactive Level
-1,Trend Over Time,"trend, time-series, line, growth, timeline, progress",Line Chart,"Area Chart, Smooth Area","Data has a time axis; user needs to observe rise/fall trends or rate of change over a continuous period","Fewer than 4 data points (use stat card); more than 6 series (visual noise); no time dimension exists","<1000 pts: SVG; ≥1000 pts: Canvas + downsampling; >10000: aggregate to intervals","Primary: #0080FF. Multiple series: distinct colors + distinct line styles. Fill: 20% opacity",AA,"Differentiate series by line style (solid/dashed/dotted) not color alone. Add pattern overlays for colorblind users.","Dashed/dotted lines per series; togglable data table with timestamps and values","Chart.js, Recharts, ApexCharts",Hover + Zoom
-2,Compare Categories,"compare, categories, bar, comparison, ranking",Bar Chart (Horizontal or Vertical),"Column Chart, Grouped Bar","Comparing discrete categories by magnitude; ranking or ordering is the core insight; categories ≤ 15","Categories > 15 (use table or search); data has time dimension (use line); showing proportions (use waffle/stacked)","<20 categories: vertical bar; 20–50: horizontal bar; >50: paginated table","Each bar: distinct color. Grouped: same hue family. Always sort descending by value",AAA,"Value labels on each bar by default. Sort control for user reordering.","Value labels always visible; provide CSV export","Chart.js, Recharts, D3.js",Hover + Sort
-3,Part-to-Whole,"part-to-whole, pie, donut, percentage, proportion, share",Pie Chart or Donut,"Stacked Bar, Waffle Chart","≤5 categories; one dominant segment vs rest; emphasis on visual proportion over exact values","Categories > 5; slice differences < 5% (visually indistinguishable); user needs precise values; accessibility-first context","Max 6 slices; beyond that switch to stacked bar 100%","5–6 max colors. Contrasting palette. Largest slice at 12 o'clock. Always label slices with %",C,"Pie charts fail WCAG for colorblind users. Slices rely on color alone. Avoid as primary chart in a11y contexts.","Must provide stacked bar alternative + percentage data table as mandatory fallback","Chart.js, Recharts, D3.js",Hover + Drill
-4,Correlation / Distribution,"correlation, distribution, scatter, relationship, pattern, cluster",Scatter Plot or Bubble Chart,"Heat Map, Matrix","Exploring relationship between two continuous variables; identifying clusters or outliers in a dataset","Variables are categorical (use grouped bar); fewer than 20 points (patterns aren't meaningful); mobile-primary context","<500 pts: SVG; 500–5000: Canvas at 0.6–0.8 opacity; >5000: hexbin or aggregate first","Color axis: gradient (blue → red). Bubble size: relative to 3rd variable. Opacity: 0.6–0.8 to show density",B,"Provide data table alternative. Combine color + shape distinction for colorblind users.","Data table with correlation coefficient annotation; shape markers (circle/square/triangle) per group","D3.js, Plotly, Recharts",Hover + Brush
-5,Heatmap / Intensity,"heatmap, heat-map, intensity, density, matrix, calendar",Heat Map or Choropleth,"Grid Heat Map, Bubble Heat","Showing intensity/density across a 2D grid; time-based patterns (e.g., activity by hour × day)","Fewer than 20 cells (use bar); user needs to read exact values; colorblind users without pattern fallback","Up to 10,000 cells efficiently; beyond that aggregate; calendar heatmap: 365 cells max per SVG","Gradient: Cool (blue) to Hot (red). Divergent scale for ±data. Always include numeric color legend",B,"Pattern overlay for colorblind users. Numerical value on hover. Legend must include scale ticks.","Numerical overlay on hover; downloadable grid table with row/column labels","D3.js, Plotly, ApexCharts",Hover + Zoom
-6,Geographic Data,"geographic, map, location, region, geo, spatial, choropleth",Choropleth Map or Bubble Map,Geographic Heat Map,"Data has a regional/location dimension; spatial distribution is the core insight for the user","Regions have very different sizes making visual comparison misleading (use bar); mobile-primary context","<1000 regions: SVG; ≥1000: Canvas/WebGL (Deck.gl); global maps: tile-based rendering","Single color gradient per region group. Categorized colors for discrete types. Legend with clear scale breaks",B,"Include text labels for major regions. Provide keyboard navigation between regions.","Region text labels; sortable data table by region name and value; keyboard-navigable regions","D3.js, Mapbox, Leaflet",Pan + Zoom + Drill
-7,Funnel / Flow,"funnel, flow, conversion, drop-off, pipeline, stages",Funnel Chart or Sankey,Waterfall (for flows),"Sequential multi-stage process; showing conversion or drop-off rates between defined stages","Stages aren't sequential; values don't decrease monotonically (use bar); fewer than 3 stages","3–8 stages optimal; beyond 8 stages group minor steps into 'Other'","Stages: single color gradient (start → end). Show conversion % between each stage. Highlight biggest drop",AA,"Explicit conversion % as text per stage. Stage labels always visible. Linear list view as fallback.","Provide linear list view with stage name + count + drop-off %; keyboard traversal","D3.js, Recharts, Custom SVG",Hover + Drill
-8,Performance vs Target,"performance, target, kpi, gauge, goal, threshold, progress",Gauge Chart or Bullet Chart,"Dial, Thermometer","Single KPI measured against a defined target or threshold; dashboard summary context","No target or benchmark exists; comparing multiple KPIs at once (use bullet chart grid)","Single metric per gauge; for 3+ KPIs use bullet chart grid layout","Performance: Red → Yellow → Green gradient. Target: marker line. Threshold zones clearly differentiated",AA,"Always show numerical value + % of target as text beside chart. Never rely on color position alone.","Numerical value + % of target shown as visible text; ARIA live region for real-time updates","D3.js, ApexCharts, Custom SVG",Hover
-9,Time-Series Forecast,"forecast, prediction, confidence, band, projection, estimate",Line with Confidence Band,Ribbon Chart,"Historical data + model predictions; communicating uncertainty range to non-technical stakeholders","No historical baseline; prediction confidence is too low to be useful; audience is not data-literate","Keep historical window to 30–90 days for readability; forecast horizon ≤ 30% of visible x-axis range","Actual: solid line #0080FF. Forecast: dashed #FF9500. Confidence band: 15% opacity fill same hue",AA,"Toggle between actual-only and forecast views. Legend must distinguish lines beyond color (solid vs dashed).","Toggle actual/forecast independently; legend labels must include line-style description","Chart.js, ApexCharts, Plotly",Hover + Toggle
-10,Anomaly Detection,"anomaly, outlier, spike, alert, detection, monitoring, deviation",Line Chart with Highlights,Scatter with Alert,"Monitoring a time-series for outliers; alerting users to unexpected spikes or dips in operational data","Anomalies are predefined categories (use bar with highlight); real-time context without a pause control","Stream at ≤60fps with Canvas; batch: up to 10,000 pts; mark anomalies as a separate data layer","Normal: #0080FF solid line. Anomaly marker: #FF0000 circle + filled. Alert band: #FFF3CD background zone",AA,"Use shape marker (not color only) for anomaly points. Add text annotation per anomaly event.","Text alert annotation per anomaly; anomaly summary list panel alongside chart","D3.js, Plotly, ApexCharts",Hover + Alert
-11,Hierarchical / Nested Data,"hierarchy, nested, treemap, parent, children, breakdown, drill",Treemap,"Sunburst, Nested Donut, Icicle","Showing size relationships within a hierarchy; overview of proportional structure (e.g., budget breakdown)","Hierarchy depth > 3 levels (too complex to read); user needs to compare sibling values precisely","<200 nodes: SVG; 200–1000: Canvas; >1000: paginate or pre-filter before rendering","Parent nodes: distinct hues. Children: lighter shades of same hue. White separator borders: 2–3px",C,"Poor baseline accessibility. Always provide table alternative as primary view. Label all large areas.","Collapsible tree table as primary view; treemap as supplementary visual only","D3.js, Recharts, ApexCharts",Hover + Drilldown
-12,Flow / Process Data,"flow, process, sankey, distribution, source, target, transfer",Sankey Diagram,"Alluvial, Chord Diagram","Showing how quantities flow between nodes; multi-source multi-target distribution","Flow directions form loops (use network graph); fewer than 3 source-target pairs; mobile-primary context","<50 flows: SVG; ≥50: Canvas; >200 flows: aggregate minor flows into 'Other' node","Gradient from source to target color. Flow opacity: 0.4–0.6. Node labels always visible",C,"Structural flow charts cannot be conveyed by color alone. Provide flow table. Avoid on mobile.","Flow table (Source → Target → Value); keyboard-traversable node list with tab stops","D3.js (d3-sankey), Plotly",Hover + Drilldown
-13,Cumulative Changes,"waterfall, cumulative, variance, incremental, bridge, delta",Waterfall Chart,"Stacked Bar, Cascade","Showing how individual positive/negative components add up to a final total (e.g., P&L, budget variance)","Changes are not additive; more than 12 bars (readability breaks); audience expects a simple total","4–12 bars optimal; beyond 12 aggregate minor items into a single 'Other' bar","Increases: #4CAF50. Decreases: #F44336. Start total: #2196F3. End total: #0D47A1. Running total line: dashed",AA,"Color + directional arrow icon per bar (not color alone). Labels on every bar.","Table with running total column; directional arrow icons per row","ApexCharts, Highcharts, Plotly",Hover
-14,Multi-Variable Comparison,"radar, spider, multi-variable, attributes, dimensions, comparison",Radar / Spider Chart,"Parallel Coordinates, Grouped Bar","Comparing multiple entities across the same fixed set of attributes (e.g., product feature comparison)","Axes > 8 (unreadable); values need precise comparison (use grouped bar); audience unfamiliar with radar charts","2–3 datasets maximum per chart; 5–8 axes; beyond 8 axes switch to parallel coordinates","Single dataset: #0080FF at 20% fill. Multiple: distinct hues with 30% fill. Border: full opacity",B,"Limit axes to 5–8. Always provide grouped bar chart alternative for precise reading.","Grouped bar chart as mandatory alternative; include raw data table","Chart.js, Recharts, ApexCharts",Hover + Toggle
-15,Stock / Trading OHLC,"stock, trading, ohlc, candlestick, finance, price, volume",Candlestick Chart,"OHLC Bar, Heikin-Ashi","Financial time-series with Open/High/Low/Close data; trading or investment product context only","Non-financial audience; no OHLC data available (use line chart); accessibility-first context","Real-time: Canvas required. Historical: paginate by time range. Max 500 candles visible at once","Bullish: #26A69A. Bearish: #EF5350. Volume bars: 40% opacity below. Body fill vs hollow for OHLC style",B,"Provide OHLC data table. Colorblind: use fill vs outline pattern (bullish = filled, bearish = hollow).","OHLC data table with sortable columns; numeric summary panel (daily change %)","Lightweight Charts (TradingView), ApexCharts",Real-time + Hover + Zoom
-16,Relationship / Connection Data,"network, graph, nodes, edges, connections, relationships, force",Network Graph,"Hierarchical Tree, Adjacency Matrix","Mapping connections between entities; network topology or social graph exploration context","Node count > 500 without clustering pre-applied; user needs precise connection counts; mobile context","≤100 nodes: SVG; 101–500: Canvas; >500: must apply clustering/LOD before rendering","Node types: categorical colors. Edges: #90A4AE at 60% opacity. Highlight path: #F59E0B",D,"Fundamentally inaccessible without alternative. Never use as sole representation. Always provide list alternative.","Adjacency list table (Node A → Node B → Weight); hierarchical tree view when structure allows","D3.js (d3-force), Vis.js, Cytoscape.js",Drilldown + Hover + Drag
-17,Distribution / Statistical,"distribution, statistical, spread, median, outlier, quartile, boxplot",Box Plot,"Violin Plot, Beeswarm","Showing spread, median, and outliers of a dataset; comparing distributions across multiple groups","Fewer than 20 data points per group (distribution is not meaningful); audience unfamiliar with statistical charts","Any sample size; aggregated representation so rendering is ⚡ Excellent at any volume","Box fill: #BBDEFB. Border: #1976D2. Median line: #D32F2F bold. Outlier dots: #F44336",AA,"Include stats summary table. Annotate outlier count in chart subtitle.","Stats summary table (min / Q1 / median / Q3 / max / mean); outlier count annotation","Plotly, D3.js, Chart.js (plugin)",Hover
-18,Performance vs Target (Compact),"bullet, compact, kpi, dashboard, target, benchmark, range",Bullet Chart,"Gauge, Progress Bar","Dashboard with multiple KPIs side by side; space-constrained contexts where a gauge is too large","Single KPI with emphasis (use gauge); data has no defined target range; fewer than 3 KPIs","Ideal for 3–10 bullet charts in a grid; scales to any count efficiently","Qualitative ranges: #FFCDD2 / #FFF9C4 / #C8E6C9 (bad/ok/good). Performance bar: #1976D2. Target: black 3px marker",AAA,"All values always visible as text. Color ranges are labeled with text thresholds not color alone.","Numerical values always visible (not hover-only); color ranges labeled with threshold text","D3.js, Plotly, Custom SVG",Hover
-19,Proportional / Percentage,"waffle, percentage, proportion, progress, filled, grid",Waffle Chart,"Pictogram, Stacked Bar 100%","Showing what fraction of a whole is filled; percentage progress in a visually engaging and accessible format","More than 5 categories (use stacked bar); exact values matter over visual proportion; very tight space","10×10 grid standard (100 cells); for > 5 categories switch to stacked 100% bar","3–5 categories max. 2–3px gap between cells. Each category a distinct accessible color pair",AA,"Better than pie for accessibility. Percentage text label always visible. Each cell has aria-label.","Percentage text always visible; grid cells labeled with aria-label value; provide legend","D3.js, React-Waffle, Custom CSS Grid",Hover
-20,Hierarchical Proportional,"sunburst, hierarchy, nested, proportion, radial, circle",Sunburst Chart,"Treemap, Icicle, Circle Packing","Exploring nested proportions where both hierarchy and relative size matter (e.g., org spend breakdown)","More than 3 hierarchy levels (outer rings become unreadable); precision matters over overview; mobile","<100 nodes: SVG; 100–500: Canvas; >500: filter to top N before rendering","Center to outer: darker to lighter hue. Each level 15–20% lighter. Contrasting border between sectors",C,"Poor accessibility beyond 2 levels. Mandatory table alternative required for any production use.","Collapsible indented list with percentages; breadcrumb trail for current drill-down state","D3.js (d3-hierarchy), Recharts, ApexCharts",Drilldown + Hover
-21,Root Cause Analysis,"root cause, decomposition, tree, hierarchy, drill-down, ai-split, attribution",Decomposition Tree,"Decision Tree, Flow Chart","Decomposing a metric into contributing factors; AI-assisted analysis or BI drill-down scenarios","No clear parent-child causal relationship; audience expects a summary rather than exploration","Up to 5 levels deep; limit visible nodes to 20 per level for readability; lazy-load deeper levels","Positive impact nodes: #2563EB. Negative impact nodes: #EF4444. Neutral connectors: #94A3B8",AA,"Keyboard-navigable expand/collapse. Screen reader announces node value and % contribution.","Keyboard expand/collapse tree; screen reader announces node label + value + % impact","Power BI (native), React-Flow, Custom D3.js",Drill + Expand
-22,3D Spatial Data,"3d, spatial, immersive, terrain, molecular, volumetric, point-cloud",3D Scatter / Surface Plot,"Volumetric Rendering, Point Cloud","Scientific/engineering context where Z-axis carries essential info not expressible in 2D","2D projection conveys the same insight; mobile context; accessibility-required environments; standard business dashboards","WebGL required. Deck.gl: up to 1M points. Three.js: LOD required beyond 50,000 pts","Depth cues: lighting and shading. Z-axis: color gradient (cool → warm). Transparent overlapping: opacity 0.4",D,"3D spatial charts are fundamentally inaccessible. Must not be used as primary chart type in any product UI.","Mandatory 2D projection view + data table; do not use as primary chart type in product UI","Three.js, Deck.gl, Plotly 3D",Rotate + Zoom + VR
-23,Real-Time Streaming,"streaming, real-time, ticker, live, velocity, pulse, monitoring",Streaming Area Chart,"Ticker Tape, Moving Gauge","Live monitoring dashboards; IoT/ops data updating at ≥1 Hz; user needs current value at a glance","Update frequency < 1/min (use periodic-refresh line chart); flashing content without reduced-motion support","Canvas/WebGL required. Buffer last 60–300s of data. Downsample older data on scroll","Current pulse: #00FF00 (dark theme) or #0080FF (light theme). History: fading opacity. Grid: dark background",B,"Pause/resume control required. Current value as large visible text KPI. Respect prefers-reduced-motion.","Pause/resume button required; current value shown as large text KPI; prefers-reduced-motion: freeze animation","Smoothed D3.js, CanvasJS",Real-time + Pause + Zoom
-24,Sentiment / Emotion,"sentiment, emotion, nlp, opinion, feeling, text-analysis",Word Cloud with Sentiment,"Sentiment Arc, Radar Chart","NLP output visualization; exploratory analysis of text corpus sentiment; frequency-weighted keyword overview","Precise values matter (word size is inherently imprecise); screen-reader context; corpus < 50 items","50–5000 terms optimal. Beyond 5000: apply top-N filtering before render. Avoid on mobile","Positive: #22C55E. Negative: #EF4444. Neutral: #94A3B8. Word size maps to frequency",C,"Word clouds fail screen readers. Never use as sole output of NLP analysis. Always pair with list view.","Sortable list view by frequency with sentiment label column; word cloud as supplementary only","D3-cloud, Highcharts, Nivo",Hover + Filter
-25,Process Mining,"process, mining, variants, path, bottleneck, log, event",Process Map / Graph,"Directed Acyclic Graph (DAG), Petri Net","Analyzing event logs to visualize actual process flows; identifying bottlenecks and deviations in ops/product funnels","No event log data available; audience expects a static flowchart (use diagram tool); node count > 100 without pre-filtering","<30 nodes: SVG; 30–100: Canvas; >100: apply variant filtering (top 80% of cases) before rendering","Happy path: #10B981 thick line. Deviations: #F59E0B thin line. Bottleneck nodes: #EF4444 fill",B,"Complex graphs are hard to navigate. Provide path summary text. Highlight top 3 bottlenecks as annotations.","Path summary table (variant → frequency → avg duration); top 3 bottlenecks as text annotation panel","React-Flow, Cytoscape.js, Recharts",Drag + Node-Click
diff --git a/.agents/skills/ui-ux-pro-max/data/colors.csv b/.agents/skills/ui-ux-pro-max/data/colors.csv
deleted file mode 100644
index 7b2b067..0000000
--- a/.agents/skills/ui-ux-pro-max/data/colors.csv
+++ /dev/null
@@ -1,162 +0,0 @@
-No,Product Type,Primary,On Primary,Secondary,On Secondary,Accent,On Accent,Background,Foreground,Card,Card Foreground,Muted,Muted Foreground,Border,Destructive,On Destructive,Ring,Notes
-1,SaaS (General),#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#EA580C,#FFFFFF,#F8FAFC,#1E293B,#FFFFFF,#1E293B,#E9EFF8,#64748B,#E2E8F0,#DC2626,#FFFFFF,#2563EB,Trust blue + orange CTA contrast [Accent adjusted from #F97316 for WCAG 3:1]
-2,Micro SaaS,#6366F1,#FFFFFF,#818CF8,#0F172A,#059669,#FFFFFF,#F5F3FF,#1E1B4B,#FFFFFF,#1E1B4B,#EBEFF9,#64748B,#E0E7FF,#DC2626,#FFFFFF,#6366F1,Indigo primary + emerald CTA [Accent adjusted from #10B981 for WCAG 3:1]
-3,E-commerce,#059669,#FFFFFF,#10B981,#0F172A,#EA580C,#FFFFFF,#ECFDF5,#064E3B,#FFFFFF,#064E3B,#E8F1F3,#64748B,#A7F3D0,#DC2626,#FFFFFF,#059669,Success green + urgency orange [Accent adjusted from #F97316 for WCAG 3:1]
-4,E-commerce Luxury,#1C1917,#FFFFFF,#44403C,#FFFFFF,#A16207,#FFFFFF,#FAFAF9,#0C0A09,#FFFFFF,#0C0A09,#E8ECF0,#64748B,#D6D3D1,#DC2626,#FFFFFF,#1C1917,Premium dark + gold accent [Accent adjusted from #CA8A04 for WCAG 3:1]
-5,B2B Service,#0F172A,#FFFFFF,#334155,#FFFFFF,#0369A1,#FFFFFF,#F8FAFC,#020617,#FFFFFF,#020617,#E8ECF1,#64748B,#E2E8F0,#DC2626,#FFFFFF,#0F172A,Professional navy + blue CTA
-6,Financial Dashboard,#0F172A,#FFFFFF,#1E293B,#FFFFFF,#22C55E,#0F172A,#020617,#F8FAFC,#0E1223,#F8FAFC,#1A1E2F,#94A3B8,#334155,#EF4444,#FFFFFF,#0F172A,Dark bg + green positive indicators
-7,Analytics Dashboard,#1E40AF,#FFFFFF,#3B82F6,#FFFFFF,#D97706,#FFFFFF,#F8FAFC,#1E3A8A,#FFFFFF,#1E3A8A,#E9EEF6,#64748B,#DBEAFE,#DC2626,#FFFFFF,#1E40AF,Blue data + amber highlights [Accent adjusted from #F59E0B for WCAG 3:1]
-8,Healthcare App,#0891B2,#FFFFFF,#22D3EE,#0F172A,#059669,#FFFFFF,#ECFEFF,#164E63,#FFFFFF,#164E63,#E8F1F6,#64748B,#A5F3FC,#DC2626,#FFFFFF,#0891B2,Calm cyan + health green
-9,Educational App,#4F46E5,#FFFFFF,#818CF8,#0F172A,#EA580C,#FFFFFF,#EEF2FF,#1E1B4B,#FFFFFF,#1E1B4B,#EBEEF8,#64748B,#C7D2FE,#DC2626,#FFFFFF,#4F46E5,Playful indigo + energetic orange [Accent adjusted from #F97316 for WCAG 3:1]
-10,Creative Agency,#EC4899,#FFFFFF,#F472B6,#0F172A,#0891B2,#FFFFFF,#FDF2F8,#831843,#FFFFFF,#831843,#F1EEF5,#64748B,#FBCFE8,#DC2626,#FFFFFF,#EC4899,Bold pink + cyan accent [Accent adjusted from #06B6D4 for WCAG 3:1]
-11,Portfolio/Personal,#18181B,#FFFFFF,#3F3F46,#FFFFFF,#2563EB,#FFFFFF,#FAFAFA,#09090B,#FFFFFF,#09090B,#E8ECF0,#64748B,#E4E4E7,#DC2626,#FFFFFF,#18181B,Monochrome + blue accent
-12,Gaming,#7C3AED,#FFFFFF,#A78BFA,#0F172A,#F43F5E,#FFFFFF,#0F0F23,#E2E8F0,#1E1C35,#E2E8F0,#27273B,#94A3B8,#4C1D95,#EF4444,#FFFFFF,#7C3AED,Neon purple + rose action
-13,Government/Public Service,#0F172A,#FFFFFF,#334155,#FFFFFF,#0369A1,#FFFFFF,#F8FAFC,#020617,#FFFFFF,#020617,#E8ECF1,#64748B,#E2E8F0,#DC2626,#FFFFFF,#0F172A,High contrast navy + blue
-14,Fintech/Crypto,#F59E0B,#0F172A,#FBBF24,#0F172A,#8B5CF6,#FFFFFF,#0F172A,#F8FAFC,#222735,#F8FAFC,#272F42,#94A3B8,#334155,#EF4444,#FFFFFF,#F59E0B,Gold trust + purple tech
-15,Social Media App,#E11D48,#FFFFFF,#FB7185,#0F172A,#2563EB,#FFFFFF,#FFF1F2,#881337,#FFFFFF,#881337,#F0ECF2,#64748B,#FECDD3,#DC2626,#FFFFFF,#E11D48,Vibrant rose + engagement blue
-16,Productivity Tool,#0D9488,#FFFFFF,#14B8A6,#0F172A,#EA580C,#FFFFFF,#F0FDFA,#134E4A,#FFFFFF,#134E4A,#E8F1F4,#64748B,#99F6E4,#DC2626,#FFFFFF,#0D9488,Teal focus + action orange [Accent adjusted from #F97316 for WCAG 3:1]
-17,Design System/Component Library,#4F46E5,#FFFFFF,#6366F1,#FFFFFF,#EA580C,#FFFFFF,#EEF2FF,#312E81,#FFFFFF,#312E81,#EBEEF8,#64748B,#C7D2FE,#DC2626,#FFFFFF,#4F46E5,Indigo brand + doc hierarchy [Accent adjusted from #F97316 for WCAG 3:1]
-18,AI/Chatbot Platform,#7C3AED,#FFFFFF,#A78BFA,#0F172A,#0891B2,#FFFFFF,#FAF5FF,#1E1B4B,#FFFFFF,#1E1B4B,#ECEEF9,#64748B,#DDD6FE,#DC2626,#FFFFFF,#7C3AED,AI purple + cyan interactions [Accent adjusted from #06B6D4 for WCAG 3:1]
-19,NFT/Web3 Platform,#8B5CF6,#FFFFFF,#A78BFA,#0F172A,#FBBF24,#0F172A,#0F0F23,#F8FAFC,#1E1D35,#F8FAFC,#27273B,#94A3B8,#4C1D95,#EF4444,#FFFFFF,#8B5CF6,Purple tech + gold value
-20,Creator Economy Platform,#EC4899,#FFFFFF,#F472B6,#0F172A,#EA580C,#FFFFFF,#FDF2F8,#831843,#FFFFFF,#831843,#F1EEF5,#64748B,#FBCFE8,#DC2626,#FFFFFF,#EC4899,Creator pink + engagement orange [Accent adjusted from #F97316 for WCAG 3:1]
-21,Remote Work/Collaboration Tool,#6366F1,#FFFFFF,#818CF8,#0F172A,#059669,#FFFFFF,#F5F3FF,#312E81,#FFFFFF,#312E81,#EBEFF9,#64748B,#E0E7FF,#DC2626,#FFFFFF,#6366F1,Calm indigo + success green [Accent adjusted from #10B981 for WCAG 3:1]
-22,Mental Health App,#8B5CF6,#FFFFFF,#C4B5FD,#0F172A,#059669,#FFFFFF,#FAF5FF,#4C1D95,#FFFFFF,#4C1D95,#EDEFF9,#64748B,#EDE9FE,#DC2626,#FFFFFF,#8B5CF6,Calming lavender + wellness green [Accent adjusted from #10B981 for WCAG 3:1]
-23,Pet Tech App,#F97316,#0F172A,#FB923C,#0F172A,#2563EB,#FFFFFF,#FFF7ED,#9A3412,#FFFFFF,#9A3412,#F1F0F0,#64748B,#FED7AA,#DC2626,#FFFFFF,#F97316,Playful orange + trust blue
-24,Smart Home/IoT Dashboard,#1E293B,#FFFFFF,#334155,#FFFFFF,#22C55E,#0F172A,#0F172A,#F8FAFC,#1B2336,#F8FAFC,#272F42,#94A3B8,#475569,#EF4444,#FFFFFF,#1E293B,Dark tech + status green
-25,EV/Charging Ecosystem,#0891B2,#FFFFFF,#22D3EE,#0F172A,#16A34A,#FFFFFF,#ECFEFF,#164E63,#FFFFFF,#164E63,#E8F1F6,#64748B,#A5F3FC,#DC2626,#FFFFFF,#0891B2,Electric cyan + eco green [Accent adjusted from #22C55E for WCAG 3:1]
-26,Subscription Box Service,#D946EF,#FFFFFF,#E879F9,#0F172A,#EA580C,#FFFFFF,#FDF4FF,#86198F,#FFFFFF,#86198F,#F0EEF9,#64748B,#F5D0FE,#DC2626,#FFFFFF,#D946EF,Excitement purple + urgency orange [Accent adjusted from #F97316 for WCAG 3:1]
-27,Podcast Platform,#1E1B4B,#FFFFFF,#312E81,#FFFFFF,#F97316,#0F172A,#0F0F23,#F8FAFC,#1B1B30,#F8FAFC,#27273B,#94A3B8,#4338CA,#EF4444,#FFFFFF,#1E1B4B,Dark audio + warm accent
-28,Dating App,#E11D48,#FFFFFF,#FB7185,#0F172A,#EA580C,#FFFFFF,#FFF1F2,#881337,#FFFFFF,#881337,#F0ECF2,#64748B,#FECDD3,#DC2626,#FFFFFF,#E11D48,Romantic rose + warm orange [Accent adjusted from #F97316 for WCAG 3:1]
-29,Micro-Credentials/Badges Platform,#0369A1,#FFFFFF,#0EA5E9,#0F172A,#A16207,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E7EFF5,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0369A1,Trust blue + achievement gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-30,Knowledge Base/Documentation,#475569,#FFFFFF,#64748B,#FFFFFF,#2563EB,#FFFFFF,#F8FAFC,#1E293B,#FFFFFF,#1E293B,#EAEFF3,#64748B,#E2E8F0,#DC2626,#FFFFFF,#475569,Neutral grey + link blue
-31,Hyperlocal Services,#059669,#FFFFFF,#10B981,#0F172A,#EA580C,#FFFFFF,#ECFDF5,#064E3B,#FFFFFF,#064E3B,#E8F1F3,#64748B,#A7F3D0,#DC2626,#FFFFFF,#059669,Location green + action orange [Accent adjusted from #F97316 for WCAG 3:1]
-32,Beauty/Spa/Wellness Service,#EC4899,#FFFFFF,#F9A8D4,#0F172A,#8B5CF6,#FFFFFF,#FDF2F8,#831843,#FFFFFF,#831843,#F1EEF5,#64748B,#FBCFE8,#DC2626,#FFFFFF,#EC4899,Soft pink + lavender luxury
-33,Luxury/Premium Brand,#1C1917,#FFFFFF,#44403C,#FFFFFF,#A16207,#FFFFFF,#FAFAF9,#0C0A09,#FFFFFF,#0C0A09,#E8ECF0,#64748B,#D6D3D1,#DC2626,#FFFFFF,#1C1917,Premium black + gold accent [Accent adjusted from #CA8A04 for WCAG 3:1]
-34,Restaurant/Food Service,#DC2626,#FFFFFF,#F87171,#0F172A,#A16207,#FFFFFF,#FEF2F2,#450A0A,#FFFFFF,#450A0A,#F0EDF1,#64748B,#FECACA,#DC2626,#FFFFFF,#DC2626,Appetizing red + warm gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-35,Fitness/Gym App,#F97316,#0F172A,#FB923C,#0F172A,#22C55E,#0F172A,#1F2937,#F8FAFC,#313742,#F8FAFC,#37414F,#94A3B8,#374151,#EF4444,#FFFFFF,#F97316,Energy orange + success green
-36,Real Estate/Property,#0F766E,#FFFFFF,#14B8A6,#0F172A,#0369A1,#FFFFFF,#F0FDFA,#134E4A,#FFFFFF,#134E4A,#E8F0F3,#64748B,#99F6E4,#DC2626,#FFFFFF,#0F766E,Trust teal + professional blue
-37,Travel/Tourism Agency,#0EA5E9,#0F172A,#38BDF8,#0F172A,#EA580C,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E8F2F8,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0EA5E9,Sky blue + adventure orange [Accent adjusted from #F97316 for WCAG 3:1]
-38,Hotel/Hospitality,#1E3A8A,#FFFFFF,#3B82F6,#FFFFFF,#A16207,#FFFFFF,#F8FAFC,#1E40AF,#FFFFFF,#1E40AF,#E9EEF5,#64748B,#BFDBFE,#DC2626,#FFFFFF,#1E3A8A,Luxury navy + gold service [Accent adjusted from #CA8A04 for WCAG 3:1]
-39,Wedding/Event Planning,#DB2777,#FFFFFF,#F472B6,#0F172A,#A16207,#FFFFFF,#FDF2F8,#831843,#FFFFFF,#831843,#F0EDF4,#64748B,#FBCFE8,#DC2626,#FFFFFF,#DB2777,Romantic pink + elegant gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-40,Legal Services,#1E3A8A,#FFFFFF,#1E40AF,#FFFFFF,#B45309,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#E9EEF5,#64748B,#CBD5E1,#DC2626,#FFFFFF,#1E3A8A,Authority navy + trust gold
-41,Insurance Platform,#0369A1,#FFFFFF,#0EA5E9,#0F172A,#16A34A,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E7EFF5,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0369A1,Security blue + protected green [Accent adjusted from #22C55E for WCAG 3:1]
-42,Banking/Traditional Finance,#0F172A,#FFFFFF,#1E3A8A,#FFFFFF,#A16207,#FFFFFF,#F8FAFC,#020617,#FFFFFF,#020617,#E8ECF1,#64748B,#E2E8F0,#DC2626,#FFFFFF,#0F172A,Trust navy + premium gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-43,Online Course/E-learning,#0D9488,#FFFFFF,#2DD4BF,#0F172A,#EA580C,#FFFFFF,#F0FDFA,#134E4A,#FFFFFF,#134E4A,#E8F1F4,#64748B,#5EEAD4,#DC2626,#FFFFFF,#0D9488,Progress teal + achievement orange [Accent adjusted from #F97316 for WCAG 3:1]
-44,Non-profit/Charity,#0891B2,#FFFFFF,#22D3EE,#0F172A,#EA580C,#FFFFFF,#ECFEFF,#164E63,#FFFFFF,#164E63,#E8F1F6,#64748B,#A5F3FC,#DC2626,#FFFFFF,#0891B2,Compassion blue + action orange [Accent adjusted from #F97316 for WCAG 3:1]
-45,Music Streaming,#1E1B4B,#FFFFFF,#4338CA,#FFFFFF,#22C55E,#0F172A,#0F0F23,#F8FAFC,#1B1B30,#F8FAFC,#27273B,#94A3B8,#312E81,#EF4444,#FFFFFF,#1E1B4B,Dark audio + play green
-46,Video Streaming/OTT,#0F0F23,#FFFFFF,#1E1B4B,#FFFFFF,#E11D48,#FFFFFF,#000000,#F8FAFC,#0C0C0D,#F8FAFC,#181818,#94A3B8,#312E81,#EF4444,#FFFFFF,#0F0F23,Cinema dark + play red
-47,Job Board/Recruitment,#0369A1,#FFFFFF,#0EA5E9,#0F172A,#16A34A,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E7EFF5,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0369A1,Professional blue + success green [Accent adjusted from #22C55E for WCAG 3:1]
-48,Marketplace (P2P),#7C3AED,#FFFFFF,#A78BFA,#0F172A,#16A34A,#FFFFFF,#FAF5FF,#4C1D95,#FFFFFF,#4C1D95,#ECEEF9,#64748B,#DDD6FE,#DC2626,#FFFFFF,#7C3AED,Trust purple + transaction green [Accent adjusted from #22C55E for WCAG 3:1]
-49,Logistics/Delivery,#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#EA580C,#FFFFFF,#EFF6FF,#1E40AF,#FFFFFF,#1E40AF,#E9EFF8,#64748B,#BFDBFE,#DC2626,#FFFFFF,#2563EB,Tracking blue + delivery orange [Accent adjusted from #F97316 for WCAG 3:1]
-50,Agriculture/Farm Tech,#15803D,#FFFFFF,#22C55E,#0F172A,#A16207,#FFFFFF,#F0FDF4,#14532D,#FFFFFF,#14532D,#E8F0F1,#64748B,#BBF7D0,#DC2626,#FFFFFF,#15803D,Earth green + harvest gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-51,Construction/Architecture,#64748B,#FFFFFF,#94A3B8,#0F172A,#EA580C,#FFFFFF,#F8FAFC,#334155,#FFFFFF,#334155,#EBF0F5,#64748B,#E2E8F0,#DC2626,#FFFFFF,#64748B,Industrial grey + safety orange [Accent adjusted from #F97316 for WCAG 3:1]
-52,Automotive/Car Dealership,#1E293B,#FFFFFF,#334155,#FFFFFF,#DC2626,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#E9EDF1,#64748B,#E2E8F0,#DC2626,#FFFFFF,#1E293B,Premium dark + action red
-53,Photography Studio,#18181B,#FFFFFF,#27272A,#FFFFFF,#F8FAFC,#0F172A,#000000,#FAFAFA,#0C0C0C,#FAFAFA,#181818,#94A3B8,#3F3F46,#EF4444,#FFFFFF,#18181B,Pure black + white contrast
-54,Coworking Space,#F59E0B,#0F172A,#FBBF24,#0F172A,#2563EB,#FFFFFF,#FFFBEB,#78350F,#FFFFFF,#78350F,#F1F2EF,#64748B,#FDE68A,#DC2626,#FFFFFF,#F59E0B,Energetic amber + booking blue
-55,Home Services (Plumber/Electrician),#1E40AF,#FFFFFF,#3B82F6,#FFFFFF,#EA580C,#FFFFFF,#EFF6FF,#1E3A8A,#FFFFFF,#1E3A8A,#E9EEF6,#64748B,#BFDBFE,#DC2626,#FFFFFF,#1E40AF,Professional blue + urgent orange [Accent adjusted from #F97316 for WCAG 3:1]
-56,Childcare/Daycare,#F472B6,#0F172A,#FBCFE8,#0F172A,#16A34A,#FFFFFF,#FDF2F8,#9D174D,#FFFFFF,#9D174D,#F1F0F6,#64748B,#FCE7F3,#DC2626,#FFFFFF,#F472B6,Soft pink + safe green [Accent adjusted from #22C55E for WCAG 3:1]
-57,Senior Care/Elderly,#0369A1,#FFFFFF,#38BDF8,#0F172A,#16A34A,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E7EFF5,#64748B,#E0F2FE,#DC2626,#FFFFFF,#0369A1,Calm blue + reassuring green [Accent adjusted from #22C55E for WCAG 3:1]
-58,Medical Clinic,#0891B2,#FFFFFF,#22D3EE,#0F172A,#16A34A,#FFFFFF,#F0FDFA,#134E4A,#FFFFFF,#134E4A,#E8F1F6,#64748B,#CCFBF1,#DC2626,#FFFFFF,#0891B2,Medical teal + health green [Accent adjusted from #22C55E for WCAG 3:1]
-59,Pharmacy/Drug Store,#15803D,#FFFFFF,#22C55E,#0F172A,#0369A1,#FFFFFF,#F0FDF4,#14532D,#FFFFFF,#14532D,#E8F0F1,#64748B,#BBF7D0,#DC2626,#FFFFFF,#15803D,Pharmacy green + trust blue
-60,Dental Practice,#0EA5E9,#0F172A,#38BDF8,#0F172A,#0EA5E9,#0F172A,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E8F2F8,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0EA5E9,Fresh blue + smile yellow [Accent adjusted from #FBBF24 for WCAG 3:1]
-61,Veterinary Clinic,#0D9488,#FFFFFF,#14B8A6,#0F172A,#EA580C,#FFFFFF,#F0FDFA,#134E4A,#FFFFFF,#134E4A,#E8F1F4,#64748B,#99F6E4,#DC2626,#FFFFFF,#0D9488,Caring teal + warm orange [Accent adjusted from #F97316 for WCAG 3:1]
-62,Florist/Plant Shop,#15803D,#FFFFFF,#22C55E,#0F172A,#EC4899,#FFFFFF,#F0FDF4,#14532D,#FFFFFF,#14532D,#E8F0F1,#64748B,#BBF7D0,#DC2626,#FFFFFF,#15803D,Natural green + floral pink
-63,Bakery/Cafe,#92400E,#FFFFFF,#B45309,#FFFFFF,#92400E,#FFFFFF,#FEF3C7,#78350F,#FFFFFF,#78350F,#EDEEF0,#64748B,#FDE68A,#DC2626,#FFFFFF,#92400E,Warm brown + cream white [Accent adjusted from #F8FAFC for WCAG 3:1]
-64,Brewery/Winery,#7C2D12,#FFFFFF,#B91C1C,#FFFFFF,#A16207,#FFFFFF,#FEF2F2,#450A0A,#FFFFFF,#450A0A,#ECEDF0,#64748B,#FECACA,#DC2626,#FFFFFF,#7C2D12,Deep burgundy + craft gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-65,Airline,#1E3A8A,#FFFFFF,#3B82F6,#FFFFFF,#EA580C,#FFFFFF,#EFF6FF,#1E40AF,#FFFFFF,#1E40AF,#E9EEF5,#64748B,#BFDBFE,#DC2626,#FFFFFF,#1E3A8A,Sky blue + booking orange [Accent adjusted from #F97316 for WCAG 3:1]
-66,News/Media Platform,#DC2626,#FFFFFF,#EF4444,#FFFFFF,#1E40AF,#FFFFFF,#FEF2F2,#450A0A,#FFFFFF,#450A0A,#F0EDF1,#64748B,#FECACA,#DC2626,#FFFFFF,#DC2626,Breaking red + link blue
-67,Magazine/Blog,#18181B,#FFFFFF,#3F3F46,#FFFFFF,#EC4899,#FFFFFF,#FAFAFA,#09090B,#FFFFFF,#09090B,#E8ECF0,#64748B,#E4E4E7,#DC2626,#FFFFFF,#18181B,Editorial black + accent pink
-68,Freelancer Platform,#6366F1,#FFFFFF,#818CF8,#0F172A,#16A34A,#FFFFFF,#EEF2FF,#312E81,#FFFFFF,#312E81,#EBEFF9,#64748B,#C7D2FE,#DC2626,#FFFFFF,#6366F1,Creative indigo + hire green [Accent adjusted from #22C55E for WCAG 3:1]
-69,Marketing Agency,#EC4899,#FFFFFF,#F472B6,#0F172A,#0891B2,#FFFFFF,#FDF2F8,#831843,#FFFFFF,#831843,#F1EEF5,#64748B,#FBCFE8,#DC2626,#FFFFFF,#EC4899,Bold pink + creative cyan [Accent adjusted from #06B6D4 for WCAG 3:1]
-70,Event Management,#7C3AED,#FFFFFF,#A78BFA,#0F172A,#EA580C,#FFFFFF,#FAF5FF,#4C1D95,#FFFFFF,#4C1D95,#ECEEF9,#64748B,#DDD6FE,#DC2626,#FFFFFF,#7C3AED,Excitement purple + action orange [Accent adjusted from #F97316 for WCAG 3:1]
-71,Membership/Community,#7C3AED,#FFFFFF,#A78BFA,#0F172A,#16A34A,#FFFFFF,#FAF5FF,#4C1D95,#FFFFFF,#4C1D95,#ECEEF9,#64748B,#DDD6FE,#DC2626,#FFFFFF,#7C3AED,Community purple + join green [Accent adjusted from #22C55E for WCAG 3:1]
-72,Newsletter Platform,#0369A1,#FFFFFF,#0EA5E9,#0F172A,#EA580C,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E7EFF5,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0369A1,Trust blue + subscribe orange [Accent adjusted from #F97316 for WCAG 3:1]
-73,Digital Products/Downloads,#6366F1,#FFFFFF,#818CF8,#0F172A,#16A34A,#FFFFFF,#EEF2FF,#312E81,#FFFFFF,#312E81,#EBEFF9,#64748B,#C7D2FE,#DC2626,#FFFFFF,#6366F1,Digital indigo + buy green [Accent adjusted from #22C55E for WCAG 3:1]
-74,Church/Religious Organization,#7C3AED,#FFFFFF,#A78BFA,#0F172A,#A16207,#FFFFFF,#FAF5FF,#4C1D95,#FFFFFF,#4C1D95,#ECEEF9,#64748B,#DDD6FE,#DC2626,#FFFFFF,#7C3AED,Spiritual purple + warm gold [Accent adjusted from #CA8A04 for WCAG 3:1]
-75,Sports Team/Club,#DC2626,#FFFFFF,#EF4444,#FFFFFF,#DC2626,#FFFFFF,#FEF2F2,#7F1D1D,#FFFFFF,#7F1D1D,#F0EDF1,#64748B,#FECACA,#DC2626,#FFFFFF,#DC2626,Team red + championship gold [Accent adjusted from #FBBF24 for WCAG 3:1]
-76,Museum/Gallery,#18181B,#FFFFFF,#27272A,#FFFFFF,#18181B,#FFFFFF,#FAFAFA,#09090B,#FFFFFF,#09090B,#E8ECF0,#64748B,#E4E4E7,#DC2626,#FFFFFF,#18181B,Gallery black + white space [Accent adjusted from #F8FAFC for WCAG 3:1]
-77,Theater/Cinema,#1E1B4B,#FFFFFF,#312E81,#FFFFFF,#CA8A04,#0F172A,#0F0F23,#F8FAFC,#1B1B30,#F8FAFC,#27273B,#94A3B8,#4338CA,#EF4444,#FFFFFF,#1E1B4B,Dramatic dark + spotlight gold
-78,Language Learning App,#4F46E5,#FFFFFF,#818CF8,#0F172A,#16A34A,#FFFFFF,#EEF2FF,#312E81,#FFFFFF,#312E81,#EBEEF8,#64748B,#C7D2FE,#DC2626,#FFFFFF,#4F46E5,Learning indigo + progress green [Accent adjusted from #22C55E for WCAG 3:1]
-79,Coding Bootcamp,#0F172A,#FFFFFF,#1E293B,#FFFFFF,#22C55E,#0F172A,#020617,#F8FAFC,#0E1223,#F8FAFC,#1A1E2F,#94A3B8,#334155,#EF4444,#FFFFFF,#0F172A,Terminal dark + success green
-80,Cybersecurity Platform,#00FF41,#0F172A,#0D0D0D,#FFFFFF,#FF3333,#FFFFFF,#000000,#E0E0E0,#0C130E,#E0E0E0,#181818,#94A3B8,#1F1F1F,#EF4444,#FFFFFF,#00FF41,Matrix green + alert red
-81,Developer Tool / IDE,#1E293B,#FFFFFF,#334155,#FFFFFF,#22C55E,#0F172A,#0F172A,#F8FAFC,#1B2336,#F8FAFC,#272F42,#94A3B8,#475569,#EF4444,#FFFFFF,#1E293B,Code dark + run green
-82,Biotech / Life Sciences,#0EA5E9,#0F172A,#0284C7,#FFFFFF,#059669,#FFFFFF,#F0F9FF,#0C4A6E,#FFFFFF,#0C4A6E,#E8F2F8,#64748B,#BAE6FD,#DC2626,#FFFFFF,#0EA5E9,DNA blue + life green [Accent adjusted from #10B981 for WCAG 3:1]
-83,Space Tech / Aerospace,#F8FAFC,#0F172A,#94A3B8,#0F172A,#3B82F6,#FFFFFF,#0B0B10,#F8FAFC,#1E1E23,#F8FAFC,#232328,#94A3B8,#1E293B,#EF4444,#FFFFFF,#F8FAFC,Star white + launch blue
-84,Architecture / Interior,#171717,#FFFFFF,#404040,#FFFFFF,#A16207,#FFFFFF,#FFFFFF,#171717,#FFFFFF,#171717,#E8ECF0,#64748B,#E5E5E5,#DC2626,#FFFFFF,#171717,Minimal black + accent gold [Accent adjusted from #D4AF37 for WCAG 3:1]
-85,Quantum Computing Interface,#00FFFF,#0F172A,#7B61FF,#FFFFFF,#FF00FF,#FFFFFF,#050510,#E0E0FF,#101823,#E0E0FF,#1D1D28,#94A3B8,#333344,#EF4444,#FFFFFF,#00FFFF,Quantum cyan + interference purple
-86,Biohacking / Longevity App,#FF4D4D,#FFFFFF,#4D94FF,#FFFFFF,#059669,#FFFFFF,#F5F5F7,#1C1C1E,#FFFFFF,#1C1C1E,#F2EEF2,#64748B,#E5E5EA,#DC2626,#FFFFFF,#FF4D4D,Bio red/blue + vitality green [Accent adjusted from #00E676 for WCAG 3:1]
-87,Autonomous Drone Fleet Manager,#00FF41,#0F172A,#008F11,#FFFFFF,#FF3333,#FFFFFF,#0D1117,#E6EDF3,#182424,#E6EDF3,#25292F,#94A3B8,#30363D,#EF4444,#FFFFFF,#00FF41,Terminal green + alert red
-88,Generative Art Platform,#18181B,#FFFFFF,#3F3F46,#FFFFFF,#EC4899,#FFFFFF,#FAFAFA,#09090B,#FFFFFF,#09090B,#E8ECF0,#64748B,#E4E4E7,#DC2626,#FFFFFF,#18181B,Canvas neutral + creative pink
-89,Spatial Computing OS / App,#FFFFFF,#0F172A,#E5E5E5,#0F172A,#FFFFFF,#0F172A,#888888,#000000,#999999,#000000,#777777,#D4D4D4,#CCCCCC,#FF3B30,#FFFFFF,#007AFF,Glass white + system blue [Accent adjusted from #007AFF for WCAG 3:1]
-90,Sustainable Energy / Climate Tech,#059669,#FFFFFF,#10B981,#0F172A,#059669,#FFFFFF,#ECFDF5,#064E3B,#FFFFFF,#064E3B,#E8F1F3,#64748B,#A7F3D0,#DC2626,#FFFFFF,#059669,Nature green + solar gold [Accent adjusted from #FBBF24 for WCAG 3:1]
-91,Personal Finance Tracker,#1E40AF,#FFFFFF,#3B82F6,#FFFFFF,#059669,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#101A34,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#1E40AF,Trust blue + profit green on dark
-92,Chat & Messaging App,#2563EB,#FFFFFF,#6366F1,#FFFFFF,#059669,#FFFFFF,#FFFFFF,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Messenger blue + online green
-93,Notes & Writing App,#78716C,#FFFFFF,#A8A29E,#FFFFFF,#D97706,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#F6F6F6,#64748B,#EEEDED,#DC2626,#FFFFFF,#78716C,Warm ink + amber accent on cream
-94,Habit Tracker,#D97706,#FFFFFF,#F59E0B,#0F172A,#059669,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#FCF6F0,#64748B,#FAEEE1,#DC2626,#FFFFFF,#D97706,Streak amber + habit green
-95,Food Delivery / On-Demand,#EA580C,#FFFFFF,#F97316,#FFFFFF,#2563EB,#FFFFFF,#FFF7ED,#0F172A,#FFFFFF,#0F172A,#FDF4F0,#64748B,#FCEAE1,#DC2626,#FFFFFF,#EA580C,Appetizing orange + trust blue
-96,Ride Hailing / Transportation,#1E293B,#FFFFFF,#334155,#FFFFFF,#2563EB,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#10182B,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#1E293B,Map dark + route blue
-97,Recipe & Cooking App,#9A3412,#FFFFFF,#C2410C,#FFFFFF,#059669,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#F8F2F0,#64748B,#F2E6E2,#DC2626,#FFFFFF,#9A3412,Warm terracotta + fresh green
-98,Meditation & Mindfulness,#7C3AED,#FFFFFF,#8B5CF6,#FFFFFF,#059669,#FFFFFF,#FAF5FF,#0F172A,#FFFFFF,#0F172A,#F7F3FD,#64748B,#EFE7FC,#DC2626,#FFFFFF,#7C3AED,Calm lavender + mindful green
-99,Weather App,#0284C7,#FFFFFF,#0EA5E9,#FFFFFF,#F59E0B,#0F172A,#F0F9FF,#0F172A,#FFFFFF,#0F172A,#EFF7FB,#64748B,#E0F0F8,#DC2626,#FFFFFF,#0284C7,Sky blue + sun amber
-100,Diary & Journal App,#92400E,#FFFFFF,#A16207,#FFFFFF,#6366F1,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#F8F3F0,#64748B,#F1E8E2,#DC2626,#FFFFFF,#92400E,Warm journal brown + ink violet
-101,CRM & Client Management,#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#059669,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Professional blue + deal green
-102,Inventory & Stock Management,#334155,#FFFFFF,#475569,#FFFFFF,#059669,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F2F3F4,#64748B,#E6E8EA,#DC2626,#FFFFFF,#334155,Industrial slate + stock green
-103,Flashcard & Study Tool,#7C3AED,#FFFFFF,#8B5CF6,#FFFFFF,#059669,#FFFFFF,#FAF5FF,#0F172A,#FFFFFF,#0F172A,#F7F3FD,#64748B,#EFE7FC,#DC2626,#FFFFFF,#7C3AED,Study purple + correct green
-104,Booking & Appointment App,#0284C7,#FFFFFF,#0EA5E9,#FFFFFF,#059669,#FFFFFF,#F0F9FF,#0F172A,#FFFFFF,#0F172A,#EFF7FB,#64748B,#E0F0F8,#DC2626,#FFFFFF,#0284C7,Calendar blue + available green
-105,Invoice & Billing Tool,#1E3A5F,#FFFFFF,#2563EB,#FFFFFF,#059669,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F3F5,#64748B,#E4E7EB,#DC2626,#FFFFFF,#1E3A5F,Navy professional + paid green
-106,Grocery & Shopping List,#059669,#FFFFFF,#10B981,#FFFFFF,#D97706,#FFFFFF,#ECFDF5,#0F172A,#FFFFFF,#0F172A,#F0F8F6,#64748B,#E1F2ED,#DC2626,#FFFFFF,#059669,Fresh green + food amber
-107,Timer & Pomodoro,#DC2626,#FFFFFF,#EF4444,#FFFFFF,#059669,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#1F1829,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#DC2626,Focus red on dark + break green
-108,Parenting & Baby Tracker,#EC4899,#FFFFFF,#F472B6,#FFFFFF,#0284C7,#FFFFFF,#FDF2F8,#0F172A,#FFFFFF,#0F172A,#FDF4F8,#64748B,#FCE9F2,#DC2626,#FFFFFF,#EC4899,Soft pink + trust blue
-109,Scanner & Document Manager,#1E293B,#FFFFFF,#334155,#FFFFFF,#2563EB,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F2F3,#64748B,#E4E5E7,#DC2626,#FFFFFF,#1E293B,Document grey + scan blue
-110,Calendar & Scheduling App,#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#059669,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Calendar blue + event green
-111,Password Manager,#1E3A5F,#FFFFFF,#334155,#FFFFFF,#059669,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#10192E,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#1E3A5F,Vault dark blue + secure green
-112,Expense Splitter / Bill Split,#059669,#FFFFFF,#10B981,#FFFFFF,#DC2626,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F0F8F6,#64748B,#E1F2ED,#DC2626,#FFFFFF,#059669,Balance green + owe red
-113,Voice Recorder & Memo,#DC2626,#FFFFFF,#EF4444,#FFFFFF,#2563EB,#FFFFFF,#FFFFFF,#0F172A,#FFFFFF,#0F172A,#FCF1F1,#64748B,#FAE4E4,#DC2626,#FFFFFF,#DC2626,Recording red + waveform blue
-114,Bookmark & Read-Later,#D97706,#FFFFFF,#F59E0B,#0F172A,#2563EB,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#FCF6F0,#64748B,#FAEEE1,#DC2626,#FFFFFF,#D97706,Warm amber + link blue
-115,Translator App,#2563EB,#FFFFFF,#0891B2,#FFFFFF,#EA580C,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Global blue + teal + accent orange
-116,Calculator & Unit Converter,#EA580C,#FFFFFF,#F97316,#FFFFFF,#2563EB,#FFFFFF,#1C1917,#FFFFFF,#262321,#FFFFFF,#2C1E16,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#EA580C,Operation orange on dark
-117,Alarm & World Clock,#D97706,#FFFFFF,#F59E0B,#0F172A,#6366F1,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#1F1E27,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#D97706,Time amber + night indigo on dark
-118,File Manager & Transfer,#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#D97706,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Folder blue + file amber
-119,Email Client,#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#DC2626,#FFFFFF,#FFFFFF,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Inbox blue + priority red
-120,Casual Puzzle Game,#EC4899,#FFFFFF,#8B5CF6,#FFFFFF,#F59E0B,#0F172A,#FDF2F8,#0F172A,#FFFFFF,#0F172A,#FDF4F8,#64748B,#FCE9F2,#DC2626,#FFFFFF,#EC4899,Cheerful pink + reward gold
-121,Trivia & Quiz Game,#2563EB,#FFFFFF,#7C3AED,#FFFFFF,#F59E0B,#0F172A,#EFF6FF,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Quiz blue + gold leaderboard
-122,Card & Board Game,#15803D,#FFFFFF,#166534,#FFFFFF,#D97706,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#0F1F2B,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#15803D,Felt green + gold on dark
-123,Idle & Clicker Game,#D97706,#FFFFFF,#F59E0B,#0F172A,#7C3AED,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#FCF6F0,#64748B,#FAEEE1,#DC2626,#FFFFFF,#D97706,Coin gold + prestige purple
-124,Word & Crossword Game,#15803D,#FFFFFF,#059669,#FFFFFF,#D97706,#FFFFFF,#FFFFFF,#0F172A,#FFFFFF,#0F172A,#F0F7F3,#64748B,#E2EFE7,#DC2626,#FFFFFF,#15803D,Word green + letter amber
-125,Arcade & Retro Game,#DC2626,#FFFFFF,#2563EB,#FFFFFF,#22C55E,#0F172A,#0F172A,#FFFFFF,#192134,#FFFFFF,#1F1829,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#DC2626,Neon red+blue on dark + score green
-126,Photo Editor & Filters,#7C3AED,#FFFFFF,#6366F1,#FFFFFF,#0891B2,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#171939,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#7C3AED,Editor violet + filter cyan on dark
-127,Short Video Editor,#EC4899,#FFFFFF,#DB2777,#FFFFFF,#2563EB,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#201A32,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#EC4899,Video pink on dark + timeline blue
-128,Drawing & Sketching Canvas,#7C3AED,#FFFFFF,#8B5CF6,#FFFFFF,#0891B2,#FFFFFF,#1C1917,#FFFFFF,#262321,#FFFFFF,#231B28,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#7C3AED,Canvas purple + tool teal on dark
-129,Music Creation & Beat Maker,#7C3AED,#FFFFFF,#6366F1,#FFFFFF,#22C55E,#0F172A,#0F172A,#FFFFFF,#192134,#FFFFFF,#171939,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#7C3AED,Studio purple + waveform green on dark
-130,Meme & Sticker Maker,#EC4899,#FFFFFF,#F59E0B,#0F172A,#2563EB,#FFFFFF,#FFFFFF,#0F172A,#FFFFFF,#0F172A,#FDF4F8,#64748B,#FCE9F2,#DC2626,#FFFFFF,#EC4899,Viral pink + comedy yellow + share blue
-131,AI Photo & Avatar Generator,#7C3AED,#FFFFFF,#6366F1,#FFFFFF,#EC4899,#FFFFFF,#FAF5FF,#0F172A,#FFFFFF,#0F172A,#F7F3FD,#64748B,#EFE7FC,#DC2626,#FFFFFF,#7C3AED,AI purple + generation pink
-132,Link-in-Bio Page Builder,#2563EB,#FFFFFF,#7C3AED,#FFFFFF,#EC4899,#FFFFFF,#FFFFFF,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Brand blue + creator purple
-133,Wardrobe & Outfit Planner,#BE185D,#FFFFFF,#EC4899,#FFFFFF,#D97706,#FFFFFF,#FDF2F8,#0F172A,#FFFFFF,#0F172A,#FBF1F5,#64748B,#F7E3EB,#DC2626,#FFFFFF,#BE185D,Fashion rose + gold accent
-134,Plant Care Tracker,#15803D,#FFFFFF,#059669,#FFFFFF,#D97706,#FFFFFF,#F0FDF4,#0F172A,#FFFFFF,#0F172A,#F0F7F3,#64748B,#E2EFE7,#DC2626,#FFFFFF,#15803D,Nature green + sun yellow
-135,Book & Reading Tracker,#78716C,#FFFFFF,#92400E,#FFFFFF,#D97706,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#F6F6F6,#64748B,#EEEDED,#DC2626,#FFFFFF,#78716C,Book brown + page amber
-136,Couple & Relationship App,#BE185D,#FFFFFF,#EC4899,#FFFFFF,#DC2626,#FFFFFF,#FDF2F8,#0F172A,#FFFFFF,#0F172A,#FBF1F5,#64748B,#F7E3EB,#DC2626,#FFFFFF,#BE185D,Romance rose + love red
-137,Family Calendar & Chores,#2563EB,#FFFFFF,#059669,#FFFFFF,#D97706,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Family blue + chore green
-138,Mood Tracker,#7C3AED,#FFFFFF,#6366F1,#FFFFFF,#D97706,#FFFFFF,#FAF5FF,#0F172A,#FFFFFF,#0F172A,#F7F3FD,#64748B,#EFE7FC,#DC2626,#FFFFFF,#7C3AED,Mood purple + insight amber
-139,Gift & Wishlist,#DC2626,#FFFFFF,#D97706,#FFFFFF,#EC4899,#FFFFFF,#FFF1F2,#0F172A,#FFFFFF,#0F172A,#FCF1F1,#64748B,#FAE4E4,#DC2626,#FFFFFF,#DC2626,Gift red + gold + surprise pink
-140,Running & Cycling GPS,#EA580C,#FFFFFF,#F97316,#FFFFFF,#059669,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#201C27,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#EA580C,Energetic orange + pace green on dark
-141,Yoga & Stretching Guide,#6B7280,#FFFFFF,#78716C,#FFFFFF,#0891B2,#FFFFFF,#F5F5F0,#0F172A,#FFFFFF,#0F172A,#F6F6F7,#64748B,#EDEEEF,#DC2626,#FFFFFF,#6B7280,Sage neutral + calm teal
-142,Sleep Tracker,#4338CA,#FFFFFF,#6366F1,#FFFFFF,#7C3AED,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#131936,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#4338CA,Night indigo + dream violet on dark
-143,Calorie & Nutrition Counter,#059669,#FFFFFF,#10B981,#FFFFFF,#EA580C,#FFFFFF,#ECFDF5,#0F172A,#FFFFFF,#0F172A,#F0F8F6,#64748B,#E1F2ED,#DC2626,#FFFFFF,#059669,Healthy green + macro orange
-144,Period & Cycle Tracker,#BE185D,#FFFFFF,#EC4899,#FFFFFF,#7C3AED,#FFFFFF,#FDF2F8,#0F172A,#FFFFFF,#0F172A,#FBF1F5,#64748B,#F7E3EB,#DC2626,#FFFFFF,#BE185D,Blush rose + fertility lavender
-145,Medication & Pill Reminder,#0284C7,#FFFFFF,#0891B2,#FFFFFF,#DC2626,#FFFFFF,#F0F9FF,#0F172A,#FFFFFF,#0F172A,#EFF7FB,#64748B,#E0F0F8,#DC2626,#FFFFFF,#0284C7,Medical blue + alert red
-146,Water & Hydration Reminder,#0284C7,#FFFFFF,#06B6D4,#FFFFFF,#0891B2,#FFFFFF,#F0F9FF,#0F172A,#FFFFFF,#0F172A,#EFF7FB,#64748B,#E0F0F8,#DC2626,#FFFFFF,#0284C7,Refreshing blue + water cyan
-147,Fasting & Intermittent Timer,#6366F1,#FFFFFF,#4338CA,#FFFFFF,#059669,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#151D39,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#6366F1,Fasting indigo on dark + eating green
-148,Anonymous Community / Confession,#475569,#FFFFFF,#334155,#FFFFFF,#0891B2,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#131B2F,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#475569,Protective grey + subtle teal on dark
-149,Local Events & Discovery,#EA580C,#FFFFFF,#F97316,#FFFFFF,#2563EB,#FFFFFF,#FFF7ED,#0F172A,#FFFFFF,#0F172A,#FDF4F0,#64748B,#FCEAE1,#DC2626,#FFFFFF,#EA580C,Event orange + map blue
-150,Study Together / Virtual Coworking,#2563EB,#FFFFFF,#3B82F6,#FFFFFF,#059669,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Focus blue + session green
-151,Coding Challenge & Practice,#22C55E,#0F172A,#059669,#FFFFFF,#D97706,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#10242E,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#22C55E,Code green + difficulty amber on dark
-152,Kids Learning (ABC & Math),#2563EB,#FFFFFF,#F59E0B,#0F172A,#EC4899,#FFFFFF,#EFF6FF,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Learning blue + play yellow + fun pink
-153,Music Instrument Learning,#DC2626,#FFFFFF,#9A3412,#FFFFFF,#D97706,#FFFFFF,#FFFBEB,#0F172A,#FFFFFF,#0F172A,#FCF1F1,#64748B,#FAE4E4,#DC2626,#FFFFFF,#DC2626,Musical red + warm amber
-154,Parking Finder,#2563EB,#FFFFFF,#059669,#FFFFFF,#DC2626,#FFFFFF,#F0F9FF,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Available blue/green + occupied red
-155,Public Transit Guide,#2563EB,#FFFFFF,#0891B2,#FFFFFF,#EA580C,#FFFFFF,#F8FAFC,#0F172A,#FFFFFF,#0F172A,#F1F5FD,#64748B,#E4ECFC,#DC2626,#FFFFFF,#2563EB,Transit blue + line colors
-156,Road Trip Planner,#EA580C,#FFFFFF,#0891B2,#FFFFFF,#D97706,#FFFFFF,#FFF7ED,#0F172A,#FFFFFF,#0F172A,#FDF4F0,#64748B,#FCEAE1,#DC2626,#FFFFFF,#EA580C,Adventure orange + map teal
-157,VPN & Privacy Tool,#1E3A5F,#FFFFFF,#334155,#FFFFFF,#22C55E,#0F172A,#0F172A,#FFFFFF,#192134,#FFFFFF,#10192E,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#1E3A5F,Shield dark + connected green
-158,Emergency SOS & Safety,#DC2626,#FFFFFF,#EF4444,#FFFFFF,#2563EB,#FFFFFF,#FFF1F2,#0F172A,#FFFFFF,#0F172A,#FCF1F1,#64748B,#FAE4E4,#DC2626,#FFFFFF,#DC2626,Alert red + safety blue
-159,Wallpaper & Theme App,#7C3AED,#FFFFFF,#EC4899,#FFFFFF,#2563EB,#FFFFFF,#FAF5FF,#0F172A,#FFFFFF,#0F172A,#F7F3FD,#64748B,#EFE7FC,#DC2626,#FFFFFF,#7C3AED,Aesthetic purple + trending pink
-160,White Noise & Ambient Sound,#475569,#FFFFFF,#334155,#FFFFFF,#4338CA,#FFFFFF,#0F172A,#FFFFFF,#192134,#FFFFFF,#131B2F,#94A3B8,"rgba(255,255,255,0.08)",#DC2626,#FFFFFF,#475569,Ambient grey + deep indigo on dark
-161,Home Decoration & Interior Design,#78716C,#FFFFFF,#A8A29E,#FFFFFF,#D97706,#FFFFFF,#FAF5F2,#0F172A,#FFFFFF,#0F172A,#F6F6F6,#64748B,#EEEDED,#DC2626,#FFFFFF,#78716C,Interior warm grey + gold accent
\ No newline at end of file
diff --git a/.agents/skills/ui-ux-pro-max/data/design.csv b/.agents/skills/ui-ux-pro-max/data/design.csv
deleted file mode 100644
index e6775ce..0000000
--- a/.agents/skills/ui-ux-pro-max/data/design.csv
+++ /dev/null
@@ -1,1776 +0,0 @@
-Bauhaus(包豪斯)
-大胆的几何现代主义,包含圆形、方形和三角形。主色调(红/蓝/黄),边缘鲜明,阴影强烈。功能性与艺术性兼备,带有建构主义的不对称。
-1. 极简主义品牌官网与电商
-2. 工具类与高效率 App
-3. 数字媒体与在线杂志
-
-
-Design Style: Bauhaus (Mobile)
-1. Design Philosophy
-The Bauhaus style embodies the revolutionary principle "form follows function" while celebrating pure geometric beauty and primary color theory. On mobile, this translates to tactile constructivism—the screen is a canvas where elements are physically stacked blocks. The aesthetic creates a high-impact, poster-like experience in the palm of the hand: bold, touch-centric, and unapologetically graphic.
-Vibe: Tactile, Constructivist, Geometric, High-Contrast, Bold, Architectural
-Core Concept: The mobile interface is a vertical geometric composition. Scroll views are not just content streams but stacked layers of colored paper and rigid shapes. The limited screen real estate forces a focus on massive typography and distinct color blocking (Red #D02020, Blue #1040C0, Yellow #F0C020). Every tap should feel mechanical and substantial.
-Key Characteristics:
-● Geometric Purity: UI elements are strictly circles (buttons/avatars) or squares (cards/inputs).
-● Tactile Depth: Hard shadows indicate interactivity; elements look "pressable."
-● Color Blocking: distinct screen sections use solid primary colors to separate content without whitespace.
-● Thick Borders: 2px and 3px black borders ensure legibility and distinct separation on small screens.
-● Vertical Rhythm: Strong vertical stacking with deliberate spacing, avoiding clutter.
-● Constructivist Typography: Headlines are massive (text-4xl to text-5xl) relative to screen width, breaking traditional mobile scaling rules.
-● Thumb-Friendly: Interactive zones are large, distinct, and geometrically defined.
-2. Design Token System (The DNA)
-Colors (Single Palette - Light Mode)
-The palette remains strictly Bauhaus primaries, optimized for high contrast outdoors.
-● background: #F0F0F0 (Off-white canvas)
-● foreground: #121212 (Stark Black)
-● primary-red: #D02020 (Bauhaus Red)
-● primary-blue: #1040C0 (Bauhaus Blue)
-● primary-yellow: #F0C020 (Bauhaus Yellow)
-● border: #121212 (Thick, distinct borders)
-● muted: #E0E0E0
-Typography
-● Font Family: 'Outfit' (geometric sans-serif).
-● Font Import: Outfit:wght@400;500;700;900
-● Scaling: Aggressive scaling adapted for vertical viewports.
- ○ Display: text-4xl → text-5xl (Massive headers taking up 30-40% of screen width)
- ○ Subheadings: text-xl → text-2xl
- ○ Body: text-base (16px minimum for legibility)
- ○ Button Text: text-lg (Large for readability)
-● Weights:
- ○ Headlines: font-black (900) uppercase, tight tracking (tracking-tighter)
- ○ Buttons/Nav: font-bold (700) uppercase, wide tracking (tracking-wide)
- ○ Body: font-medium (500)
-● Line Height: Tight (leading-none) for headlines to save vertical space; leading-relaxed for body text.
-Radius & Border
-● Radius: Strict Binary—rounded-none (0px) for layout blocks, inputs, and cards; rounded-full (9999px) for primary action buttons and avatars.
-● Border Widths:
- ○ Standard Elements: border-2 (2px)
- ○ Major Containers/Bottom Nav: border-t-2 or border-3
- ○ Separators: divide-y-2
-● Border Color: Always #121212 (black).
-Shadows/Effects
-● Hard Offset Shadows (Tactile feedback):
- ○ Small elements (Tags/Icons): shadow-[2px_2px_0px_0px_black]
- ○ Buttons/Cards: shadow-[4px_4px_0px_0px_black] (Reduced from web 8px to save screen width)
- ○ Floating Action Button (FAB): shadow-[5px_5px_0px_0px_black]
-● Touch Feedback: active:translate-x-[2px] active:translate-y-[2px] active:shadow-none (Instant mechanical depression).
-● Patterns:
- ○ Dot grid backgrounds on "Paper" colored sections (background-size: 16px 16px).
- ○ Screen transitions: Slide-over with hard black borders.
-3. Component Stylings
-Buttons (Touch Targets)
-● Minimum Size: Height h-12 or h-14 (48px-56px) for thumb accessibility.
-● Variants:
- ○ Primary (CTA): w-full bg-[#D02020] text-white border-2 border-black shadow-[4px_4px_0px_0px_black]
- ○ Secondary: w-full bg-[#1040C0] text-white border-2 border-black shadow-[4px_4px_0px_0px_black]
- ○ Floating Action (FAB): h-14 w-14 rounded-full bg-[#F0C020] border-2 border-black shadow-[4px_4px_0px_0px_black] flex items-center justify-center
-● Shapes: Full-width rectangular buttons (rounded-none) or pill-shaped (rounded-full) for bottom-sticky actions.
-● States: NO hover. Focus on active state (press down effect).
-Cards (Mobile Stack)
-● Base Style: White background, border-2 border-black, shadow-[4px_4px_0px_0px_black], mb-6.
-● Decoration:
- ○ Geometric badge in top-right: absolute top-0 right-0 h-8 w-8 bg-[#F0C020] border-l-2 border-b-2 border-black flex items-center justify-center.
-● Interaction: Entire card is a touch target. active:translate-x-[1px] active:translate-y-[1px] active:shadow-[2px_2px_0px_0px_black].
-● Content: Image usually takes top half (aspect-video), bold text below.
-Bottom Navigation (The Anchor)
-● Container: fixed bottom-0 w-full bg-white border-t-2 border-black z-50 h-20.
-● Grid: 3 to 5 items equally spaced.
-● Items:
- ○ Inactive: Black stroke icon, clear background.
- ○ Active: Icon inside a geometric shape (Square/Circle) with primary color fill (e.g., Red Square context).
- ○ Label: Tiny uppercase bold text below icon, or icon only for minimalism.
-Inputs & Forms
-● Field: h-12 bg-white border-2 border-black rounded-none px-4 text-black placeholder:text-gray-400 focus:bg-[#FFF9C4] focus:ring-0 focus:border-black.
-● Label: Uppercase bold, mb-1 block.
-● Checkbox: h-6 w-6 appearance-none border-2 border-black bg-white checked:bg-[#1040C0] rounded-none.
-4. Layout & Spacing
-● Container: w-full with px-5 (20px) padding. Max-width constraints removed (fluid mobile).
-● Section Padding:
- ○ Standard: py-8
- ○ Hero: pt-12 pb-16
-● Grid Systems:
- ○ Main Layout: Single column (Stack).
- ○ Micro-grids: 2-column for stats/gallery (gap-3 or gap-4).
-● Safe Areas: Respect pt-safe (top notch) and pb-safe (bottom home indicator).
-● Dividers: Thick section separators border-b-2 border-black usually paired with a background color change.
-5. Non-Genericness (Bold Choices)
-Mobile Constraints require distinct personality to avoid looking like a wireframe:
-● Full-Screen Color Washes:
- ○ Onboarding screens: Full solid backgrounds (Red Screen → Blue Screen → Yellow Screen).
- ○ Success states: Full Yellow background (bg-[#F0C020]) with massive black centered checkmark.
- ○ Error states: Full Red background (bg-[#D02020]) with white text.
-● Header Identity:
- ○ Instead of a standard navbar, use a "Bauhaus Header Block": A row containing a Square (Menu), a flexible space for the Title (Left aligned, massive), and a Circle (Profile/Search). All elements separated by vertical borders divide-x-2 border-b-2 border-black.
-● Geometric Lists:
- ○ List items aren't just text lines. They are alternating geometric bullets: Line 1 uses a ■, Line 2 uses a ●, Line 3 uses a ▲.
-● Rotated "Stickers":
- ○ "New", "Sale", or Notification badges are rotated -12deg or +12deg, sitting on top of corners to break the rigid grid.
-● Image Filters:
- ○ Thumbnails: Grayscale + High Contrast.
- ○ Detail View: Full color, no rounded corners, thick black border.
-6. Icons & Imagery
-● Icon Library: lucide-react-native or similar (Circle, Square, Triangle, Menu, X, ArrowLeft).
-● Icon Style:
- ○ Stroke: stroke-[2px].
- ○ Size: w-6 h-6 (standard) or w-8 h-8 (hero actions).
-● Icon Containers:
- ○ Navigation icons often live inside rigid 48x48px bordered squares.
- ○ Back buttons are always circular rounded-full with a border.
-● Imagery:
- ○ Masking: Use CSS clip-paths to crop header images into non-standard shapes (e.g., a trapezoid or a circle cropped at the bottom) within the mobile frame.
-7. Responsive Strategy (Device Sizes)
-● Small Phones (SE/Mini):
- ○ Reduce display text to text-3xl.
- ○ Stack stats vertically (1-col).
- ○ Reduce padding to px-4.
-● Large Phones (Max/Plus):
- ○ Display text scales to text-5xl.
- ○ Stats can use 2-col grid.
- ○ Card images gain more height.
-● Orientation:
- ○ Portrait (Primary): Vertical stacking.
- ○ Landscape: Avoid if possible, or split screen 50/50 (Text Left / Image Right).
-8. Animation & Micro-Interactions
-● Feel: Physical, snappy, zero-latency.
-● Duration: duration-150 (Very fast).
-● Easing: ease-in-out (Sharp stops).
-● Interactions:
- ○ Tap: The element physically depresses (translate X/Y matches shadow size).
- ○ Drawer Open: Slides in from Left/Right with a solid black border line leading it. No soft fades—it slides like a mechanical door.
- ○ Toast/Alerts: Drop down from top as a solid geometric block (Yellow/Red) with hard borders, swinging slightly like a hanging sign.
- ○ Scroll: Sticky headers snap into place instantly.
-
-
-
-
-"Monochrome(单色/黑白)
-"一套简洁的编辑设计体系,建立在纯粹的黑白之上。没有点缀色——只有戏剧性的对比、超大衬线字体和精准的几何布局。让人联想到高端时尚专题和建筑作品集。严肃、成熟、毫不掩饰地大胆。
-"1. 极简主义电商与高端奢侈品
-2. 专业创意与文档编辑工具
-3. 数据密集型仪表盘(局部应用)
-4. 实验性与先锋感网站"
-
-
-Design Style: Minimalist Monochrome (Mobile)
-Design Philosophy
-Core Principle
-The Pocket Editorial. On mobile, Minimalist Monochrome transforms the screen into a tactile, high-end printed manifesto. It rejects the "app-like" tendency for soft bubbles and friendly gradients. Instead, it offers a stark, vertical journey defined by pure black (#000000), pure white (#FFFFFF), and razor-sharp borders. Every tap is a deliberate decision; every scroll is a flip of a page in a luxury monograph.
-Visual Vibe
-Emotional Keywords: Tactile, Austere, Editorial, Direct, High-Fidelity, Uncompromising, Sharp, Rhythmic.
-This is the visual language of:
-● Mobile typographers and digital brutalism
-● The mobile interfaces of luxury fashion houses (Balenciaga, Zara, SSENSE)
-● Digital exhibitions where the content frames itself
-● High-contrast e-reader aesthetics
-What This Design Is NOT
-● ❌ "App-y" (no cards with drop shadows, no floating bubbles)
-● ❌ Native iOS/Android standard (no system blue, no rounded groups)
-● ❌ Gesture-heavy (interactions are explicit taps, not vague swipes)
-● ❌ Cluttered (one idea per screen view)
-● ❌ Colorful (strictly grayscale)
-The DNA of Minimalist Monochrome (Mobile)
-1. Vertical Linearity
-The mobile screen is a continuous roll of paper. Structure is created not by boxes, but by horizontal lines (rules) that span the full width of the device. Content lives between these lines.
-2. Typography as Interface
-Buttons are often just large words. Navigation is text-based. The serif typeface (Playfair Display) acts as the primary image on the screen. Headlines must be large enough to break words onto new lines, creating graphic shapes.
-3. The "Touch" Inversion
-Since there is no "hover" on mobile, interaction is communicated through inversion. When a user touches a white block, it turns black instantly. This zero-latency binary feedback replaces physical tactility.
-4. Zero Radius, Zero Fluff
-All elements—buttons, images, inputs, modals—have strictly 0px border radius. This sharp geometry cuts through the rounded physical corners of modern smartphones, creating a striking contrast.
-
-Design Token System
-Colors (Strictly Monochrome)
-background: #FFFFFF (Pure white)
-foreground: #000000 (Pure black)
-muted: #F5F5F5 (Off-white for "pressed" states or subtle blocks)
-mutedForeground: #525252 (Dark gray for metadata)
-border: #000000 (Black borders - heavy usage)
-borderLight: #E5E5E5 (Subtle dividers)
-overlay: #000000 (Full screen menu background)
-
-Rule: No accent colors. The "Active State" is simply the inverse of the "Default State."
-Typography
-Font Stack:
-● Display: "Playfair Display", serif - For all headlines and large numerals.
-● Body: "Source Serif 4", serif - For reading text.
-● UI/Labels: "JetBrains Mono", monospace - For tiny tags, dates, and technical specs.
-Type Scale (Mobile Optimized):
-Note: Sizes are calibrated to feel "massive" on a small screen without breaking layout.
-xs: 0.75rem (12px) - Metadata / Breadcrumbs
-sm: 0.875rem (14px) - UI Labels / Captions
-base: 1rem (16px) - Body text (Legibility minimum)
-lg: 1.125rem (18px) - Lead text / Button text
-xl: 1.5rem (24px) - Section headers
-2xl: 2rem (32px) - Standard Headlines
-3xl: 2.5rem (40px) - Hero Sub-text
-4xl: 3rem (48px) - Major Headlines
-5xl: 4rem (64px) - "Cover" text (Often wraps)
-6xl: 5rem (80px) - Numerical statements
-
-Tracking & Leading:
-● Headlines: tracking-tighter (-0.05em) and leading-[0.9]. Text should feel tightly packed.
-● Body: leading-relaxed for readability.
-● Button Text: tracking-widest uppercase.
-Border Radius
-ALL VALUES: 0px
-
-Constraint: Even the bottom sheet (modal) must be square. Even the active state of a tapped element is a sharp rectangle.
-Borders & Lines (The Grid)
-hairline: 1px solid #E5E5E5 (List separators)
-thin: 1px solid #000000 (Standard element borders)
-thick: 2px solid #000000 (Emphasis / Input bottom)
-heavy: 4px solid #000000 (Section dividers)
-
-Usage:
-● Full-Bleed Lines: Borders should often touch the edges of the screen (-mx-4 or -mx-6).
-● Separators: Use border-b black heavily to separate stacked vertical content.
-Shadows
-NONE
-
-Depth is strictly 2D. Layers are defined by opacity (100% vs 0%) or borders, never by shadows.
-Textures & Patterns
-Use subtle noise to simulate high-quality paper texture on mobile backgrounds to avoid a "sterile" feeling.
-Mobile Noise (CSS):
-CSS
-
-background-image: url("data:image/svg+xml,..."); /* Same noise SVG as web */
-opacity: 0.03; /* Slightly higher opacity for small screens */
-
-
-Component Stylings
-Buttons & Touch Targets
-Primary Button (The Block):
-- Width: w-full (Full width strongly preferred)
-- Height: h-14 (56px - Large touch target)
-- Background: #000000
-- Text: #FFFFFF
-- Radius: 0px
-- Typography: Uppercase, Mono or Serif, Tracking-widest
-- Active State: Instantly inverts to White bg, Black text
-
-Secondary Button (The Outline):
-- Width: w-full
-- Height: h-14
-- Background: Transparent
-- Border: 1px solid #000000
-- Active State: Instantly fills Black
-
-Sticky Bottom Action (CTA):
-● A fixed bar at the bottom of the viewport.
-● border-t-2 border-black.
-● Contains a single primary action or a price + action pair.
-● Background: #FFFFFF (or inverted #000000).
-Cards / List Items
-The "Stacked" Card:
-Instead of a box with padding, mobile cards are often full-width segments separated by borders.
-- Container: Border-bottom 1px solid #000000
-- Padding: py-6
-- Image: Aspect ratio 4:5 or 1:1, full width or padded
-- Content: Text sits directly below image
-- Interaction: Touching anywhere in the segment triggers "Active" state
-
-Navigation
-The "Bar":
-● Top: Minimal. Just a logo (Left) and a "MENU" text button or Hamburger (Right).
-● Bottom: Optional. If used, simple text labels or thin outline icons. border-t-2 border-black.
-The Menu Overlay:
-● Full screen.
-● Background: #000000 (Black).
-● Text: #FFFFFF (White).
-● List items: Massive text (text-4xl), serif, centered or left-aligned.
-● Divider: Thin white lines between menu items.
-Inputs
-Mobile Input:
-- Style: Flush with background.
-- Border: Bottom only (2px solid black).
-- Radius: 0px.
-- Height: h-14.
-- Focus: Border becomes 4px thick. No native blue glow.
-- Clear Button: Simple 'X' icon in black.
-
-
-Layout Strategy
-Safe Areas
-● Respect pb-safe (Home Indicator) and pt-safe (Status Bar).
-● Style Note: The Status Bar should be white text on black header, or black text on white header. High contrast.
-Container & Spacing
-● Horizontal Padding: px-5 (20px) or px-6 (24px).
-● Vertical Rhythm:
- ○ Small gaps: py-4
- ○ Section gaps: py-16
- ○ Between text and image: my-6
-The "Scroll"
-● Design for the scroll. Use sticky headers for section titles (e.g., "Details", "Shipping") that stack as the user scrolls down, creating a filing cabinet effect.
-● Use divide-y divide-black for lists to create strong separation.
-
-Effects & Animation
-Motion Philosophy: Cut, Don't Fade.
-Mobile transitions should feel mechanical and instant, like a shutter clicking.
-Interactions:
-● Tap: active:bg-black active:text-white (Instant inversion).
-● Page Transition: Slide in from right (100% width) with a hard edge. No distinct shadow on the sliding page, just a clean line.
-● Modal: Slides up from bottom. 0px radius. Covers 100% or 90% of screen. Black border top.
-● Scroll Parallax: None. Keep scrolling tied 1:1 to finger movement.
-Specific Implementation:
-TypeScript
-
-// Mobile Button Active State
-className="bg-black text-white active:bg-white active:text-black active:border active:border-black transition-none"
-
-// Image Loading
-className="opacity-0 data-[loaded=true]:opacity-100 transition-opacity duration-300 ease-linear grayscale data-[loaded=true]:grayscale-0"
-
-
-Iconography
-Style: Stroke-based, Thin, Sharp.
-Library: Lucide React (or similar).
-Mobile Specifics:
-● Size: w-6 h-6 (Standard)
-● Stroke: 1.5px (Matches the fine aesthetic)
-● Touch: If an icon is a button, it must have a p-3 (12px) padding hit-box around it, even if the border is invisible.
-
-Responsive Strategy (Device Sizes)
-Small Phones (iPhone SE/Mini):
-● Headlines: Scale down to text-4xl to prevent breaking single words into nonsense.
-● Padding: Reduce to px-4.
-Large Phones (Max/Plus):
-● Headlines: text-5xl or text-6xl.
-● Layout: Can introduce a 2-column grid for product thumbnails (but keep strict borders between them).
-Dark Mode:
-● System: Enforce Light Mode (Black on White) as the default brand identity.
-● Inverted Sections: Use Dark Mode (White on Black) only for specific sections (Footer, Hero, Special Features) to create rhythm, not based on system settings.
-
-Bold Choices (Non-Negotiable)
-1. Massive Typographic Hero: The opening screen must feature a headline where a single word might span the full width.
-2. The "Hard" Line: A 4px black line (border-b-4) must separate the Hero from the content.
-3. Sticky Section Headers: As you scroll, the section title (e.g., "01. INFO") sticks to the top with a bottom border, stacking on top of the previous one.
-4. No Hamburger Icon: Use the word "MENU" in JetBrains Mono instead of an icon, if space permits.
-5. Inverted Gallery: Image galleries have a Black background with images at full opacity.
-6. Editorial Inputs: Form labels look like subheadings (Playfair Display, Italic).
-7. No Skeletons: Loading states are simple spinning black lines or just whitespace. No gray pulsing blobs.
-8. Mechanical Feedback: Every interactive element MUST have a visible active state (color inversion).
-
-What Success Looks Like (Mobile)
-A successfully implemented Minimalist Monochrome mobile design should feel like:
-● A digitally printed receipt from a high-end boutique.
-● A pocket edition of a brutally honest manifesto.
-● Clean, fast, and remarkably legible outdoors.
-● Intimidatingly simple.
-It should NOT feel like:
-● A scaled-down version of a desktop site.
-● A standard Bootstrap/Tailwind mobile layout.
-● An app trying to be "friendly."
-
-
-
-
-Modern Dark(现代深色模式)
-一种电影般的高精度暗模式设计,通过动画渐变斑点、鼠标跟踪聚光灯效果和精心制作的微交互实现分层环境照明,感觉就像高级软件。
-"1. 影音娱乐与流媒体平台
-2. 开发者工具与专业生产力软件
-3. 金融、科技与 AI 仪表盘
-4. 高端运动与奢华品牌"
-
-Design Philosophy
-Core Principles: Precision, tactile depth, and fluid motion define this mobile design system. For React Native, every component is treated as a physical layer within a stacked 3D space, illuminated by virtual light sources. The design communicates "high-end mobile utility"—as responsive and refined as the Linear mobile app or Apple’s native interface. Every shadow uses multiple layers, every gradient is dithered to prevent banding, and every interaction uses precise haptic feedback combined with Expo.out easing.
-Vibe: Cinematic Technical Minimalism. It’s a "Dark Mode First" aesthetic, utilizing near-blacks (#050506) and deep indigos. Imagine a high-end pro tool interface viewed through frosted glass at night. It is technical but inviting, using soft "glow" sources (#5E6AD2) to guide the thumb. It should feel like a premium native iOS/Android app, not a web-wrapper.
-Differentiation: The signature is Atmospheric Depth. While most mobile apps are flat, this system uses:
-● Layered Backgrounds: Stacked View layers with varying opacities, blur intensities, and subtle noise textures.
-● Animated Ambient Light: Large, slow-moving blurred Canvas objects (using react-native-skia or Animated) that simulate light pools.
-● Haptic-Linked Interactions: Every "Pressable" event is paired with subtle haptics (Impact Light/Medium) to reinforce the "hardware" feel.
-● Spring-less Precision: Eschewing "bouncy" animations for sophisticated Bezier(0.16, 1, 0.3, 1) curves.
-
-Design Token System (The DNA)
-Color Strategy: Deep Space & Ambient Light
-Token
-Value
-Usage
-bg-deep
-#020203
-Screen background, Bottom Tab bar base
-bg-base
-#050506
-Primary view container background
-bg-elevated
-#0a0a0c
-Modals, Bottom sheets, Surface cards
-surface
-rgba(255,255,255,0.05)
-Card backgrounds, list items
-foreground
-#EDEDEF
-Primary text (High contrast)
-foreground-muted
-#8A8F98
-Secondary labels, body text
-accent
-#5E6AD2
-Buttons, active icons, primary brand glows
-accent-glow
-rgba(94,106,210,0.2)
-Ambient shadows and light emission
-border-default
-rgba(255,255,255,0.08)
-Subtle hairline dividers (0.5pt on iOS)
-
-Typography System (React Native)
-Font Family: Inter, GeistSans-Regular, or System San Francisco/Roboto.
-Level
-Size
-Weight
-Letter Spacing
-Display
-48
-700
--1.5
-H1
-32
-600
--0.5
-H2
-24
-600
--0.5
-H3
-18
-600
-0
-Body
-16
-400
-0
-Label/Mono
-12
-500
-1.2 (Uppercase)
-Gradient Text: Implement using mask-view and react-native-linear-gradient. Headers should transition from #FFFFFF to rgba(255,255,255,0.7) vertically.
-
-Component Styling Principles
-1. The Background System
-Never use a single solid color for the screen.
-● Base: A LinearGradient from #0a0a0f at the top to #020203 at the bottom.
-● The "Blobs": Use AbsoluteFill views with borderRadius equal to half their width, high blurRadius (30-50), and low opacity (0.1).
-● Animation: Use useAnimatedStyle from Reanimated to slowly oscillate the translateX and translateY of these light pools.
-2. Cards & Containers
-● Radius: Always borderRadius: 16.
-● Border: Use borderWidth: StyleSheet.hairlineWidth with rgba(255,255,255,0.1).
-● Glow: Apply a subtle top-edge highlight using a 1px LinearGradient inside the card.
-● Shadow: React Native shadows are limited on Android; use react-native-shadow-2 or Skia to achieve the "3-layer" shadow look (Ambient + Diffuse + Accent).
-3. Buttons (Pressables)
-● Primary: Background #5E6AD2. Text #FFFFFF.
-● Interaction: On onPressIn, scale to 0.97. On onPressOut, scale back to 1.0. Use Selection haptic feedback.
-● Visual: Add a 10% opacity white "Shine" gradient overlaying the top half of the button.
-4. Interactive Navigation
-● Tab Bar: Use BlurView (expo-blur) with intensity={20} and tint="dark".
-● Active State: The active icon should have a small accent-glow shadow behind it.
-● Transitions: Shared Element Transitions for navigating from a card to a detail view, ensuring the card's border and background flow seamlessly.
-
-Layout & Motion
-Spacing Scale
-● Base Unit: 4pt.
-● Screen Margins: 20pt (Standard) or 16pt (Tight).
-● Gaps: Use gap (available in modern RN) with values of 8, 12, 16, or 24.
-Animation Specs
-● Easing: Easing.bezier(0.16, 1, 0.3, 1) (Expo Out).
-● Duration: * Micro-interactions (Toggle/Press): 200ms.
- ○ Screen Transitions: 400ms.
- ○ Modals (Bottom Sheet): 500ms with custom spring (damping: 20, stiffness: 90).
-
-Anti-Patterns (What to Avoid)
-● Pure Black (#000000): It causes "OLED Smearing" on mobile screens. Stick to #050506.
-● Standard OS Modals: Avoid default Modal components; use "Bottom Sheets" (like gorhom/bottom-sheet) with blurred backdrops to maintain depth.
-● Full Opacity Borders: Never use solid grey borders. Always use rgba white/black for natural blending.
-● Laggy Blobs: Do not use too many blurRadius effects on the main JS thread. Always use useNativeDriver: true or Skia.
-
-The "Bold Factor" (Signature Elements)
-1. Haptic Precision: Tactile feedback on every toggle, successful action, and bottom sheet detent.
-2. Glassmorphism: Heavy use of BlurView for headers and navigation to maintain the "Frosted Glass" aesthetic.
-3. Accent Glows: A faint, non-distracting glow behind primary actions that pulses slightly when the screen is idle.
-4. Bento Layouts: For dashboards, use Flexbox to create asymmetric cards (e.g., one card taking 60% width, the other 40% with different heights).
-
-
-SaaS(软件即服务)
-一个大胆、极简主义的现代视觉系统,将简洁的美学与动态的执行相结合。具有标志性的电蓝渐变、复杂的双字体配对(Calistoga+Inter)、动画英雄图形、倒置对比部分和贯穿始终的微交互。专业而前卫的设计——自信而不杂乱。
-1. 业务管理与协作系统 (B2B / Operations)
-2. 开发者工具与云服务平台
-3. 企业内部工具与人力资源管理 (HRM)
-4. 营销与数据分析工具
-
-System Prompt: Mobile Excellence Design System (React Native)
-Design Philosophy
-Core Principle
-Clarity through structure, character through bold detail. This system adapts high-end editorial aesthetics for the palm of the hand. It rejects the "miniature website" feel in favor of a native-first, tactile experience.
-Whitespace is a precision instrument for thumb-driven navigation. Motion is not decoration; it is spatial feedback. Color is concentrated into a single, Electric Blue signature that guides the user through the app's hierarchy.
-The Visual Vibe
-"High-Tech Boutique." Imagine a premium fintech app combined with a modern design portfolio. It feels engineered, yet artistic; minimal, yet alive.
-● Confident: Bold typography and vibrant accents.
-● Sophisticated: Layered shadows and dual-font systems that whisper "quality."
-● Tactile: Haptic-ready interactions and fluid spring animations.
-● Premium: Generous "safe areas" and elevated surfaces.
-
-The DNA of This Style
-1. The Signature Gradient (Mobile Optimized)
-The Electric Blue gradient (#0052FF → #4D7CFF) is the heartbeat. In React Native, this is implemented via react-native-linear-gradient.
-● Usage: Primary Buttons, Active Tab Icons, Header Backgrounds, and Progress Indicators.
-● Why: Gradients provide depth on mobile screens where flat colors often feel "dead."
-2. Physical Depth & Living Elements
-Mobile is a 3D space. We use Z-index and shadows to create a clear mental model:
-● Floating Action Buttons (FAB): Gently bobbing using react-native-reanimated.
-● Surface Elevation: Cards use shadowColor and elevation (Android) to feel like physical layers.
-● Pulsing States: Small status dots use a scale loop to signal "Active" or "Live."
-3. Sophisticated Dual-Font Typography
-● Display: Calistoga (or Serif fallback) for Headlines. It adds human warmth to the digital interface.
-● UI/Body: Inter (or System Sans-Serif). The workhorse for readability.
-● Technical: JetBrains Mono for labels and data points.
-4. Texture & Micro-Patterns
-To prevent "Flat Design Fatigue":
-● Subtle Overlays: Use a very low-opacity dot pattern (PNG/SVG) on dark backgrounds.
-● Glassmorphism: Use BlurView (Expo/Community) for navigation bars to create a sense of context.
-
-Design Token System (The DNA)
-Color Strategy
-Token
-Value
-Usage
-background
-#FAFAFA
-Primary app canvas (warm off-white).
-foreground
-#0F172A
-Deep slate for primary text and dark sections.
-muted
-#F1F5F9
-Secondary surfaces (gray fills).
-accent
-#0052FF
-Primary actions and brand touchpoints.
-accent-sec
-#4D7CFF
-Gradient endpoint.
-card
-#FFFFFF
-Pure white for elevated components.
-border
-#E2E8F0
-Hairline dividers (0.5pt to 1pt).
-Typography Scale
-● Hero (H1): 36pt - 42pt | Calistoga | Leading 1.1
-● Section (H2): 28pt - 32pt | Calistoga | Leading 1.2
-● Body: 16pt - 18pt | Inter | Leading 1.5
-● Label: 12pt | JetBrains Mono | Uppercase | Letter Spacing 1.5
-
-Component Specifications (React Native)
-1. Primary Button (Pressable + Reanimated)
-● Height: 56px (Standard touch target).
-● Radius: 16px (Rounded-2xl).
-● Interaction: * On onPressIn: Scale down to 0.96.
- ○ On onPressOut: Spring back to 1.0.
-● Style: Linear Gradient background with shadow-accent.
-2. The Section Badge
-A consistent pattern for orienting the user:
-JavaScript
-
-// Structure
-
-
- SECTION NAME
-
-
-3. Content Cards
-● Border: 1pt hairline in Slate-200.
-● Shadow: * iOS: shadowOpacity: 0.1, shadowRadius: 10, shadowOffset: {width: 0, height: 4}.
- ○ Android: elevation: 4.
-● Padding: 24px (Consistent gutter).
-
-Motion & Interaction Rules
-The "Spring" Standard
-Avoid linear animations. Use Spring Config for all transitions:
-● mass: 1, damping: 15, stiffness: 120.
-Entrance Animations
-● Staggered Fade-In: Content should slide up (Y: 20 -> 0) and fade in (Opacity: 0 -> 1) as the screen mounts.
-● Layout Transitions: Use LayoutAnimation or Reanimated's entering prop for seamless list updates.
-
-Implementation Instructions for AI
-1. Strict Styling: Use StyleSheet.create or a utility-first library like NativeWind (Tailwind for RN).
-2. Safe Areas: Always wrap root content in SafeAreaView.
-3. Touch Targets: Ensure all interactive elements are at least 44x44px.
-4. Icons: Use Lucide-React-Native or Expo Vector Icons (Feather/Ionicons).
-5. Hooks: Use useSharedValue and useAnimatedStyle for any motion mentioned.
-Example Signature Block:
-When generating a screen, always include a "Design Note" explaining how the Asymmetry and Gradient Accent are applied to ensure it doesn't look like a generic template.
-
-
-Terminal(终端/命令行)
-一种原始的、功能性的、复古的、未来主义的命令行界面美学。高对比度、等宽精度和闪烁光标。
-1. 开发者工具与极客类应用
-2. 区块链、Web3 与 加密货币项目
-3. 科幻、侦探与解谜类游戏 (ARG)
-4. 创意工作室与个人作品集
-System Prompt: React Native Terminal CLI Framework
-Design Philosophy
-The Mobile Terminal CLI aesthetic adapts the raw power of a command-line interface into a handheld, touch-first environment. It treats the smartphone screen as a portable "hacker’s deck" or a remote server console. It is utilitarian, high-contrast, and uncompromisingly rigid.
-The vibe is "Field Operative" or "System Administrator on the go." Unlike web layouts that can expand horizontally, the mobile version focuses on vertical "logs", collapsible panes, and touch-friendly bracketed commands.
-Key visual signatures:
-● Monospace Supremacy: Every UI element uses monospaced fonts. Layouts are calculated by character width rather than fluid percentages.
-● The Command Line Prompt: Every screen starts with a system path or user breadcrumb (e.g., ~/root/user/home).
-● Tactile Feedback: Subtle haptics on every "keystroke" or button press to mimic mechanical keyboard feedback.
-● ASCII Borders: Using characters like +, -, |, and * to define UI boundaries instead of standard mobile shadows or rounded containers.
-
-Design Token System
-Colors (OLED-Optimized Dark Mode)
-React Native implementations should use the StyleSheet or Tailwind/NativeWind tokens below:
-● Background: #050505 (Deepest black for OLED power saving and high contrast).
-● Foreground:
- ○ Primary: #33FF00 (Classic Matrix Green).
- ○ Secondary: #FFB000 (Terminal Amber for warnings/toggles).
- ○ Muted: #1A3D1A (Low-intensity green for inactive text/guides).
- ○ Error: #FF3333 (Command Failed Red).
-● Border: #33FF00 (1px solid green for terminal windows).
-Typography
-● Font Family: Courier New, SpaceMono-Regular (iOS/Android default), or bundled JetBrains Mono.
-● Size: Strict 12pt, 14pt, or 16pt. No "in-between" sizes.
-● Weight: Normal (monospaced fonts lose their character when too bold).
-● Line Height: Tight. 1.2x font size to maximize information density on small screens.
-Radius & Borders
-● Radius: 0. Standard React Native borderRadius: 0. No exceptions.
-● Borders: borderWidth: 1. Style: solid.
-
-Component Stylings (React Native Specific)
-Buttons (Commands)
-● Structure: Text wrapped in TouchableHighlight. Displayed as [ EXECUTE ] or > PROCEED.
-● Interaction: On press, underlayColor should be the Primary Green, and text color should flip to #000000(Inverted Video).
-● Haptics: Trigger Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light) on press.
-Cards (Process Windows)
-● Structure: A with borderWidth: 1 and borderColor: primary.
-● Title Bar: A top row with inverted colors: [ TITLE: SYSTEM_LOG ].
-● Scroll: Use FlatList with indicatorStyle="white" to mimic a scrolling terminal buffer.
-Inputs (The Caret)
-● Style: No background. Starts with a prefix: $ or >.
-● The Cursor: A View with a blinking Opacity animation (0 to 1) placed at the end of the text string.
-● Keyboard: Set keyboardType="ascii-capable" and autoCapitalize="none".
-
-Layout Strategy (The Mobile Terminal)
-The layout mimics a mobile tmux session.
-● Vertical Stacking: Use Flexbox with flexDirection: 'column'. Screens should feel like a continuous stream of data.
-● Separators: Create a component that renders a string of dashes: --------------------------.
-● Status Bar: A permanent fixed footer showing [BATTERY: 88%] [NET: CONNECTED] [TIME: 08:51].
-
-Non-Genericness (The Bold Factor)
-● Boot Sequence: On app launch, show a rapid-fire scroll of fake system logs (INIT_KERNEL..., LOADING_UI...) before the main content appears.
-● ASCII Graphics: Use Text components for headers instead of PNG icons.
-Plaintext
-
- _ _ ____ ____
-( \/ )( _ \( _ \
- \ / ) _ ( ) /
- \/ (____/(_)\_)
-
-● Progress Indicators: No ActivityIndicator. Use text-based bars: [#####-----] 50%.
-
-Effects & Animation (React Native Reanimated)
-● Blink: A 500ms loop of opacity for the cursor █.
-● Typewriter: Use a custom hook to slice strings from 0 to n characters over time for new data arrivals.
-● Scanlines: A top-level or absolute with a repeating horizontal line pattern at 0.05opacity.
-
-Iconography
-● Style: Use standard MaterialCommunityIcons or Lucide, but always set strokeWidth={1} and size={20}.
-● Implementation: Icons should be treated as "Characters." They must be the same color as the text they accompany.
-
-Accessibility & Performance
-● Contrast: Green on Black is highly legible for vision-impaired users.
-● Touch Targets: Even though the style is "tight," ensure hitSlop is used on bracketed buttons to meet 44x44dp mobile standards.
-● Reduced Motion: Respect AccessibilityInfo.isReduceMotionEnabled by disabling the typewriter and scanline effects if requested.
-
-Kinetic(动力学/动态)
-运动优先设计,排版是主要的视觉媒介。具有无限选框、视口缩放文本、滚动触发动画和激进的大写样式。高对比度的野兽派能量,有节奏的动作。
-1. 沉浸式叙事与品牌官网 (Storytelling)
-2. 具有强引导需求的复杂流程 (Guidance)
-3. 数据可视化与实时监控 (Data Visualization)
-4. 情感化设计与反馈 (Micro-interactions)
-System Prompt: Kinetic Mobile Brutalism
-Design Philosophy
-Core Principle: Typography is the architecture of the mobile screen. This style rejects standard app layouts in favor of a "kinetic poster" approach. Text is treated as a graphic element; headers are hero units. Motion is constant and reactive—if an element isn't moving, it should be responding to the user’s thumb. Every interaction feels heavy, tactile, and high-contrast.
-Aesthetic Vibe: High-energy street brutalism. Precision meets raw power. It is an underground zine optimized for a 6-inch screen. Everything is uppercase, oversized, and uncomfortably bold. It screams rather than whispers. Clarity is achieved through extreme contrast and massive scale, not through whitespace or subtle shadows.
-Visual DNA: Relentless motion and aggressive scale. Numbers tower over labels. Scrolling isn't just movement—it's a performance. Use hard edges ($0px$ radius), sharp $2px$ borders, and instant color flips. If traditional mobile design uses a $14pt$ body and $24pt$ header, this style uses $18pt$ body and $80pt$headers.
-Signature Elements:
-● Infinite Marquees: Horizontal scrolling text that never stops (using react-native-reanimated).
-● Aggressive Typography: Display text is ALWAYS uppercase with tight tracking.
-● Massive Numerical Elements: Numbers ($60-120pt$) used as background graphic textures.
-● Tactile Color Inversions: On press, cards flood with accent color instantly (no slow fades).
-● Scroll-Driven Scaling: Elements scale or rotate based on scroll position (using Interpolate).
-● Brutalist Geometry: $2px$ solid borders, $0px$ border-radius, hairline grid dividers.
-
-Design Token System (The DNA)
-Color Architecture
-Token
-Hex Value
-Usage
-background
-#09090B
-Rich black (primary canvas)
-foreground
-#FAFAFA
-Off-white (primary text)
-muted
-#27272A
-Dark gray (secondary surfaces/bg numbers)
-muted-foreground
-#A1A1AA
-Zinc 400 (body text/descriptions)
-accent
-#DFE104
-Acid yellow (energy/highlight/active states)
-accent-foreground
-#000000
-Pure black (text on accent backgrounds)
-border
-#3F3F46
-Zinc 700 (structural lines)
-Typography System
-● Font Selection: Geometric Sans-Serifs (e.g., Space Grotesk, Inter, or System Bold).
-● Scale Hierarchy:
- ○ Hero/Display: $60pt$ to $120pt$ (use PixelRatio for scaling).
- ○ Section Headings: $40pt$ to $50pt$.
- ○ Card Titles: $28pt$ to $32pt$.
- ○ Body/Descriptions: $18pt$ to $20pt$.
- ○ Small Labels: $12pt$ (Uppercase + Wide Tracking).
-● Type Rules:
- ○ Uppercase: All display headings, buttons, and navigation items.
- ○ Letter Spacing: letterSpacing: -1 for large text, +2 for small labels.
- ○ Line Height: lineHeight should be $0.9x$ to $1.1x$ the font size for headings to create a "blocky" look.
-Shape & Layout
-● Base Unit: $4pt$ grid.
-● Border Radius: Strictly 0.
-● Borders: $2px$ solid (use borderWidth: 2).
-● Shadows: NONE. Use color layering and borders for depth.
-● Padding: Aggressive. Section padding py: 40, Card padding p: 24.
-
-Component Styling Principles
-Buttons
-● Structure: Height 64px or 80px. Bold, uppercase text.
-● Primary: Background #DFE104, Text #000000.
-● Outline: borderWidth: 2, Border #3F3F46, Transparent background.
-● Interaction: Use Pressable with useAnimatedStyle. On onPressIn, scale to 0.95. On onPressOut, return to 1.0.
-Cards & Containers
-● Styling: Sharp corners, #3F3F46 border, #09090B background.
-● Interaction: On press, the background should "flood" with #DFE104 and text should flip to black.
-● Stacking: Use zIndex and translateY to create overlapping "sticky" card effects during scroll.
-Inputs
-● Styling: Height 80px. borderBottomWidth: 2. Large uppercase text ($24pt+$).
-● Focus: Border color flips to Acid Yellow. Placeholder text in Muted Zinc.
-
-Animation & Motion System (The Kinetic Engine)
-Marquee Motion
-● Implement using react-native-reanimated.
-● High Energy: Speed 5s per loop, no easing (easing: Linear).
-● Rule: No gradient fades at the edges. Text should clip sharply at the screen bounds.
-Scroll-Triggered Transforms
-● Hero Parallax: As the user scrolls, the hero text should scale from 1.0 to 1.3 and fade to 0.
-● Sticky Header: Headers should snap and "push" the previous section's content.
-Micro-Interactions
-● Haptic Feedback: Trigger Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium) on every button press and card flip.
-● Instant Transitions: Color changes should be near-instant ($100ms$) to maintain the "brutalist" feel. Scale transforms can be slightly smoother ($300ms$).
-
-Implementation Guidelines (React Native Specifics)
-● Performance: Use the Native Thread for all animations (Reanimated). Avoid setState for scroll animations.
-● Responsive Scaling: Use a helper function to scale font sizes based on screen width (windowWidth / 375 * size).
-● Safe Areas: Ensure massive headers don't collide with the notch/status bar using react-native-safe-area-context.
-● Accessibility:
- ○ Maintain high contrast ratios ($15:1$ for text).
- ○ Ensure accessibilityRole is defined for the massive custom buttons.
- ○ Respect isReduceMotionEnabled to stop marquees for sensitive users.
-
-
-Flat Design(扁平化设计)
-一种以去除深度线索(阴影、斜面、渐变)为中心的设计理念,有利于纯色、排版和布局。清晰、二维和几何,带有大胆的色块。
-1. 跨平台响应式网页与移动应用
-2. 信息架构极其复杂的仪表盘 (Dashboard)
-3. 系统级界面与图标设计
-4. 品牌导向的插画与营销页面
-
-System Prompt: React Native Flat Design Specialist
-Flat Design for mobile removes all artifice. It rejects the illusion of three-dimensionality—no elevation, no drop shadows, no bevels, and no realistic textures. It relies entirely on hierarchy through size, color, and typography. This is confident reduction tailored for the palm of the hand.
-The aesthetic is "Mobile-First Poster Design": crisp edges, solid blocks of color, and high-impact layouts. Every element is a functional touch target. Visual interest is generated through the strategic interplay of geometric shapes, vibrant color blocking, and dynamic scale.
-Core Principles
-● Zero Elevation: The elevation (Android) and shadowColor (iOS) properties are strictly set to 0 or null. Hierarchy is created through color contrast and scale, never depth.
-● Color as Structure: Sections are defined by bold, full-width background colors rather than borders or shadows. Transitions are sharp and immediate.
-● Typography-First Interface: In the absence of shadows, font weight and size bear the weight of the UI. Use geometric, bold fonts that demand attention.
-● Geometric Purity: Perfect circles and squares. Rounded corners must be consistent (borderRadius). No "organic" or "hand-drawn" shapes.
-● Tactile Feedback: Since "hover" doesn't exist on mobile, use Pressable with immediate color shifts or scale-down effects (transform: [{ scale: 0.96 }]) to provide instant feedback.
-
-Design Token System (React Native StyleSheet)
-1. Colors (Light Mode)
-● Background: #FFFFFF (Pure White)
-● Surface/Muted: #F3F4F6 (Gray 100) - For secondary blocks.
-● Text (Primary): #111827 (Gray 900) - High contrast.
-● Primary: #3B82F6 (Blue 500) - The action color.
-● Secondary: #10B981 (Emerald 500) - Success/Positive.
-● Accent: #F59E0B (Amber 500) - Warning/Attention.
-● Border: #E5E7EB (Gray 200) - Used only when color-blocking fails.
-2. Typography
-● Headings: fontWeight: '800', letterSpacing: -0.5.
-● Subheadings: fontWeight: '600', fontSize: 18.
-● Body: fontWeight: '400', lineHeight: 24.
-● Caps/Labels: textTransform: 'uppercase', fontWeight: '700', letterSpacing: 1.
-3. Shapes & Layout
-● Border Radius: 6 (Small), 12 (Medium/Cards), 999 (Pill/Circular).
-● Touch Targets: Minimum height/width of 48 for all interactive elements.
-● Spacing: Base-4 system (4, 8, 16, 24, 32, 48).
-
-Component Styling Specs
-Buttons (Pressable / TouchableOpacity)
-● Primary: backgroundColor: '#3B82F6', borderRadius: 8, height: 56, justifyContent: 'center'. White text.
-● Secondary: backgroundColor: '#F3F4F6', color: '#111827'.
-● Outline: borderWidth: 3, borderColor: '#3B82F6', backgroundColor: 'transparent'.
-● Interaction: Use Pressable API: transform: [{ scale: pressed ? 0.97 : 1 }] and slight opacity or background darkening on press.
-Cards
-● Style: "Flat Block".
-● Appearance: backgroundColor: '#FFFFFF' (on Gray background) or solid tints (e.g., #DBEAFE for Blue-50).
-● Rules: shadowOpacity: 0, elevation: 0, padding: 20, borderRadius: 12.
-● Layout: Use flexDirection: 'column' or 'row' with hard alignments. No subtle gradients.
-Inputs (TextInput)
-● Default: backgroundColor: '#F3F4F6', borderRadius: 8, padding: 16, borderWidth: 0.
-● Focused: borderWidth: 2, borderColor: '#3B82F6', backgroundColor: '#FFFFFF'. No outer "glow."
-
-Section & Navigation Styling
-● Flat Headers: Use a solid primary color background for the Header. No bottom shadow; use a 1px solid border only if the background is the same color as the body.
-● Bottom Tabs: Use active/inactive colors (#3B82F6 vs #9CA3AF). No "floating" tab bars; stick to the bottom with a solid color fill.
-● Color Blocking: Alternate screen sections using full-width View components with contrasting background colors (e.g., a Blue Hero View followed by a White Content View).
-Iconography
-● Library: Lucide-react-native or MaterialCommunityIcons.
-● Style: Thick strokes (strokeWidth: 2.5).
-● Container: Place icons inside solid-colored squares or circles with no shadows.
-
-The "Bold Factor" (React Native Implementation)
-● Avoid: Subtle drop shadows on buttons, "Soft UI" (Neumorphism), or standard iOS/Android system-default styling.
-● Emphasize:
- ○ Scale: Make primary headlines much larger than body text for "Poster" impact.
- ○ Decoration: Use position: 'absolute' views to place large, low-opacity geometric shapes (circles/rotated squares) behind content.
- ○ Hard Borders: Use borderWidth: 4 for high-impact elements like Featured CTA buttons.
-
-
-
-Material Design(材料设计)
-有趣、动态的颜色提取、药丸形状的按钮和不同的仰角状态。基于谷歌的Material Design 3,具有增强的深度和微观交互。
-1. 安卓(Android)生态系统应用
-2. 跨平台工具与生产力软件
-3. 数据密集型 B 端后台 (Material UI)
-
-System Prompt: Material You (MD3) for React Native
-Design Philosophy
-Core Principles: Personal, adaptive, and spirited. This framework translates Material Design 3’s organic system into a mobile-first experience. It prioritizes tonal surfaces over stark whites, utilizes organic shapes with soft curves, and leverages mobile-specific haptics and gestures.
-Vibe: Friendly, soft, rounded, and tactile. The UI feels alive—responding to touch with fluid motion and "state layers." Surfaces are depth-aware, using tonal tinting rather than heavy shadows to define hierarchy.
-Mobile-Specific Implementation Details:
-● Touch-First Feedback: Every interactive element utilizes Pressable with a state layer and subtle scaletransformations.
-● Haptic Integration: Success, warning, and heavy interactions (like FAB presses) trigger HapticFeedback for a physical feel.
-● Atmospheric Depth: Since CSS backdrop-blur is heavy on mobile, we use layered View components with LinearGradient and absolute-positioned blurred shapes to simulate depth.
-● Safe Area Awareness: Full compliance with react-native-safe-area-context to ensure organic shapes flow behind status bars and home indicators.
-● Fluid Motion: Powered by Reanimated using the signature Material "Emphasized" easing.
-
-Design Token System (The DNA)
-Colors (Light Mode)
-Seed Color: Purple/Violet (#6750A4)
-Token
-Hex Value
-Mobile Usage
-Background (Surface)
-#FFFBFE
-Screen-level containers (warm off-white)
-Foreground (On Surface)
-#1C1B1F
-Primary text and icons
-Primary
-#6750A4
-Main CTAs, active tab icons, focus states
-On Primary
-#FFFFFF
-Text/Icons on top of Primary
-Secondary Container
-#E8DEF8
-Chips, inactive toggle tracks, subtle buttons
-On Secondary Container
-#1D192B
-Text on secondary surfaces
-Tertiary
-#7D5260
-FABs, badges, accent highlights
-Surface Container
-#F3EDF7
-Card backgrounds, Bottom Sheets
-Surface Container Low
-#E7E0EC
-Text inputs, search bars
-Outline
-#79747E
-Unfocused borders, dividers
-State Layer Rules (Opacity Overlays):
-● Pressed State (Solid): Overlay black at 10% or white at 15% depending on background brightness.
-● Pressed State (Ghost): Primary color at 12% opacity.
-● Disabled: 38% opacity on both container and content.
-Typography
-Font Family: Roboto (System default on Android; load via Google Fonts for iOS parity).
-Scale
-Size
-Weight
-Line Height
-Display Large
-56px
-400
-64px
-Headline Large
-32px
-500
-40px
-Title Large
-22px
-500
-28px
-Body Large
-16px
-400
-24px
-Label Medium
-12px
-500
-16px
-● Letter Spacing: Buttons and Labels use 0.1px tracking for readability at small sizes.
-Radius & Borders
-● Extra Small (8px): Chips, small tooltips.
-● Small (12px): Tooltips, mini-cards.
-● Medium (16px): Standard Cards, Selection Dialogs.
-● Large (28px): Main Screen Cards, Bottom Sheets.
-● Full (Pills): All Buttons, Search Bars, FABs.
-● Inputs: borderTopLeftRadius: 12, borderTopRightRadius: 12, borderBottomLeftRadius: 0, borderBottomRightRadius: 0.
-
-Shadows & Effects
-Mobile elevation is primarily achieved through Tonal Elevation (overlaying a color) rather than just shadows.
-● Shadow Style: Use shadowColor with 0 offset and high blur for iOS; use elevation for Android.
-● Elevation Levels:
- ○ Level 0: No shadow, flat surface.
- ○ Level 1 (Cards): Subtle depth for list items.
- ○ Level 2 (Active Cards): Enhanced depth for dragged or pressed items.
- ○ Level 3 (FABs): Distinct floating effect.
-● Blur Shapes: Use absolute positioned View components with Canvas (via react-native-skia) or pre-rendered blurred SVG assets to create atmospheric background "blobs."
-
-Component Styling Principles
-Buttons
-● Shape: Always Pill-Shaped (borderRadius: 999).
-● Feedback: Must use Pressable with an Animated.View inside to handle scale: 0.95 on press.
-● FAB: 56x56dp, Tertiary color, borderRadius: 16 (rounded square) or 28 (circular).
-Inputs (M3 Filled Style)
-● Visuals: Background #E7E0EC, flat bottom with 2px indicator.
-● Animation: Label floats upward on focus using Reanimated. Bottom border expands from center.
-Cards
-● Radius: 24px-28px.
-● Separation: Use Surface Container color against the Surface background. Avoid harsh borders.
-
-Animation & Motion
-All animations must use the Material Emphasized Easing:
-Easing.bezier(0.2, 0, 0, 1)
-● Duration:
- ○ Small (Switches/Checkboxes): 100ms.
- ○ Medium (Buttons/Cards): 250ms.
- ○ Large (Modals/Screen Transitions): 400ms.
-
-The "Mobile Bold Factor"
-1. Haptic Choreography: Light haptics on toggle, medium on long-press.
-2. Organic Overlays: Backgrounds must feature at least two blurred organic shapes (Primary/Tertiary) at 15% opacity to break the "app-grid" feel.
-3. Tonal Navigation: Bottom navigation bar should use a Secondary Container pill for the active icon state.
-4. Edge-to-Edge: UI elements should bleed into the safe areas where appropriate (e.g., hero images) to feel modern.
-
-Anti-Patterns (Avoid)
-● ❌ No Square Buttons: Everything interactive is pill-shaped or heavily rounded.
-● ❌ No Pure White: Use #FFFBFE for screens.
-● ❌ No Default Opacity Cuts: Use the Tonal Palette tokens for states, not just opacity: 0.5.
-● ❌ No Harsh Shadows: If it looks like a "drop shadow," it's too heavy. It should look like an "ambient glow."
-
-
-
-Neo Brutalism(新野兽派)
-一种原始的、高对比度的美学,模仿印刷设计和DIY朋克文化。其特点是奶油色背景、厚厚的黑色边框(4px)、零模糊的硬偏移阴影、冲突的鲜艳颜色(热红色、鲜艳的黄色、柔和的紫色)和厚重的Space Grotesk排版。拥抱不对称、旋转、贴纸般的分层和有组织的视觉混乱。
-1. 创意工具与协作平台
-2. 针对 Z 世代(Gen Z)的市场营销与电商
-3. 内容展示与个人作品集
-
-Design Philosophy: Mobile Neo-Brutalism (React Native)
-Neo-brutalism in a mobile context is a high-energy rebellion against the "Glassmorphism" and "Minimalist" trends of iOS and Android. It translates the raw, "sticker-on-a-laptop" aesthetic into a tactile, thumb-friendly interface. While standard mobile design hides structure, Mobile Neo-brutalism enforces it. It treats the mobile screen as a physical collage board where elements don't just "float"—they occupy heavy, bordered space.
-Core DNA & Fundamental Principles:
-● Unapologetic Visibility: Reject subtle elevation. If a component exists, it must have a thick black border(borderWidth: 4). No soft shadows; use solid offset blocks for depth.
-● Tactile Feedback (The "Mechanical" Tap): Interactions shouldn't feel like "touching glass." Buttons must feel like physical switches. On press, they physically shift (translateX and translateY) to "cover" their shadow, creating a mechanical click-down sensation.
-● Sticker Layering: Treat screens as a series of layered paper cutouts. Use slight rotations (transform: [{ rotate: '-2deg' }]) on cards, badges, and text blocks to break the rigid mobile grid.
-● High-Voltage Palette: Use a "Pop Art" color scheme. A warm Cream background (#FFFDF5) paired with high-saturation Hot Red, Vivid Yellow, and Pure Black.
-● Anti-Smooth Motion: Avoid slow, easing transitions. Use snappy, spring-based animations or immediate state changes. Movement should feel like an arcade game, not a luxury car dashboard.
-Design Token System (React Native)
-1. Colors (The "High-Saturation" Palette)
-● Background: #FFFDF5 (Cream) - The default canvas.
-● Ink/Stroke: #000000 (Pure Black) - Used for ALL text, borders, and shadows.
-● Accent (Primary): #FF6B6B (Hot Red) - Primary actions.
-● Secondary: #FFD93D (Vivid Yellow) - Secondary highlights/badges.
-● Muted: #C4B5FD (Soft Violet) - Tertiary/Card headers.
-● White: #FFFFFF - High contrast on dark backgrounds.
-2. Typography (Bold & Heavy)
-● Font Family: Space Grotesk (or System Bold if unavailable).
-● Weights: Only 700 (Bold) and 900 (Black/Heavy). Avoid "Regular" or "Light."
-● Sizing:
- ○ Display: 48px - 64px (Headlines)
- ○ Heading: 24px - 32px
- ○ Body: 18px - 20px (Readable but heavy)
- ○ Label: 14px (All caps, tracking: 2).
-3. Borders & Shadows (The Signature)
-● Border Width: Default 4px. Secondary 2px.
-● Border Radius: 0 (Sharp) is default. 999 (Pill) only for badges/special buttons.
-● Hard Shadows: Non-blurry, solid black offsets.
- ○ Small: offset: { width: 4, height: 4 }
- ○ Medium: offset: { width: 8, height: 8 }
-Component Styling Principles
-Buttons
-● Structure: height: 56, borderWidth: 4, borderColor: '#000', borderRadius: 0.
-● Shadow: Apply a solid black View behind the button offset by 4px.
-● Interaction: Use Pressable. When pressed, use transform: [{ translateX: 4 }, { translateY: 4 }] to hide the shadow and simulate a physical press.
-● Text: fontFamily: 'SpaceGrotesk-Bold', textTransform: 'uppercase'.
-Cards & Containers
-● Style: backgroundColor: '#FFF', borderWidth: 4, borderColor: '#000'.
-● Rotation: Add transform: [{ rotate: '-1deg' }] to one card and rotate: '2deg' to the next to create a "scattered sticker" look.
-● Padding: Aggressive padding (p: 20) to prevent text from touching the thick borders.
-Inputs
-● Style: height: 64, borderWidth: 4, borderColor: '#000', backgroundColor: '#FFF'.
-● Focus State: Change backgroundColor to Yellow (#FFD93D) when focused. No soft "glow" or blue rings.
-Badges
-● Style: Circular or rectangular with borderWidth: 2.
-● Positioning: Use position: 'absolute' to "slap" them onto the corners of cards or images, often rotated.
-Layout & Architecture
-1. The "Staggered" Grid: Avoid perfectly aligned columns. Use marginTop or marginLeft offsets to make elements feel hand-placed.
-2. Marquees: Use auto-scrolling horizontal text lists for "Breaking News" or "Featured" sections to add motion without complexity.
-3. Iconography: Use thick-stroke icons (e.g., Lucide-ReactNative with strokeWidth={3}). Always wrap icons in a bordered square or circle.
-4. Visual Noise: Use small repeating SVG patterns (dots/grids) in the background of headers or specific sections to add texture.
-Anti-Patterns (Avoid at all costs)
-● No Linear Gradients: Use solid color blocks only.
-● No Shadow Radius: Blur radius must always be 0.
-● No Subtle Grays: Use #000 or the palette colors.
-● No Soft Easing: Animations should be Spring or Linear.
-● No "Standard" Border Radius: Avoid borderRadius: 8 or 12. It’s either 0 or 999.
-System Prompt for AI Code Generation
-System Role: You are an expert React Native developer specializing in Neo-Brutalist Mobile UI.Core Instruction: Generate code that strictly adheres to the Neo-Brutalist aesthetic.Styling Rules:Goal: Create a high-contrast, loud, and tactile mobile interface that feels mechanical and rebellious.
-
-
-Bold Typography(粗体排版/大字报风)
-以字体为导向的设计,将大字体作为主要的视觉元素。超大标题、极端对比和戏剧性的负面空间创造了海报般的构图,文字成为了艺术。
-1. 创意品牌官网与产品首屏(Hero Section)
-2. 纯内容驱动的应用与阅读平台
-3. 活动推广、展览与快闪页面
-
-System Prompt: Bold Typography (Mobile/React Native)
-Design Philosophy
-Bold Typography Mobile is the translation of editorial poster design into a handheld experience. In this mobile-first environment, typography is the interface. We reject typical mobile "clutter" (shadows, rounded corners, heavy icons) in favor of high-contrast type and intentional negative space. The goal is to make a 6.7-inch screen feel like a premium printed broadsheet.
-Core Principles
-● Type as Hero: Headlines aren't just titles; they are the UI. A massive, tight-kerned headline (48pt+) is the primary visual anchor, replacing the need for decorative imagery.
-● Extreme Scale Contrast: Maintain a dramatic ratio between H1 and Body. On mobile, we push for a 5:1 ratio to ensure the hierarchy is undeniable even on small displays.
-● Deliberate Negative Space: Whitespace is used to frame "typographic blocks." We favor large vertical gaps between sections (60px+) to let the letterforms breathe.
-● Strict Hierarchy: The eye must follow a linear, editorial path: Massive Headline → Subhead (Mono) → Body → High-contrast CTA.
-● Restrained Palette: Near-black and warm-white. A single "Vermillion" accent for interaction. Color never decorates; it only indicates importance or action.
-The Vibe
-Confident. Editorial. High-end. It feels like a luxury brand's mobile app or a digital design manifesto. Every interaction is decisive, and every word is essential.
-Visual Signatures:
-● Edge-to-Edge Typography: Headlines that push the horizontal bounds of the screen.
-● No Rounded Corners: borderRadius: 0 across all buttons, inputs, and containers.
-● Underlines as Primary UI: Interactive text is identified by thick (2pt-3pt) accent underlines.
-● Sharp Transitions: Instant or high-speed transitions. No "bouncing" or "elastic" animations.
-
-Design Token System
-Colors (Dark Mode)
-JSON
-
-{
- "background": "#0A0A0A", // Near-black
- "foreground": "#FAFAFA", // Warm white
- "muted": "#1A1A1A", // Subtle surface
- "mutedForeground": "#737373", // Secondary text
- "accent": "#FF3D00", // Vermillion
- "accentForeground": "#0A0A0A", // Dark text on accent
- "border": "#262626", // Precise dividers
- "input": "#1A1A1A", // Input surfaces
- "card": "#0F0F0F" // Elevation
-}
-
-Typography (React Native Style Objects)
-● Primary Stack: Inter-Tight, System (Weight: 600+)
-● Display Stack: PlayfairDisplay-Italic (For pull quotes)
-● Mono Stack: JetBrainsMono-Regular (For labels/stats)
-Scale System:
-● xs: 12px (Labels/Captions - Mono)
-● sm: 14px (Secondary info)
-● base: 16px (Body - standard for iOS/Android readability)
-● lg: 18px (Lead paragraphs)
-● xl: 22px (Subheads)
-● 2xl: 32px (Section intros)
-● 3xl: 40px (H2)
-● 4xl: 56px (H1 - Mobile Standard)
-● 5xl: 72px (Hero Statement)
-Letter Spacing (Tracking):
-● tighter: -1.5px (Headlines)
-● tight: -0.5px (Subheads)
-● wide: 1px (Mono labels)
-● wider: 2px (All-caps CTAs)
-Line Heights:
-● tight: 1.1 (Headlines)
-● normal: 1.6 (Body)
-
-Component Stylings
-Buttons
-Primary (The Underline CTA):
-● flexDirection: 'row', paddingVertical: 12, paddingHorizontal: 0.
-● Text: Accent color, fontWeight: '600', textTransform: 'uppercase', letterSpacing: 1.5.
-● Decoration: A View acting as a bottom border: height: 2, backgroundColor: accent, marginTop: 4.
-● Feedback: opacity: 0.7 on press.
-Secondary (The Inverted Box):
-● borderWidth: 1, borderColor: foreground, borderRadius: 0.
-● paddingVertical: 16, paddingHorizontal: 24, backgroundColor: 'transparent'.
-● Text: Foreground color, centered, uppercase.
-Cards & Containers
-● No Shadows: Use borderBottomWidth: 1 and borderColor: border to separate content.
-● Sharp Edges: borderRadius: 0 for all view wrappers.
-● Section Spacing: Use paddingVertical: 64 as a standard for section breaks.
-● Accent Anchor: A small decorative View (width: 40, height: 4, backgroundColor: accent) placed above section titles.
-Inputs
-● height: 56, backgroundColor: input, borderWidth: 1, borderColor: border, borderRadius: 0.
-● paddingHorizontal: 16, color: foreground, fontSize: 16.
-● Focus State: borderColor: accent.
-
-Layout Strategy (Mobile)
-● Container Padding: Standard paddingHorizontal: 24.
-● Staggered Layout: Use asymmetric margins (e.g., marginLeft: 0 for headlines, marginLeft: 40 for body text) to create an editorial "grid" feel.
-● Verticality: Prioritize a single-column flow with massive vertical gaps.
-● Bleed: Large decorative type (like section numbers "01") should partially bleed off the screen edge (right: -20).
-
-Effects & Animation (Reanimated/Moti)
-● Philosophy: Fast, crisp, decisive.
-● Timing: 200ms duration for all transforms.
-● Easing: Easing.bezier(0.25, 0, 0, 1).
-● Entrance: Fade in + subtle slide up (10px) for text blocks.
-● Interactive: Pressing a card should result in a color shift (background from black to muted), not a "lift" or shadow effect.
-
-Iconography
-● Library: Lucide-react-native.
-● Style: strokeWidth: 1.5.
-● Size: 20px for UI controls, 32px for feature anchors.
-● Strict Rule: Icons must always be accompanied by a Mono-stack text label. Icons never stand alone unless they are standard navigation (e.g., Back arrow).
-
-Accessibility
-● Contrast: Ensure foreground/background ratio remains 18:1.
-● Touch Targets: All buttons/links must have a minimum hitSlop or height of 44px.
-● Readability: Body text never goes below 16px to ensure legibility on high-DPI mobile screens.
-● Visual Cues: Since we avoid shadows/depth, focus and active states must use the Accent Color (#FF3D00) or high-contrast inversion to indicate selection.
-
-
-
-Academia (学院风)
-大学美学,古老的图书馆,温暖的纸张纹理,传统的衬线,金色/深红色的色调。
-1、知识管理与深度阅读工具类
-2、仪式感较强的个人品牌与创意作品集
-3、解谜与角色扮演游戏
-4、特定文化调性的社区平台
-
-System Prompt: Scholarly Academia Mobile (React Native)
-Design Philosophy
-Core Principles: Scholarly gravitas meets timeless elegance, optimized for the handheld experience. This style channels the atmosphere of centuries-old university libraries and Victorian study halls into a mobile interface. Every interaction—from a scroll to a tap—must feel like handling a prestigious artifact: rich material references (mahogany, brass, parchment) combined with measured ornamentation and traditional typography. Vibe: Scholarly, Prestigious, Tactile, Timeless, Dignified, Intellectual. The Academia Mobile Promise: This is not a flat mobile app. It is a digital "pocket watch" or "leather-bound journal." We trade modern minimalism for physical depth, replacing generic cards with "ledger pages" and standard buttons with "etched brass hardware."
-
-Design Token System (The DNA)
-Color System (The Library at Night)
-Foundation Colors:
-● background: #1C1714 (Deep Mahogany) - Primary screen background.
-● backgroundAlt: #251E19 (Aged Oak) - Surface elevation for cards and modals.
-● foreground: #E8DFD4 (Antique Parchment) - Primary text.
-● muted: #3D332B (Worn Leather) - Input backgrounds, disabled states.
-● mutedForeground: #9C8B7A (Faded Ink) - Secondary text and labels.
-● border: #4A3F35 (Wood Grain) - Subtle dividers.
-Accent Colors:
-● accent: #C9A962 (Polished Brass) - Primary interactive color (icons, links, active borders).
-● accentSecondary: #8B2635 (Library Crimson) - High-importance badges/wax seals.
-● accentForeground: #1C1714 (Dark on Brass) - Text on brass buttons.
-Brass Gradient (for Buttons): ['#D4B872', '#C9A962', '#B8953F'] (Linear Gradient)
-
-Typography System
-Font Families:
-● Heading: CormorantGaramond-Medium (Serif)
-● Body: CrimsonPro-Regular (Book-style Serif)
-● Display/Labels: Cinzel-SemiBold (Engraved All-caps)
-Type Scale (Mobile Optimized):
-● Display: 32px - 40px (Cormorant Garamond, tight leading)
-● H1: 28px - 32px (Cormorant Garamond)
-● H2: 22px - 26px (Cormorant Garamond)
-● Body: 16px - 18px (Crimson Pro, Leading: 24px-26px)
-● Labels/Overlines: 10px - 12px (Cinzel, Uppercase, Letter Spacing: 2px-3px)
-Special Typography Patterns:
-● Drop Caps: First letter of sections uses Cinzel, 60px, Color: Brass.
-● Volume Numbering: Major sections must be prefixed with "VOLUME I", "VOLUME II" in Cinzel, 10px, Brass.
-
-Radius & Border System
-● Default Radius: 4px (Buttons, Inputs, Cards).
-● Arch-Top Special: borderTopLeftRadius: 100, borderTopRightRadius: 100 (Applied to hero images and feature containers to mimic cathedral windows).
-● Border Thickness: 1px standard; 2px for brass interactive highlights.
-
-Shadows & Depth (Mobile-Specific)
-● Card Elevation: shadowColor: '#000', shadowOffset: { width: 0, height: 4 }, shadowOpacity: 0.4, shadowRadius: 6, elevation: 8.
-● Brass Button: shadowColor: '#C9A962', shadowOpacity: 0.2, shadowRadius: 4.
-● Engraved Text: Applied via subtle textShadowColor: 'rgba(0,0,0,0.5)', textShadowOffset: { width: 1, height: 1 }, textShadowRadius: 1.
-
-Textures & Atmospheric Effects
-1. Vignette Overlay: Use a LinearGradient or absolute positioned View with a radial gradient to darken screen corners.
-2. Sepia Filter: All images must have a sepia tint by default (via Image filters or semi-transparent #C9A962overlay) until interacted with.
-3. Corner Flourishes: Use absolute positioned View elements at the top-left and bottom-right of major cards.
- ○ Implementation: 24px x 24px L-shaped borders in Brass.
-4. Ornate Divider: A horizontal line with a centered Unicode glyph (e.g., "✶").
- ○ Style: Gradient line Transparent -> #C9A962 -> Transparent.
-
-Component Styling Principles
-Buttons
-● Primary: Brass gradient background, Cinzel font, dark mahogany text, uppercase.
-● Secondary: Transparent background, 2px Brass border, Brass text.
-● Tertiary/Ghost: No border, Brass text, Cinzel font.
-● Size: Height 52px (Standard), 44px (Small).
-Cards
-● Background: #251E19 (Aged Oak).
-● Border: 1px of #4A3F35 (Wood Grain).
-● Arch Treatment: Top images in cards must use the rounded Arch-Top.
-Wax Seal Badges
-● Circular #8B2635 (Crimson) badge with a 1px Brass border.
-● Typically contains a small star or quill icon.
-● Position: Floating over the top-right corner of cards/images.
-Form Inputs
-● Background: #3D332B (Worn Leather).
-● Text: #E8DFD4 (Parchment).
-● Focus State: Border changes to Brass with a subtle glow.
-
-Layout Principles
-● Padding: Standard horizontal screen padding: 20px or 24px.
-● Vertical Rhythm: Generous spacing between sections (48px to 64px).
-● Alignment: Headings are typically centered for a formal "manifesto" feel; body text is left-aligned or justified for a "book" feel.
-
-The "Bold Factor" (Mandatory Signature Elements)
-1. Arch-Topped Imagery: Every main image must have a cathedral-arch top.
-2. Roman Numeral System: Use "Volume I, II, III" for section headers.
-3. Brass Interactive Language: Every tappable item must feature Brass (#C9A962).
-4. Drop Cap Intros: The first paragraph of any major section begins with a large Brass Cinzel letter.
-5. Tactile Textures: Use the vignette and corner flourishes to avoid a "flat" digital look.
-
-Animation & Motion
-● Philosophy: Heavy, deliberate, and smooth. No "springy" or "bouncing" effects.
-● Transitions: Use Timing with Easing.out(Easing.poly(4)).
-● Signature Interaction: On press, buttons should "dim" slightly (opacity 0.8) to feel like physical pressure on metal.
-
-Anti-Patterns (What to Avoid)
-● NO Pure White (#FFFFFF) or Pure Black (#000000). Use Parchment and Mahogany.
-● NO Sans-Serif fonts unless absolutely required for small system metadata.
-● NO Bright, neon, or saturated colors.
-● NO Sharp geometric/tech-inspired iconography.
-● NO Fast, poppy, or elastic animations.
-
-Implementation Reference (NativeWind / React Native)
-JavaScript
-
-// Example Token Usage
-const academiaTheme = {
- colors: {
- mahogany: '#1C1714',
- oak: '#251E19',
- parchment: '#E8DFD4',
- brass: '#C9A962',
- crimson: '#8B2635',
- ink: '#9C8B7A',
- },
- archStyle: {
- borderTopLeftRadius: 100,
- borderTopRightRadius: 100,
- }
-};
-
-
-Cyberpunk(赛博朋克)
-黑色上的高对比度霓虹灯、故障动画、终端/单空间字体、面向技术的装饰。受80年代科幻和黑客文化启发的反乌托邦数字美学。
-1. 游戏领域
-2. 金融科技与加密货币
-3. 数据可视化与大屏监控
-4. 潮流品牌与创意营销
-
-System Prompt: Cyber-Noir React Native Architect
-1. Design Philosophy
-Core Principles: "High-Tech, Low-Life" for the small screen. This is a mobile interface for a digital dystopia—a portable terminal for a rogue decker. It emphasizes tension, signal interference, and industrial utility. Unlike web interfaces, every interaction must feel tactile, haptic, and dangerously responsive. The Vibe: A "hacked" mobile OS. Heavy influences from Ghost in the Shell and Cyberpunk 2077. It’s a high-contrast, data-dense environment that feels like it’s running on a modified handheld military device. The Tactile Experience:
-● Imperfect Signal: Utilize Canvas (Skia) or Svg filters for chromatic aberration and signal noise. The UI should "flicker" during transitions.
-● Absolute Void: Use #0a0a0f for deep backgrounds. Interactive elements shouldn't just be colored; they should emit a digital "radiance" (glow) that bleeds into the void.
-● Angular Ergonomics: Hard, 45-degree chamfered corners. Avoid standard iOS/Android rounded corners. Use custom SVG masks or react-native-skia for clipping.
-2. Design Token System (The DNA)
-Colors (Dark Mode Only)
-TypeScript
-
-const colors = {
- background: '#0a0a0f', // Deep void
- foreground: '#e0e0e0', // Neutral text
- card: '#12121a', // Primary container
- muted: '#1c1c2e', // Tertiary surfaces
- accent: '#00ff88', // Matrix Green (Primary)
- secondary: '#ff00ff', // Neon Magenta
- tertiary: '#00d4ff', // Cyber Cyan
- border: '#2a2a3a', // Structural lines
- destructive:'#ff3366', // Alert/Error
-};
-
-Typography (React Native TextStyle)
-● Font Family: Orbitron (Headings), JetBrains Mono (Body/Data). Fallback to monospace.
-● H1: fontSize: 42, fontWeight: '900', textTransform: 'uppercase', letterSpacing: 4
-● Data/Body: fontSize: 14, fontFamily: 'JetBrains Mono', letterSpacing: 1
-● Label: fontSize: 10, textTransform: 'uppercase', opacity: 0.7
-Shape & Borders
-● Radius: Standard borderRadius is forbidden. Use 0.
-● Chamfered Cut: Implement via react-native-svg or clipPath.
-● BorderWidth: 1px for schematics; 2px for focus/active states.
-3. Component Stylings
-Buttons (Pressable / TouchableOpacity)
-● Cyber-Button: A custom component using an SVG background to achieve the 45-degree corner cut.
-● Interaction: On onPressIn, scale to 0.98, trigger a haptic pulse (Haptics.impactAsync), and increase the shadowOpacity of the neon glow.
-● Variants: * Glitch: Rapidly toggle left: 1 and left: -1 on a loop when active.
- ○ Outline: Transparent center, neon-colored border, text with textShadow.
-Containers (View)
-● HUD Card: High-tech panels with "corner brackets" (absolute-positioned L-shapes in the corners).
-● Terminal View: A view with a subtle repeating-linear-gradient (Scanlines) overlay using PointerEvents="none".
-● Holographic Glass: Use BlurView (Expo) with an extremely low intensity and a thin neon border.
-Inputs (TextInput)
-● Prompt Style: Always prefixed with a static > in colors.accent.
-● Focus State: The border should pulse using Animated.loop. Hide the standard cursor and use a custom blinking View block.
-4. Layout Strategy
-● Safe Area: Respect the notch, but fill it with a "System Status" bar (faux bit-rates, battery percentage in hex).
-● Density: Prefer information density over whitespace. Use small, sharp margins (8px increments).
-● Asymmetry: Use transform: [{ skewY: '-1deg' }] on specific section headers to break the mobile "grid" feel.
-5. Non-Genericness (THE BOLD FACTOR)
-● Haptic Glitch: Whenever a "glitch" animation occurs, trigger a light haptic tap.
-● Scanline Overlay: A persistent, high-z-index absolute View covering the screen with a semi-transparent horizontal line pattern.
-● CRT Flicker: A global Animated value subtly oscillating the opacity of the root view between 0.98 and 1.0.
-6. Effects & Animation (React Native Specific)
-Reanimated / Animated API:
-● Blink: duration: 500, easing: Easing.steps(2)
-● Glitch: Use useAnimatedStyle to randomly offset translateX by [-2, 2, 0] every few seconds.
-● Neon Pulse: ```typescript shadowOffset: { width: 0, height: 0 }, shadowRadius: pulseAnim, // Animate from 4 to 12 shadowColor: colors.accent, shadowOpacity: 0.6,
-
-## 7. Iconography
-* **Library:** `Lucide-react-native`.
-* **Config:** `strokeWidth={1.5}`, `color={colors.accent}`.
-* **Enhancement:** Wrap icons in a `View` with a small `shadow` to make the icon appear to glow against the background.
-
-## 8. Mobile Strategy (UX)
-* **Performance:** Use `Native Driver` for all opacity and transform animations. Avoid heavy `blur` on low-end Android devices.
-* **Loading States:** Replace standard `ActivityIndicator` with a "Deciphering..." text animation or a rotating circuit-pattern SVG.
-* **Gestures:** Use `PanResponder` or `Gesture Detector` for swipe-to-action transitions that feel like sliding hardware panels.
-
-## 9. Accessibility
-* **Contrast:** Maintain high contrast for legibility in outdoor (high-glare) environments.
-* **Touch Targets:** Even with "sharp" aesthetics, ensure hitboxes (`hitSlop`) are at least `44x44dp`.
-* **Screen Readers:** Use `accessibilityLabel` for all icon-only buttons to explain the "hacker" jargon (e.g., "Decrypt" instead of "Enter").
-
-## 10. Implementation Guidance
-* Prioritize `StyleSheet.create` for performance.
-* Use `expo-linear-gradient` for neon-border effects.
-* For the "Chamfer" look, use this SVG path template for `BackgroundView`:
- `M10,0 L100,0 L110,10 L110,100 L100,110 L10,110 L0,100 L0,10 Z` (Adjust based on component dimensions).
-
----
-**Next Step:** Would you like me to generate a specific React Native component (e.g., a Cyber-Style Login Screen or a Glitched Card) using this prompt?
-
-
-web3
-一种大胆的、未来主义的美学,灵感来自比特币和去中心化金融。深空背景,带有比特币橙色色调、金色亮点、发光元素和精确的数据可视化。
-1. 去中心化金融协议 (DeFi) 与 钱包 (Wallets)
-2. NFT 交易市场与数字收藏品展示
-3. 元宇宙 (Metaverse) 与 社交平台
-4. 前沿科技品牌官网 (High-Tech Brands)
-
-System Prompt: Bitcoin DeFi Mobile (React Native)
-You are an expert React Native developer specializing in high-end Fintech and Web3 mobile interfaces. Your goal is to implement the "Bitcoin DeFi" aesthetic—a sophisticated fusion of precision engineering, cryptographic trust, and digital gold. This is a deep cosmic void where data structures glow with Bitcoin orange and digital gold.
-1. Core Design Principles (Mobile-First)
-● Luminescent Energy: Interactive elements emit light. Use shadowColor and shadowOpacity in React Native to create colored glows (orange/gold), not just black shadows.
-● Tactile Precision: Use ultra-thin borderWidth: 1. Data must be displayed with monospace fonts for technical accuracy.
-● Layered Depth: Use blurView (via expo-blur) or semi-transparent overlays (rgba) to create digital depth. Elements float in Z-space using elevation and shadows.
-● Trust Through Design: High contrast and technical precision. The UI must feel "Engineered to Perfection."
-2. Design Token System (React Native)
-Colors (Dark Mode Only)
-JavaScript
-
-const Colors = {
- void: '#030304', // True Void (Background)
- darkMatter: '#0F1115', // Surface/Cards
- pureLight: '#FFFFFF', // Primary Text
- stardust: '#94A3B8', // Muted Text
- dimBoundary: 'rgba(30, 41, 59, 0.2)', // Border
- bitcoinOrange: '#F7931A', // Primary Accent
- burntOrange: '#EA580C', // Secondary Accent
- digitalGold: '#FFD600', // Tertiary Accent
-};
-
-Typography (Custom Font Mapping)
-● Headings: SpaceGrotesk-Bold (Geometric, technical character)
-● Body: Inter-Regular / Inter-Medium (High legibility)
-● Mono/Data: JetBrainsMono-Medium (Stats, prices, hashes)
-Radius & Borders
-● Cards/Containers: borderRadius: 24 (Soft but modern)
-● Buttons: borderRadius: 999 (Pill shape)
-● Inputs: borderRadius: 12 or Bottom-border only.
-● Borders: Always borderWidth: StyleSheet.hairlineWidth or 1.
-3. Component Stylings (React Native Implementation)
-Buttons (The "Power Pill")
-● Style: Use LinearGradient from #EA580C to #F7931A.
-● Shadow: shadowColor: '#F7931A', shadowOffset: {width: 0, height: 4}, shadowOpacity: 0.5, shadowRadius: 10.
-● Interaction: Use Pressable with Scale animation (to 0.96) on press.
-● Text: Uppercase, letterSpacing: 1.5, fontFamily: 'Inter-Bold'.
-Cards (The "Blockchain Blocks")
-● Surface: backgroundColor: '#0F1115'.
-● Border: borderWidth: 1, borderColor: 'rgba(255,255,255,0.1)'.
-● Glow: Subtle shadowColor: '#F7931A', shadowOpacity: 0.1 for "active" blocks.
-● Layout: Generous padding (padding: 20).
-Inputs (The "Terminal" Style)
-● Appearance: Bottom border only (borderBottomWidth: 2) or dark translucent background.
-● Focus State: Border changes to #F7931A with a subtle outer glow.
-● Text: White color, monospace font for numeric inputs.
-4. Mobile-Specific Effects
-● Glassmorphism: Use BlurView (intensity: 20) for navigation bars and floating overlays.
-● Haptic Feedback: Trigger Haptics.impactAsync (Light or Medium) on button presses and successful transactions to reinforce "Engineered" feel.
-● Gradients: Use react-native-linear-gradient for all primary CTAs and heading accents.
-● Grid Background: Use a repeated SVG pattern of a 50px grid with opacity: 0.05 to simulate the network void.
-5. Non-Generic "Bold" Choices
-● Gradient Text: Use MaskedView to apply the Orange-to-Gold gradient to key balance figures and headings.
-● Holographic Nodes: Icons should be wrapped in a circular BlurView with an orange border.
-● Animated Status: Use a pulsing MotiView (or reanimated) for "Live" network status indicators.
-● The "Ledger" Timeline: Use a vertical gradient line for transaction histories, where each dot pulses when in view.
-6. Layout & Technical Constraints
-● Safe Area: Always wrap main containers in SafeAreaView.
-● Touch Targets: Minimum 48x48dp for all interactive elements.
-● Performance: Use FlashList for heavy transaction lists. Keep animations to the UI thread using React Native Reanimated.
-
-
-Claymorphism(粘土拟物化)
-一种超现实的3D美学,模拟柔软的充气粘土物体,具有多层阴影堆叠、充满活力的糖果店颜色、触觉微交互和有机浮动环境元素,创造出优质、有趣的数字玩具体验。
-1. 针对儿童与青少年的教育类应用
-2. 品牌形象中的 3D 角色与插图
-3. 金融科技与加密货币 (轻量版)
-4. 创意工具与社交软件
-
-System Prompt: High-Fidelity Claymorphism (React Native Mobile Edition)
-Design Philosophy
-Core Concept: Digital Clay (Mobile) This design system is a high-fidelity simulation of a tangible, physical world constructed from premium digital clay. In a mobile environment, this translates to a "thumb-first" experience where every element feels like a soft, air-filled silicone object that physically reacts to touch. It rejects flat minimalism in favor of volume, weight, and extreme tactility.
-The "High-Fidelity" Difference: Unlike standard mobile UI, this system uses multi-layered Shadow Stacks(simulated via nested View components or react-native-shadow-2) to create density. Elements are not flat vectors; they are substantial objects that "squish" and "bounce" under the user's thumb.
-
-Visual Language & Materiality
-● Material: Soft-touch matte silicone and marshmallow-like foam. Surfaces absorb light; reflections are soft and diffused.
-● Lighting: A virtual overhead light source (top-left). This creates deep ambient occlusion below and gentle specular highlights on upper ridges.
-● The "Super-Rounded" Rule: Zero sharp corners.
- ○ Outer Containers: borderRadius: 40 to 50
- ○ Standard Cards: borderRadius: 32
- ○ Buttons/Inputs: borderRadius: 20
-● The Sensory Vibe: Playful, "Candy Store" palette, and bouncy organic motion.
-
-Design Token System (Mobile)
-1. Colors (The Candy Shop Palette)
-● Canvas (BG): #F4F1FA (Cool lavender-white. Avoid pure white).
-● Text (Primary): #332F3A (Soft Charcoal).
-● Text (Muted): #635F69 (Dark Lavender-Gray - minimum for WCAG).
-● Accents:
- ○ Primary: #7C3AED (Vivid Violet)
- ○ Secondary: #DB2777 (Hot Pink)
- ○ Success: #10B981 (Emerald)
- ○ Warning: #F59E0B (Amber)
-2. Typography (React Native Styles)
-● Headings: Nunito-Black (Weight 900) or Extrabold. Rounded terminals are mandatory.
-● Body: DMSans-Medium (Weight 500). Clean and geometric.
-● Scaling:
- ○ Hero: fontSize: 48, lineHeight: 52, letterSpacing: -1
- ○ Section Title: fontSize: 32, lineHeight: 38
- ○ Card Title: fontSize: 22, lineHeight: 28
- ○ Body: fontSize: 16, lineHeight: 24
-
-Component Architecture (React Native Implementation)
-1. The Universal Clay Card
-Use a combination of backgroundColor: 'rgba(255,255,255,0.7)' and BlurView (from expo-blur or react-native-blur) for a "Glass-Clay" hybrid.
-● Shadow Stack: Since RN elevation is limited, use nested views or SVG shadows to simulate:
- a. Outer: offset: {12, 12}, blur: 24, color: 'rgba(160, 150, 180, 0.2)'
- b. Highlight: offset: {-8, -8}, blur: 16, color: '#FFFFFF'
-● Interaction: Use Pressable with useAnimatedStyle (Reanimated) to lift the card (translateY: -4) on press.
-2. The Clay Button (The "Squish" Factor)
-Buttons must feel like physical switches.
-● Base: height: 56, borderRadius: 20, justifyContent: 'center'.
-● Gradient: Use LinearGradient from #A78BFA to #7C3AED.
-● Micro-Physics: * On Press In: scale: 0.92, shadowOpacity decreases.
- ○ On Press Out: Spring back to scale: 1.0 with damping: 10.
-● Shadow: Deep colored shadow matching the button hue.
-3. The Recessed Input
-Simulates a finger-press into the clay.
-● Style: backgroundColor: '#EFEBF5', height: 64, paddingHorizontal: 24.
-● Inner Shadow: Use a dark top-left inner shadow and a white bottom-right rim light to create the "hollow" look.
-
-Animation System (Powered by Reanimated)
-1. Buoyancy (Float): Background blobs should use withRepeat(withTiming(...)) to drift ±20px over 8-10 seconds.
-2. Clay Breathe: Stat orbs should subtly scale between 1.0 and 1.03 every 4 seconds.
-3. Haptic Feedback: Every "Squish" interaction (Buttons/Cards) must trigger Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light).
-
-Layout Patterns & Responsive Strategy
-● Thumb Zone: Keep primary CTAs in the bottom 30% of the screen.
-● Bento Mobile: Use a 2-column grid where the "Hero Card" spans 2 columns, and secondary cards are square.
-● Safe Areas: Use SafeAreaView but allow background blobs to bleed into the margins for a "zero-gravity" feel.
-
-Dos and Don'ts
-● DO use Text with includeFontPadding: false to ensure vertical centering in rounded buttons.
-● DO use Spring physics for all transitions; avoid linear easing.
-● DO nested border radii: if a card is 32, the image inside is 24.
-● DON'T use standard Android elevation. It creates flat, gray shadows that break the clay aesthetic. Use SVG-based shadows.
-● DON'T use sharp corners (< 20).
-● DON'T use pure black #000000 for text or shadows.
-
-
-Enterprise(企业级/政企风)
-现代SaaS美学平衡了专业性和可接近性。鲜艳的靛蓝/紫罗兰色渐变、柔和的阴影、等距深度和干净的几何无衬线字体。
-1. 后台管理系统
-2. 生产力工具与协作平台
-3. 政务与金融类严肃应用
-4. 垂直领域专业软件
-Here is a translated version of your web design prompt, adapted specifically for mobile application development (iOS/Android/React Native/Flutter). I have replaced web-specific concepts like "hover states," "CSS grids," and "mouse interactions" with mobile-native paradigms such as "press states," "haptics," "safe areas," and "gestures."
-
-App Design System Prompt: Modern Enterprise SaaS (Mobile)
-1. Design Philosophy
-This style embodies the modern enterprise SaaS aesthetic translated for mobile — professional yet approachable, sophisticated yet tactile. It rejects the clunky, utility-only feel of traditional corporate apps in favor of a warm, confident, and inviting mobile experience.
-Core Principles:
-● Trustworthy Yet Vibrant: Establishes credibility through clean structure and mobile-optimized typography, while maintaining visual energy through vibrant gradients.
-● Tactile Depth: Uses colored shadows, layered elevations (like bottom sheets and cards), and subtle z-axis stacking to create visual hierarchy on a small screen.
-● Refined Elegance: Every element is polished, focusing on fluid gestures, spring-physics animations, and sophisticated press states.
-● Purposeful Gradients: Indigo-to-violet gradients serve as the visual signature for primary CTAs and active states.
-● Mobile Polish: Generous spacing, safe-area awareness, and crisp typography create a premium, enterprise-ready feel in the palm of the hand.
-Keywords: Trustworthy, Vibrant, Polished, Tactile, Modern, Approachable, Enterprise-Ready, Fluid.
-2. Design Token System
-Colors (Light Mode)
-● Background: #F8FAFC (Slate 50) - A very subtle cool grey/white base for screen backgrounds.
-● Surface: #FFFFFF (White) - For cards, bottom sheets, and elevated elements.
-● Primary: #4F46E5 (Indigo 600) - The core brand color. Vibrant blue-purple.
-● Secondary: #7C3AED (Violet 600) - For gradients, badges, and accents.
-● Text Main: #0F172A (Slate 900) - High contrast, sharp for primary readability.
-● Text Muted: #64748B (Slate 500) - For supporting text and inactive tab icons.
-● Accent/Success: #10B981 (Emerald 500) - For positive indicators and snackbars.
-● Divider/Border: #E2E8F0 (Slate 200) - Subtle separation for list items.
-Typography
-● Font Family: Plus Jakarta Sans — A geometric sans-serif that balances professional authority with modern approachability. High legibility on mobile screens.
-● Scaling: Designed to support iOS Dynamic Type and Android font scaling.
-● Font Weights:
- ○ Display/Screen Titles: ExtraBold (800)
- ○ Section Headers: Bold (700)
- ○ Card Titles/Buttons: SemiBold (600)
- ○ Body Text: Regular (400)
-● Line Heights: Tight for titles (1.1-1.2), relaxed for body text (1.4-1.5) to ensure comfortable reading on narrow screens.
-Radius & Border
-● Screen Elements: 16pt/dp for large cards and bottom sheets.
-● Interactive Elements: 8pt/dp for inputs and small chips.
-● Buttons: Fully rounded (pill shape) or 12pt/dp for a modern tech feel.
-● Borders: Hairline (0.5pt - 1pt) borders using the Divider token to define edges without adding visual weight.
-Shadows & Depth
-● Card Elevation: Soft, colored shadows replacing neutral grays. Android elevation or iOS shadow properties mimicking 0px 4px 16px rgba(79, 70, 229, 0.08).
-● Bottom Sheet Shadow: Stronger upward shadow to indicate the highest z-index.
-● Button Shadow (Primary): 0px 4px 12px rgba(79, 70, 229, 0.25) to make primary actions highly prominent.
-3. Component Stylings
-Buttons
-● Primary CTA: Full width (minus screen padding) at the bottom of the screen. Background uses the Indigo-to-Violet gradient. White text.
-● Secondary: White surface, slate border, slate text.
-● Press State: Instead of web hover, use an active press state that slightly scales the button down (0.95x) and reduces shadow, paired with subtle haptic feedback.
-Cards & Lists
-● Base: White background, 16pt radius, hairline border, soft colored shadow.
-● Layout: Horizontal scrolling (carousels) for feature discovery, vertical standard lists for data.
-● List Items: Edge-to-edge with inset dividers, utilizing leading icons (in soft-colored circular backgrounds).
-Inputs & Forms
-● Style: White background, 8pt radius, light slate border.
-● Active/Focused State: Border transitions to Indigo, label animates to a floating position, keyboard automatically presents.
-● Error State: Red border with an immediate, subtle shake animation.
-4. App-Specific Bold Choices
-● Haptic Integration: Tied to micro-interactions. Light impact for toggles and tab changes; medium impact for primary CTA presses; success/error haptics for form submissions.
-● Fluid Gestures: Bottom sheets that can be dragged and dismissed fluidly. Cards that support swipe-to-action (e.g., swipe left to archive) with color reveals underneath.
-● Scroll-Linked Animations: As the user scrolls down a list, the large screen title collapses smoothly into the top navigation bar.
-● Gradient Usage: Used sparingly but intentionally—on the active tab icon, primary buttons, and as a subtle blurred mesh background behind onboarding screens.
-● Skeletal Loading: Instead of traditional spinners, use animated, pulsing placeholder shapes (Indigo/Slate tinted) that match the layout of the incoming data.
-5. Spacing & Layout
-● Safe Areas: Strict adherence to iOS and Android safe area insets (notches, dynamic islands, home indicator areas).
-● Screen Padding: Consistent 16pt/dp or 20pt/dp horizontal margins for all screens.
-● Vertical Rhythm: 24pt/dp between distinct sections; 12pt/dp between related items in a group.
-● Navigation:
- ○ Bottom Tab Navigation for primary destinations (3-5 items).
- ○ Top App Bar for contextual actions, screen titles, and back buttons.
-● Content Width: Text blocks should rarely span the absolute full width; use generous margins to keep line lengths comfortable for reading.
-6. Animation & Transitions
-● Philosophy: "Fluid and Springy" — Animations should feel physical and interruptible.
-● Screen Transitions: Standard platform pushes (slide left on iOS, fade/scale on Android), but utilize Shared Element Transitions for hero images or core cards opening into detail views.
-● Press Animations: Scale-down (scale: 0.97) on press down, spring back on release.
-● Easing: Avoid linear animations. Use spring physics for layout changes and ease-out for opacities.
-7. Iconography & Touch Targets
-● Library: Lucide-react-native (or equivalent SVG system).
-● Style: 2px stroke width, rounded caps and joins for a friendly, modern feel.
-● Touch Targets: Crucial for mobile. Minimum tap area of 44x44 pt (iOS) or 48x48 dp (Android) for all interactive elements, even if the visual icon is only 24x24.
-● Active States: Navigation icons transition from outlined (inactive) to filled/gradient (active).
-8. Accessibility & Best Practices
-● Dynamic Text: UI must not break when users increase their system font size. Text must wrap or truncate gracefully.
-● Contrast: All text meets WCAG AA standards. Slate 900 on Slate 50 background is highly compliant.
-● Screen Readers: Ensure all image assets and icon buttons have descriptive accessibilityLabel (iOS) and contentDescription (Android).
-● Dark Mode Readiness: While this spec is light-mode first, tokens should be structured to easily invert (e.g., Slate 50 becomes Slate 900, gradients become slightly muted).
-● Reduced Motion: Respect OS-level "Reduce Motion" settings by falling back to simple cross-fades instead of complex scaling and spring animations.
-
-
-
-Sketch(素描/手绘风)
-有机的不稳定边框、手写排版、纸张纹理和俏皮的不完美。每个元素都是用记号笔和铅笔在纹理纸上勾勒出来的。
-1. 原型设计与早期创意提案 (Low-Fidelity Prototyping)
-2. 创意品牌、艺术与独立文化项目
-3. 教育、绘本与儿童类产品
-4. 游戏化 UI 与 叙事解谜游戏
-
-Design Philosophy
-The Hand-Drawn mobile design style celebrates authentic imperfection and human touch within the palm of the hand. It rejects the sterile precision of typical mobile UI in favor of organic, playful irregularity that evokes a portable sketchbook, a pocket notebook, or a collection of sticky notes.
-Core Principles:
-● No Straight Lines: Every View and TouchableOpacity uses complex borderRadius logic or SVG masks to create wobbly edges that reject geometric perfection.
-● Tactile Texture: Use background overlays or tiled images to simulate physical media like grain, paper, or notebook grids, making the screen feel like a physical surface.
-● Playful Tilt: Elements utilize small transform: [{ rotate: '-1deg' }] properties to break the rigid mobile grid and create casual energy.
-● Hard Offset Shadows: Strictly avoid elevation (Android) or shadowRadius (iOS) that creates blur. Use a secondary "shadow layer" View offset by (4px, 4px) to create a cut-paper, layered collage aesthetic.
-● Handwritten Typography: Exclusively use handwritten fonts (Kalam, Patrick Hand). Typography should vary in size and rotation to look like quick notes written on the fly.
-● Scribbled Overlays: Use absolute-positioned SVGs for flourishes like hand-drawn arrows, "tape" effects on images, and "X" marks for close buttons.
-● Intentional Messiness: Embrace slight overlaps and asymmetrical margins that make the app feel spontaneous rather than manufactured.
-● Emotional Intent: This style lowers the "fear of interaction" by appearing unfinished and approachable. It is perfect for journaling apps, creative tools, education, or any product that wants to feel human-centered rather than corporate.
-
-Design Token System
-Colors (Single Palette - Light Mode)
-● Background: #fdfbf7 (Warm Paper)
-● Foreground: #2d2d2d (Soft Pencil Black)
-● Muted: #e5e0d8 (Old Paper / Erased Pencil)
-● Accent: #ff4d4d (Red Correction Marker)
-● Border: #2d2d2d (Pencil Lead)
-● Secondary Accent: #2d5da1 (Blue Ballpoint Pen)
-Typography
-● Headings: Kalam-Bold - High visual weight, felt-tip marker style.
-● Body: PatrickHand-Regular - Highly legible but distinctly human.
-● Scale: Large and readable for mobile. Headings should have lineHeight adjusted to allow for "scribbled" descenders.
-Radius & Border
-● Wobbly Borders: Since React Native doesn't support the slash / syntax for borderRadius, use unique values for each corner (e.g., borderTopLeftRadius: 15, borderTopRightRadius: 25, borderBottomLeftRadius: 20, borderBottomRightRadius: 10).
-● Border Width: Bold and visible. borderWidth: 2 minimum; borderWidth: 3 for primary actions.
-● Style: solid for containers; dashed for "cut-out" sections or empty states.
-Shadows & Effects
-● Hard Offset Shadows: Since shadowOpacity with 0 radius is inconsistent across platforms, implement as a "Shadow View" placed behind the main component.
- ○ Standard: Offset { x: 4, y: 4 } with #2d2d2d.
- ○ Active (Press): Offset { x: 0, y: 0 } (the button "sinks" into the paper).
-● Paper Texture: Use a repeating pattern background image or a very subtle radial-gradient SVG overlay across the entire screen.
-
-Component Stylings
-Buttons (TouchableOpacity)
-● Shape: Irregular wobbly rectangle.
-● Normal State: * White background, borderWidth: 3, Pencil Black text.
- ○ Hard offset shadow view behind it.
-● Pressed State (activeOpacity={1}):
- ○ Main button transform: [{ translateX: 4 }, { translateY: 4 }].
- ○ The background "shadow view" is covered, simulating a physical press.
-● Variant: "Post-it" Yellow (#fff9c4) for primary CTAs.
-Cards/Containers
-● Base Style: White background, wobbly border, slight rotation (-1deg or 1deg).
-● Decoration Types:
- ○ "Tape": A semi-transparent View (rgba(200, 200, 200, 0.5)) positioned absolutely at the top, slightly rotated to look like it holds the card.
- ○ "Tack": A small red circle SVG at the top center.
-● Speech Bubbles: Use a small SVG triangle attached to the bottom of the container for "hint" text or tooltips.
-Inputs (TextInput)
-● Style: Full box with wobbly borderRadius.
-● Font: PatrickHand-Regular.
-● Focus State: Border color changes to Blue Ballpoint (#2d5da1) with a slight increase in borderWidth.
-● Placeholder: Muted Pencil (#2d2d2d60).
-
-Layout Strategy
-● The "Anti-Grid": Avoid perfect alignment. Give adjacent cards slightly different rotation values.
-● Layering: Use zIndex to stack "tape" over cards and cards over background scribbles.
-● Visual Rhythm: Use padding: 20 for standard screens. Use large gap values between vertical elements to let the "paper" breathe.
-● Overflow: Allow decorative elements (like a hand-drawn star) to bleed slightly off the edge of the screen.
-
-Non-Genericness (Bold Choices)
-● Sketchy Loaders: Instead of a spinner, use an animation that "scribbles" a circle or toggles between three hand-drawn frames.
-● Hand-Drawn Icons: Use icons that look like they were drawn with a 0.5mm fineliner (thick strokes, unclosed loops).
-● Strikethrough: When a task is completed or an item is deleted, use a red "scribble-out" SVG overlay instead of a simple line.
-● Wavy Dividers: Replace standard horizontal rules with a hand-drawn squiggly line SVG.
-
-Effects & Animation
-● The "Jiggle": When a user triggers an error, use a Sequence animation that rapidly rotates the element between -2deg and 2deg.
-● Snappy Transitions: Use LayoutAnimation.configureNext(LayoutAnimation.Presets.spring) for all layout changes to give a bouncy, physical feel.
-
-Mobile-First Strategy (React Native)
-● Touch Targets: Ensure all wobbly buttons have a minimum hit area of 48x48 even if the visual "ink" is smaller.
-● Safe Area: Ensure the "Paper" background extends into the SafeAreaView to maintain the illusion of physical media.
-● Performance: Use useNativeDriver: true for rotations and transforms to keep the "hand-drawn" movements fluid at 60fps.
-● Haptics: Add Haptics.impactAsync on button presses to reinforce the feeling of "clicking" a physical object.
-
-
-Neumorphism(新拟物化)
-通过单色背景上的双阴影拉伸和插入元素。柔软、触感好、物理接地,可接近性极佳。
-1. 极简主义硬件控制与智能家居
-2. 追求审美感的工具类 App
-3. 金融与健康监测看板(非密集型)
-4. 品牌营销与展示型页面
-
-Design Philosophy (React Native / Mobile)
-Core Principles: Neumorphism on mobile creates a tactile, physical interface through dual shadows. On React Native, this is achieved by layering View components or using specialized libraries to simulate the light source (top-left) and dark shadow (bottom-right). Every component is "molded" from the base material (#E0E5EC). Buttons are never flat; they are either "pillowed" (convex) or "wells" (concave/inset).
-Vibe: Premium, ceramic-like feel. It prioritizes the "thump" of a physical button press. It is a calm, monochromatic experience that uses depth rather than color to establish hierarchy.
-Unique Visual Signatures (Mobile Specific):
-● Dual-Shadow Layering: Since React Native's shadowColor only supports one direction, use nested Viewcomponents or react-native-shadow-2 to achieve the dual-light effect.
-● Haptic Feedback: Every neumorphic interaction (Press/Release) must be accompanied by light haptic feedback (ImpactFeedbackStyle.Light).
-● Physical Press: Active states should use transform: [{ scale: 0.97 }] to simulate material compression.
-● Full-Screen Surface: The entire app uses a single background color (#E0E5EC) to maintain the "continuous material" illusion.
-
-Design Token System (The DNA)
-Colors (Light Mode - Cool Monochromatic)
-● Background: #E0E5EC (The "Clay" base).
-● Text Primary: #3D4852 (7.5:1 contrast).
-● Text Muted: #6B7280 (4.6:1 contrast).
-● Accent: #6C63FF (Used for active toggles or primary CTAs).
-● Shadow Light: rgba(255, 255, 255, 0.6) (Top-Left).
-● Shadow Dark: rgba(163, 177, 198, 0.7) (Bottom-Right).
-Typography
-● Font Family: Use System (San Francisco/Roboto) or PlusJakartaSans-Bold.
-● Sizing: * Heading: 24pt-32pt, Bold.
- ○ Body: 16pt, Medium.
- ○ Caption: 12pt, Regular.
-● Letter Spacing: -0.5 for headings to enhance the modern look.
-Radius (React Native borderRadius)
-● Large Container: 32
-● Standard Button/Input: 16
-● Pill/Search Bar: 999
-
-Shadows & Effects (The Physics)
-Note: React Native requires specific shadow properties for iOS and elevation for Android. For high-fidelity Neumorphism, use a wrapping implementation.
-Extruded (Convex - Resting)
-● Outer Shadow (Dark): shadowOffset: { width: 6, height: 6 }, shadowOpacity: 1, shadowRadius: 10, shadowColor: 'rgba(163, 177, 198, 0.7)'
-● Inner Shadow (Light): shadowOffset: { width: -6, height: -6 }, shadowOpacity: 1, shadowRadius: 10, shadowColor: 'rgba(255, 255, 255, 0.6)'
-Inset (Concave - Pressed/Input)
-● Concept: Use a slightly darker background color (#D1D9E6) or internal gradients/shadows to simulate a "carved out" look.
-● Visual: backgroundColor: '#E0E5EC', plus internal borders of 1px with a darker shade at the top.
-
-Component Styling (React Native)
-Buttons
-● Base: height: 56, borderRadius: 16, justifyContent: 'center', alignItems: 'center'.
-● Default State: Extruded dual shadow.
-● Active State (Pressable): Remove outer shadows, apply scale: 0.98, and change background slightly to indicate an "inset" state.
-● Haptics: Trigger Haptics.impactAsync on onPressIn.
-Cards
-● Base: padding: 24, borderRadius: 32, backgroundColor: '#E0E5EC'.
-● Hierarchy: Use "Nested Depth." A card (Extruded) contains an Icon Container (Inset Deep).
-Inputs
-● Style: height: 50, borderRadius: 16, paddingHorizontal: 16.
-● Depth: Must be Inset (Concave) to look like a physical slot.
-● Focus: Border color changes to #6C63FF with a thin 1.5px width.
-
-Animation & Micro-interactions
-● Framework: Use React Native Reanimated or LayoutAnimation.
-● Transitions: Duration: 250ms, Easing: Bezier(0.4, 0, 0.2, 1).
-● Interaction: * Scale: Buttons shrink by 2-3% when pressed.
- ○ Shadow Transition: Smoothly interpolate shadow opacity from 1 to 0.4 when an element is "pressed" into the surface.
-
-Layout & Accessibility
-● Safe Area: Always wrap in SafeAreaView.
-● Touch Targets: Minimum 48x48 for all interactive elements.
-● Spacing: Use a 8pt grid system (8, 16, 24, 32, 48).
-● Contrast: Ensure text color maintains WCAG AA compliance against the #E0E5EC background.
-
-Anti-Patterns (Do Not Do)
-● No Black Shadows: Never use rgba(0,0,0,x). Shadows must be blue-grey to match the "Cool Grey" material.
-● No Pure White Backgrounds: The screen background MUST be #E0E5EC.
-● No Sharp Edges: Avoid borderRadius < 12.
-● No Flat Borders: Do not use borderWidth: 1 as a substitute for depth unless in a focus state.
\ No newline at end of file
diff --git a/.agents/skills/ui-ux-pro-max/data/draft.csv b/.agents/skills/ui-ux-pro-max/data/draft.csv
deleted file mode 100644
index cac862f..0000000
--- a/.agents/skills/ui-ux-pro-max/data/draft.csv
+++ /dev/null
@@ -1,1779 +0,0 @@
-# NOTE: 此文件仅作为设计备份/参考文档,当前搜索引擎与 CLI 不会读取或执行本文件内容。
-
-
-Bauhaus(包豪斯)
-大胆的几何现代主义,包含圆形、方形和三角形。主色调(红/蓝/黄),边缘鲜明,阴影强烈。功能性与艺术性兼备,带有建构主义的不对称。
-1. 极简主义品牌官网与电商
-2. 工具类与高效率 App
-3. 数字媒体与在线杂志
-
-
-Design Style: Bauhaus (Mobile)
-1. Design Philosophy
-The Bauhaus style embodies the revolutionary principle "form follows function" while celebrating pure geometric beauty and primary color theory. On mobile, this translates to tactile constructivism—the screen is a canvas where elements are physically stacked blocks. The aesthetic creates a high-impact, poster-like experience in the palm of the hand: bold, touch-centric, and unapologetically graphic.
-Vibe: Tactile, Constructivist, Geometric, High-Contrast, Bold, Architectural
-Core Concept: The mobile interface is a vertical geometric composition. Scroll views are not just content streams but stacked layers of colored paper and rigid shapes. The limited screen real estate forces a focus on massive typography and distinct color blocking (Red #D02020, Blue #1040C0, Yellow #F0C020). Every tap should feel mechanical and substantial.
-Key Characteristics:
-● Geometric Purity: UI elements are strictly circles (buttons/avatars) or squares (cards/inputs).
-● Tactile Depth: Hard shadows indicate interactivity; elements look "pressable."
-● Color Blocking: distinct screen sections use solid primary colors to separate content without whitespace.
-● Thick Borders: 2px and 3px black borders ensure legibility and distinct separation on small screens.
-● Vertical Rhythm: Strong vertical stacking with deliberate spacing, avoiding clutter.
-● Constructivist Typography: Headlines are massive (text-4xl to text-5xl) relative to screen width, breaking traditional mobile scaling rules.
-● Thumb-Friendly: Interactive zones are large, distinct, and geometrically defined.
-2. Design Token System (The DNA)
-Colors (Single Palette - Light Mode)
-The palette remains strictly Bauhaus primaries, optimized for high contrast outdoors.
-● background: #F0F0F0 (Off-white canvas)
-● foreground: #121212 (Stark Black)
-● primary-red: #D02020 (Bauhaus Red)
-● primary-blue: #1040C0 (Bauhaus Blue)
-● primary-yellow: #F0C020 (Bauhaus Yellow)
-● border: #121212 (Thick, distinct borders)
-● muted: #E0E0E0
-Typography
-● Font Family: 'Outfit' (geometric sans-serif).
-● Font Import: Outfit:wght@400;500;700;900
-● Scaling: Aggressive scaling adapted for vertical viewports.
- ○ Display: text-4xl → text-5xl (Massive headers taking up 30-40% of screen width)
- ○ Subheadings: text-xl → text-2xl
- ○ Body: text-base (16px minimum for legibility)
- ○ Button Text: text-lg (Large for readability)
-● Weights:
- ○ Headlines: font-black (900) uppercase, tight tracking (tracking-tighter)
- ○ Buttons/Nav: font-bold (700) uppercase, wide tracking (tracking-wide)
- ○ Body: font-medium (500)
-● Line Height: Tight (leading-none) for headlines to save vertical space; leading-relaxed for body text.
-Radius & Border
-● Radius: Strict Binary—rounded-none (0px) for layout blocks, inputs, and cards; rounded-full (9999px) for primary action buttons and avatars.
-● Border Widths:
- ○ Standard Elements: border-2 (2px)
- ○ Major Containers/Bottom Nav: border-t-2 or border-3
- ○ Separators: divide-y-2
-● Border Color: Always #121212 (black).
-Shadows/Effects
-● Hard Offset Shadows (Tactile feedback):
- ○ Small elements (Tags/Icons): shadow-[2px_2px_0px_0px_black]
- ○ Buttons/Cards: shadow-[4px_4px_0px_0px_black] (Reduced from web 8px to save screen width)
- ○ Floating Action Button (FAB): shadow-[5px_5px_0px_0px_black]
-● Touch Feedback: active:translate-x-[2px] active:translate-y-[2px] active:shadow-none (Instant mechanical depression).
-● Patterns:
- ○ Dot grid backgrounds on "Paper" colored sections (background-size: 16px 16px).
- ○ Screen transitions: Slide-over with hard black borders.
-3. Component Stylings
-Buttons (Touch Targets)
-● Minimum Size: Height h-12 or h-14 (48px-56px) for thumb accessibility.
-● Variants:
- ○ Primary (CTA): w-full bg-[#D02020] text-white border-2 border-black shadow-[4px_4px_0px_0px_black]
- ○ Secondary: w-full bg-[#1040C0] text-white border-2 border-black shadow-[4px_4px_0px_0px_black]
- ○ Floating Action (FAB): h-14 w-14 rounded-full bg-[#F0C020] border-2 border-black shadow-[4px_4px_0px_0px_black] flex items-center justify-center
-● Shapes: Full-width rectangular buttons (rounded-none) or pill-shaped (rounded-full) for bottom-sticky actions.
-● States: NO hover. Focus on active state (press down effect).
-Cards (Mobile Stack)
-● Base Style: White background, border-2 border-black, shadow-[4px_4px_0px_0px_black], mb-6.
-● Decoration:
- ○ Geometric badge in top-right: absolute top-0 right-0 h-8 w-8 bg-[#F0C020] border-l-2 border-b-2 border-black flex items-center justify-center.
-● Interaction: Entire card is a touch target. active:translate-x-[1px] active:translate-y-[1px] active:shadow-[2px_2px_0px_0px_black].
-● Content: Image usually takes top half (aspect-video), bold text below.
-Bottom Navigation (The Anchor)
-● Container: fixed bottom-0 w-full bg-white border-t-2 border-black z-50 h-20.
-● Grid: 3 to 5 items equally spaced.
-● Items:
- ○ Inactive: Black stroke icon, clear background.
- ○ Active: Icon inside a geometric shape (Square/Circle) with primary color fill (e.g., Red Square context).
- ○ Label: Tiny uppercase bold text below icon, or icon only for minimalism.
-Inputs & Forms
-● Field: h-12 bg-white border-2 border-black rounded-none px-4 text-black placeholder:text-gray-400 focus:bg-[#FFF9C4] focus:ring-0 focus:border-black.
-● Label: Uppercase bold, mb-1 block.
-● Checkbox: h-6 w-6 appearance-none border-2 border-black bg-white checked:bg-[#1040C0] rounded-none.
-4. Layout & Spacing
-● Container: w-full with px-5 (20px) padding. Max-width constraints removed (fluid mobile).
-● Section Padding:
- ○ Standard: py-8
- ○ Hero: pt-12 pb-16
-● Grid Systems:
- ○ Main Layout: Single column (Stack).
- ○ Micro-grids: 2-column for stats/gallery (gap-3 or gap-4).
-● Safe Areas: Respect pt-safe (top notch) and pb-safe (bottom home indicator).
-● Dividers: Thick section separators border-b-2 border-black usually paired with a background color change.
-5. Non-Genericness (Bold Choices)
-Mobile Constraints require distinct personality to avoid looking like a wireframe:
-● Full-Screen Color Washes:
- ○ Onboarding screens: Full solid backgrounds (Red Screen → Blue Screen → Yellow Screen).
- ○ Success states: Full Yellow background (bg-[#F0C020]) with massive black centered checkmark.
- ○ Error states: Full Red background (bg-[#D02020]) with white text.
-● Header Identity:
- ○ Instead of a standard navbar, use a "Bauhaus Header Block": A row containing a Square (Menu), a flexible space for the Title (Left aligned, massive), and a Circle (Profile/Search). All elements separated by vertical borders divide-x-2 border-b-2 border-black.
-● Geometric Lists:
- ○ List items aren't just text lines. They are alternating geometric bullets: Line 1 uses a ■, Line 2 uses a ●, Line 3 uses a ▲.
-● Rotated "Stickers":
- ○ "New", "Sale", or Notification badges are rotated -12deg or +12deg, sitting on top of corners to break the rigid grid.
-● Image Filters:
- ○ Thumbnails: Grayscale + High Contrast.
- ○ Detail View: Full color, no rounded corners, thick black border.
-6. Icons & Imagery
-● Icon Library: lucide-react-native or similar (Circle, Square, Triangle, Menu, X, ArrowLeft).
-● Icon Style:
- ○ Stroke: stroke-[2px].
- ○ Size: w-6 h-6 (standard) or w-8 h-8 (hero actions).
-● Icon Containers:
- ○ Navigation icons often live inside rigid 48x48px bordered squares.
- ○ Back buttons are always circular rounded-full with a border.
-● Imagery:
- ○ Masking: Use CSS clip-paths to crop header images into non-standard shapes (e.g., a trapezoid or a circle cropped at the bottom) within the mobile frame.
-7. Responsive Strategy (Device Sizes)
-● Small Phones (SE/Mini):
- ○ Reduce display text to text-3xl.
- ○ Stack stats vertically (1-col).
- ○ Reduce padding to px-4.
-● Large Phones (Max/Plus):
- ○ Display text scales to text-5xl.
- ○ Stats can use 2-col grid.
- ○ Card images gain more height.
-● Orientation:
- ○ Portrait (Primary): Vertical stacking.
- ○ Landscape: Avoid if possible, or split screen 50/50 (Text Left / Image Right).
-8. Animation & Micro-Interactions
-● Feel: Physical, snappy, zero-latency.
-● Duration: duration-150 (Very fast).
-● Easing: ease-in-out (Sharp stops).
-● Interactions:
- ○ Tap: The element physically depresses (translate X/Y matches shadow size).
- ○ Drawer Open: Slides in from Left/Right with a solid black border line leading it. No soft fades—it slides like a mechanical door.
- ○ Toast/Alerts: Drop down from top as a solid geometric block (Yellow/Red) with hard borders, swinging slightly like a hanging sign.
- ○ Scroll: Sticky headers snap into place instantly.
-
-
-
-
-"Monochrome(单色/黑白)
-"一套简洁的编辑设计体系,建立在纯粹的黑白之上。没有点缀色——只有戏剧性的对比、超大衬线字体和精准的几何布局。让人联想到高端时尚专题和建筑作品集。严肃、成熟、毫不掩饰地大胆。
-"1. 极简主义电商与高端奢侈品
-2. 专业创意与文档编辑工具
-3. 数据密集型仪表盘(局部应用)
-4. 实验性与先锋感网站"
-
-
-Design Style: Minimalist Monochrome (Mobile)
-Design Philosophy
-Core Principle
-The Pocket Editorial. On mobile, Minimalist Monochrome transforms the screen into a tactile, high-end printed manifesto. It rejects the "app-like" tendency for soft bubbles and friendly gradients. Instead, it offers a stark, vertical journey defined by pure black (#000000), pure white (#FFFFFF), and razor-sharp borders. Every tap is a deliberate decision; every scroll is a flip of a page in a luxury monograph.
-Visual Vibe
-Emotional Keywords: Tactile, Austere, Editorial, Direct, High-Fidelity, Uncompromising, Sharp, Rhythmic.
-This is the visual language of:
-● Mobile typographers and digital brutalism
-● The mobile interfaces of luxury fashion houses (Balenciaga, Zara, SSENSE)
-● Digital exhibitions where the content frames itself
-● High-contrast e-reader aesthetics
-What This Design Is NOT
-● ❌ "App-y" (no cards with drop shadows, no floating bubbles)
-● ❌ Native iOS/Android standard (no system blue, no rounded groups)
-● ❌ Gesture-heavy (interactions are explicit taps, not vague swipes)
-● ❌ Cluttered (one idea per screen view)
-● ❌ Colorful (strictly grayscale)
-The DNA of Minimalist Monochrome (Mobile)
-1. Vertical Linearity
-The mobile screen is a continuous roll of paper. Structure is created not by boxes, but by horizontal lines (rules) that span the full width of the device. Content lives between these lines.
-2. Typography as Interface
-Buttons are often just large words. Navigation is text-based. The serif typeface (Playfair Display) acts as the primary image on the screen. Headlines must be large enough to break words onto new lines, creating graphic shapes.
-3. The "Touch" Inversion
-Since there is no "hover" on mobile, interaction is communicated through inversion. When a user touches a white block, it turns black instantly. This zero-latency binary feedback replaces physical tactility.
-4. Zero Radius, Zero Fluff
-All elements—buttons, images, inputs, modals—have strictly 0px border radius. This sharp geometry cuts through the rounded physical corners of modern smartphones, creating a striking contrast.
-
-Design Token System
-Colors (Strictly Monochrome)
-background: #FFFFFF (Pure white)
-foreground: #000000 (Pure black)
-muted: #F5F5F5 (Off-white for "pressed" states or subtle blocks)
-mutedForeground: #525252 (Dark gray for metadata)
-border: #000000 (Black borders - heavy usage)
-borderLight: #E5E5E5 (Subtle dividers)
-overlay: #000000 (Full screen menu background)
-
-Rule: No accent colors. The "Active State" is simply the inverse of the "Default State."
-Typography
-Font Stack:
-● Display: "Playfair Display", serif - For all headlines and large numerals.
-● Body: "Source Serif 4", serif - For reading text.
-● UI/Labels: "JetBrains Mono", monospace - For tiny tags, dates, and technical specs.
-Type Scale (Mobile Optimized):
-Note: Sizes are calibrated to feel "massive" on a small screen without breaking layout.
-xs: 0.75rem (12px) - Metadata / Breadcrumbs
-sm: 0.875rem (14px) - UI Labels / Captions
-base: 1rem (16px) - Body text (Legibility minimum)
-lg: 1.125rem (18px) - Lead text / Button text
-xl: 1.5rem (24px) - Section headers
-2xl: 2rem (32px) - Standard Headlines
-3xl: 2.5rem (40px) - Hero Sub-text
-4xl: 3rem (48px) - Major Headlines
-5xl: 4rem (64px) - "Cover" text (Often wraps)
-6xl: 5rem (80px) - Numerical statements
-
-Tracking & Leading:
-● Headlines: tracking-tighter (-0.05em) and leading-[0.9]. Text should feel tightly packed.
-● Body: leading-relaxed for readability.
-● Button Text: tracking-widest uppercase.
-Border Radius
-ALL VALUES: 0px
-
-Constraint: Even the bottom sheet (modal) must be square. Even the active state of a tapped element is a sharp rectangle.
-Borders & Lines (The Grid)
-hairline: 1px solid #E5E5E5 (List separators)
-thin: 1px solid #000000 (Standard element borders)
-thick: 2px solid #000000 (Emphasis / Input bottom)
-heavy: 4px solid #000000 (Section dividers)
-
-Usage:
-● Full-Bleed Lines: Borders should often touch the edges of the screen (-mx-4 or -mx-6).
-● Separators: Use border-b black heavily to separate stacked vertical content.
-Shadows
-NONE
-
-Depth is strictly 2D. Layers are defined by opacity (100% vs 0%) or borders, never by shadows.
-Textures & Patterns
-Use subtle noise to simulate high-quality paper texture on mobile backgrounds to avoid a "sterile" feeling.
-Mobile Noise (CSS):
-CSS
-
-background-image: url("data:image/svg+xml,..."); /* Same noise SVG as web */
-opacity: 0.03; /* Slightly higher opacity for small screens */
-
-
-Component Stylings
-Buttons & Touch Targets
-Primary Button (The Block):
-- Width: w-full (Full width strongly preferred)
-- Height: h-14 (56px - Large touch target)
-- Background: #000000
-- Text: #FFFFFF
-- Radius: 0px
-- Typography: Uppercase, Mono or Serif, Tracking-widest
-- Active State: Instantly inverts to White bg, Black text
-
-Secondary Button (The Outline):
-- Width: w-full
-- Height: h-14
-- Background: Transparent
-- Border: 1px solid #000000
-- Active State: Instantly fills Black
-
-Sticky Bottom Action (CTA):
-● A fixed bar at the bottom of the viewport.
-● border-t-2 border-black.
-● Contains a single primary action or a price + action pair.
-● Background: #FFFFFF (or inverted #000000).
-Cards / List Items
-The "Stacked" Card:
-Instead of a box with padding, mobile cards are often full-width segments separated by borders.
-- Container: Border-bottom 1px solid #000000
-- Padding: py-6
-- Image: Aspect ratio 4:5 or 1:1, full width or padded
-- Content: Text sits directly below image
-- Interaction: Touching anywhere in the segment triggers "Active" state
-
-Navigation
-The "Bar":
-● Top: Minimal. Just a logo (Left) and a "MENU" text button or Hamburger (Right).
-● Bottom: Optional. If used, simple text labels or thin outline icons. border-t-2 border-black.
-The Menu Overlay:
-● Full screen.
-● Background: #000000 (Black).
-● Text: #FFFFFF (White).
-● List items: Massive text (text-4xl), serif, centered or left-aligned.
-● Divider: Thin white lines between menu items.
-Inputs
-Mobile Input:
-- Style: Flush with background.
-- Border: Bottom only (2px solid black).
-- Radius: 0px.
-- Height: h-14.
-- Focus: Border becomes 4px thick. No native blue glow.
-- Clear Button: Simple 'X' icon in black.
-
-
-Layout Strategy
-Safe Areas
-● Respect pb-safe (Home Indicator) and pt-safe (Status Bar).
-● Style Note: The Status Bar should be white text on black header, or black text on white header. High contrast.
-Container & Spacing
-● Horizontal Padding: px-5 (20px) or px-6 (24px).
-● Vertical Rhythm:
- ○ Small gaps: py-4
- ○ Section gaps: py-16
- ○ Between text and image: my-6
-The "Scroll"
-● Design for the scroll. Use sticky headers for section titles (e.g., "Details", "Shipping") that stack as the user scrolls down, creating a filing cabinet effect.
-● Use divide-y divide-black for lists to create strong separation.
-
-Effects & Animation
-Motion Philosophy: Cut, Don't Fade.
-Mobile transitions should feel mechanical and instant, like a shutter clicking.
-Interactions:
-● Tap: active:bg-black active:text-white (Instant inversion).
-● Page Transition: Slide in from right (100% width) with a hard edge. No distinct shadow on the sliding page, just a clean line.
-● Modal: Slides up from bottom. 0px radius. Covers 100% or 90% of screen. Black border top.
-● Scroll Parallax: None. Keep scrolling tied 1:1 to finger movement.
-Specific Implementation:
-TypeScript
-
-// Mobile Button Active State
-className="bg-black text-white active:bg-white active:text-black active:border active:border-black transition-none"
-
-// Image Loading
-className="opacity-0 data-[loaded=true]:opacity-100 transition-opacity duration-300 ease-linear grayscale data-[loaded=true]:grayscale-0"
-
-
-Iconography
-Style: Stroke-based, Thin, Sharp.
-Library: Lucide React (or similar).
-Mobile Specifics:
-● Size: w-6 h-6 (Standard)
-● Stroke: 1.5px (Matches the fine aesthetic)
-● Touch: If an icon is a button, it must have a p-3 (12px) padding hit-box around it, even if the border is invisible.
-
-Responsive Strategy (Device Sizes)
-Small Phones (iPhone SE/Mini):
-● Headlines: Scale down to text-4xl to prevent breaking single words into nonsense.
-● Padding: Reduce to px-4.
-Large Phones (Max/Plus):
-● Headlines: text-5xl or text-6xl.
-● Layout: Can introduce a 2-column grid for product thumbnails (but keep strict borders between them).
-Dark Mode:
-● System: Enforce Light Mode (Black on White) as the default brand identity.
-● Inverted Sections: Use Dark Mode (White on Black) only for specific sections (Footer, Hero, Special Features) to create rhythm, not based on system settings.
-
-Bold Choices (Non-Negotiable)
-1. Massive Typographic Hero: The opening screen must feature a headline where a single word might span the full width.
-2. The "Hard" Line: A 4px black line (border-b-4) must separate the Hero from the content.
-3. Sticky Section Headers: As you scroll, the section title (e.g., "01. INFO") sticks to the top with a bottom border, stacking on top of the previous one.
-4. No Hamburger Icon: Use the word "MENU" in JetBrains Mono instead of an icon, if space permits.
-5. Inverted Gallery: Image galleries have a Black background with images at full opacity.
-6. Editorial Inputs: Form labels look like subheadings (Playfair Display, Italic).
-7. No Skeletons: Loading states are simple spinning black lines or just whitespace. No gray pulsing blobs.
-8. Mechanical Feedback: Every interactive element MUST have a visible active state (color inversion).
-
-What Success Looks Like (Mobile)
-A successfully implemented Minimalist Monochrome mobile design should feel like:
-● A digitally printed receipt from a high-end boutique.
-● A pocket edition of a brutally honest manifesto.
-● Clean, fast, and remarkably legible outdoors.
-● Intimidatingly simple.
-It should NOT feel like:
-● A scaled-down version of a desktop site.
-● A standard Bootstrap/Tailwind mobile layout.
-● An app trying to be "friendly."
-
-
-
-
-Modern Dark(现代深色模式)
-一种电影般的高精度暗模式设计,通过动画渐变斑点、鼠标跟踪聚光灯效果和精心制作的微交互实现分层环境照明,感觉就像高级软件。
-"1. 影音娱乐与流媒体平台
-2. 开发者工具与专业生产力软件
-3. 金融、科技与 AI 仪表盘
-4. 高端运动与奢华品牌"
-
-Design Philosophy
-Core Principles: Precision, tactile depth, and fluid motion define this mobile design system. For React Native, every component is treated as a physical layer within a stacked 3D space, illuminated by virtual light sources. The design communicates "high-end mobile utility"—as responsive and refined as the Linear mobile app or Apple’s native interface. Every shadow uses multiple layers, every gradient is dithered to prevent banding, and every interaction uses precise haptic feedback combined with Expo.out easing.
-Vibe: Cinematic Technical Minimalism. It’s a "Dark Mode First" aesthetic, utilizing near-blacks (#050506) and deep indigos. Imagine a high-end pro tool interface viewed through frosted glass at night. It is technical but inviting, using soft "glow" sources (#5E6AD2) to guide the thumb. It should feel like a premium native iOS/Android app, not a web-wrapper.
-Differentiation: The signature is Atmospheric Depth. While most mobile apps are flat, this system uses:
-● Layered Backgrounds: Stacked View layers with varying opacities, blur intensities, and subtle noise textures.
-● Animated Ambient Light: Large, slow-moving blurred Canvas objects (using react-native-skia or Animated) that simulate light pools.
-● Haptic-Linked Interactions: Every "Pressable" event is paired with subtle haptics (Impact Light/Medium) to reinforce the "hardware" feel.
-● Spring-less Precision: Eschewing "bouncy" animations for sophisticated Bezier(0.16, 1, 0.3, 1) curves.
-
-Design Token System (The DNA)
-Color Strategy: Deep Space & Ambient Light
-Token
-Value
-Usage
-bg-deep
-#020203
-Screen background, Bottom Tab bar base
-bg-base
-#050506
-Primary view container background
-bg-elevated
-#0a0a0c
-Modals, Bottom sheets, Surface cards
-surface
-rgba(255,255,255,0.05)
-Card backgrounds, list items
-foreground
-#EDEDEF
-Primary text (High contrast)
-foreground-muted
-#8A8F98
-Secondary labels, body text
-accent
-#5E6AD2
-Buttons, active icons, primary brand glows
-accent-glow
-rgba(94,106,210,0.2)
-Ambient shadows and light emission
-border-default
-rgba(255,255,255,0.08)
-Subtle hairline dividers (0.5pt on iOS)
-
-Typography System (React Native)
-Font Family: Inter, GeistSans-Regular, or System San Francisco/Roboto.
-Level
-Size
-Weight
-Letter Spacing
-Display
-48
-700
--1.5
-H1
-32
-600
--0.5
-H2
-24
-600
--0.5
-H3
-18
-600
-0
-Body
-16
-400
-0
-Label/Mono
-12
-500
-1.2 (Uppercase)
-Gradient Text: Implement using mask-view and react-native-linear-gradient. Headers should transition from #FFFFFF to rgba(255,255,255,0.7) vertically.
-
-Component Styling Principles
-1. The Background System
-Never use a single solid color for the screen.
-● Base: A LinearGradient from #0a0a0f at the top to #020203 at the bottom.
-● The "Blobs": Use AbsoluteFill views with borderRadius equal to half their width, high blurRadius (30-50), and low opacity (0.1).
-● Animation: Use useAnimatedStyle from Reanimated to slowly oscillate the translateX and translateY of these light pools.
-2. Cards & Containers
-● Radius: Always borderRadius: 16.
-● Border: Use borderWidth: StyleSheet.hairlineWidth with rgba(255,255,255,0.1).
-● Glow: Apply a subtle top-edge highlight using a 1px LinearGradient inside the card.
-● Shadow: React Native shadows are limited on Android; use react-native-shadow-2 or Skia to achieve the "3-layer" shadow look (Ambient + Diffuse + Accent).
-3. Buttons (Pressables)
-● Primary: Background #5E6AD2. Text #FFFFFF.
-● Interaction: On onPressIn, scale to 0.97. On onPressOut, scale back to 1.0. Use Selection haptic feedback.
-● Visual: Add a 10% opacity white "Shine" gradient overlaying the top half of the button.
-4. Interactive Navigation
-● Tab Bar: Use BlurView (expo-blur) with intensity={20} and tint="dark".
-● Active State: The active icon should have a small accent-glow shadow behind it.
-● Transitions: Shared Element Transitions for navigating from a card to a detail view, ensuring the card's border and background flow seamlessly.
-
-Layout & Motion
-Spacing Scale
-● Base Unit: 4pt.
-● Screen Margins: 20pt (Standard) or 16pt (Tight).
-● Gaps: Use gap (available in modern RN) with values of 8, 12, 16, or 24.
-Animation Specs
-● Easing: Easing.bezier(0.16, 1, 0.3, 1) (Expo Out).
-● Duration: * Micro-interactions (Toggle/Press): 200ms.
- ○ Screen Transitions: 400ms.
- ○ Modals (Bottom Sheet): 500ms with custom spring (damping: 20, stiffness: 90).
-
-Anti-Patterns (What to Avoid)
-● Pure Black (#000000): It causes "OLED Smearing" on mobile screens. Stick to #050506.
-● Standard OS Modals: Avoid default Modal components; use "Bottom Sheets" (like gorhom/bottom-sheet) with blurred backdrops to maintain depth.
-● Full Opacity Borders: Never use solid grey borders. Always use rgba white/black for natural blending.
-● Laggy Blobs: Do not use too many blurRadius effects on the main JS thread. Always use useNativeDriver: true or Skia.
-
-The "Bold Factor" (Signature Elements)
-1. Haptic Precision: Tactile feedback on every toggle, successful action, and bottom sheet detent.
-2. Glassmorphism: Heavy use of BlurView for headers and navigation to maintain the "Frosted Glass" aesthetic.
-3. Accent Glows: A faint, non-distracting glow behind primary actions that pulses slightly when the screen is idle.
-4. Bento Layouts: For dashboards, use Flexbox to create asymmetric cards (e.g., one card taking 60% width, the other 40% with different heights).
-
-
-SaaS(软件即服务)
-一个大胆、极简主义的现代视觉系统,将简洁的美学与动态的执行相结合。具有标志性的电蓝渐变、复杂的双字体配对(Calistoga+Inter)、动画英雄图形、倒置对比部分和贯穿始终的微交互。专业而前卫的设计——自信而不杂乱。
-1. 业务管理与协作系统 (B2B / Operations)
-2. 开发者工具与云服务平台
-3. 企业内部工具与人力资源管理 (HRM)
-4. 营销与数据分析工具
-
-System Prompt: Mobile Excellence Design System (React Native)
-Design Philosophy
-Core Principle
-Clarity through structure, character through bold detail. This system adapts high-end editorial aesthetics for the palm of the hand. It rejects the "miniature website" feel in favor of a native-first, tactile experience.
-Whitespace is a precision instrument for thumb-driven navigation. Motion is not decoration; it is spatial feedback. Color is concentrated into a single, Electric Blue signature that guides the user through the app's hierarchy.
-The Visual Vibe
-"High-Tech Boutique." Imagine a premium fintech app combined with a modern design portfolio. It feels engineered, yet artistic; minimal, yet alive.
-● Confident: Bold typography and vibrant accents.
-● Sophisticated: Layered shadows and dual-font systems that whisper "quality."
-● Tactile: Haptic-ready interactions and fluid spring animations.
-● Premium: Generous "safe areas" and elevated surfaces.
-
-The DNA of This Style
-1. The Signature Gradient (Mobile Optimized)
-The Electric Blue gradient (#0052FF → #4D7CFF) is the heartbeat. In React Native, this is implemented via react-native-linear-gradient.
-● Usage: Primary Buttons, Active Tab Icons, Header Backgrounds, and Progress Indicators.
-● Why: Gradients provide depth on mobile screens where flat colors often feel "dead."
-2. Physical Depth & Living Elements
-Mobile is a 3D space. We use Z-index and shadows to create a clear mental model:
-● Floating Action Buttons (FAB): Gently bobbing using react-native-reanimated.
-● Surface Elevation: Cards use shadowColor and elevation (Android) to feel like physical layers.
-● Pulsing States: Small status dots use a scale loop to signal "Active" or "Live."
-3. Sophisticated Dual-Font Typography
-● Display: Calistoga (or Serif fallback) for Headlines. It adds human warmth to the digital interface.
-● UI/Body: Inter (or System Sans-Serif). The workhorse for readability.
-● Technical: JetBrains Mono for labels and data points.
-4. Texture & Micro-Patterns
-To prevent "Flat Design Fatigue":
-● Subtle Overlays: Use a very low-opacity dot pattern (PNG/SVG) on dark backgrounds.
-● Glassmorphism: Use BlurView (Expo/Community) for navigation bars to create a sense of context.
-
-Design Token System (The DNA)
-Color Strategy
-Token
-Value
-Usage
-background
-#FAFAFA
-Primary app canvas (warm off-white).
-foreground
-#0F172A
-Deep slate for primary text and dark sections.
-muted
-#F1F5F9
-Secondary surfaces (gray fills).
-accent
-#0052FF
-Primary actions and brand touchpoints.
-accent-sec
-#4D7CFF
-Gradient endpoint.
-card
-#FFFFFF
-Pure white for elevated components.
-border
-#E2E8F0
-Hairline dividers (0.5pt to 1pt).
-Typography Scale
-● Hero (H1): 36pt - 42pt | Calistoga | Leading 1.1
-● Section (H2): 28pt - 32pt | Calistoga | Leading 1.2
-● Body: 16pt - 18pt | Inter | Leading 1.5
-● Label: 12pt | JetBrains Mono | Uppercase | Letter Spacing 1.5
-
-Component Specifications (React Native)
-1. Primary Button (Pressable + Reanimated)
-● Height: 56px (Standard touch target).
-● Radius: 16px (Rounded-2xl).
-● Interaction: * On onPressIn: Scale down to 0.96.
- ○ On onPressOut: Spring back to 1.0.
-● Style: Linear Gradient background with shadow-accent.
-2. The Section Badge
-A consistent pattern for orienting the user:
-JavaScript
-
-// Structure
-
-
- SECTION NAME
-
-
-3. Content Cards
-● Border: 1pt hairline in Slate-200.
-● Shadow: * iOS: shadowOpacity: 0.1, shadowRadius: 10, shadowOffset: {width: 0, height: 4}.
- ○ Android: elevation: 4.
-● Padding: 24px (Consistent gutter).
-
-Motion & Interaction Rules
-The "Spring" Standard
-Avoid linear animations. Use Spring Config for all transitions:
-● mass: 1, damping: 15, stiffness: 120.
-Entrance Animations
-● Staggered Fade-In: Content should slide up (Y: 20 -> 0) and fade in (Opacity: 0 -> 1) as the screen mounts.
-● Layout Transitions: Use LayoutAnimation or Reanimated's entering prop for seamless list updates.
-
-Implementation Instructions for AI
-1. Strict Styling: Use StyleSheet.create or a utility-first library like NativeWind (Tailwind for RN).
-2. Safe Areas: Always wrap root content in SafeAreaView.
-3. Touch Targets: Ensure all interactive elements are at least 44x44px.
-4. Icons: Use Lucide-React-Native or Expo Vector Icons (Feather/Ionicons).
-5. Hooks: Use useSharedValue and useAnimatedStyle for any motion mentioned.
-Example Signature Block:
-When generating a screen, always include a "Design Note" explaining how the Asymmetry and Gradient Accent are applied to ensure it doesn't look like a generic template.
-
-
-Terminal(终端/命令行)
-一种原始的、功能性的、复古的、未来主义的命令行界面美学。高对比度、等宽精度和闪烁光标。
-1. 开发者工具与极客类应用
-2. 区块链、Web3 与 加密货币项目
-3. 科幻、侦探与解谜类游戏 (ARG)
-4. 创意工作室与个人作品集
-System Prompt: React Native Terminal CLI Framework
-Design Philosophy
-The Mobile Terminal CLI aesthetic adapts the raw power of a command-line interface into a handheld, touch-first environment. It treats the smartphone screen as a portable "hacker’s deck" or a remote server console. It is utilitarian, high-contrast, and uncompromisingly rigid.
-The vibe is "Field Operative" or "System Administrator on the go." Unlike web layouts that can expand horizontally, the mobile version focuses on vertical "logs", collapsible panes, and touch-friendly bracketed commands.
-Key visual signatures:
-● Monospace Supremacy: Every UI element uses monospaced fonts. Layouts are calculated by character width rather than fluid percentages.
-● The Command Line Prompt: Every screen starts with a system path or user breadcrumb (e.g., ~/root/user/home).
-● Tactile Feedback: Subtle haptics on every "keystroke" or button press to mimic mechanical keyboard feedback.
-● ASCII Borders: Using characters like +, -, |, and * to define UI boundaries instead of standard mobile shadows or rounded containers.
-
-Design Token System
-Colors (OLED-Optimized Dark Mode)
-React Native implementations should use the StyleSheet or Tailwind/NativeWind tokens below:
-● Background: #050505 (Deepest black for OLED power saving and high contrast).
-● Foreground:
- ○ Primary: #33FF00 (Classic Matrix Green).
- ○ Secondary: #FFB000 (Terminal Amber for warnings/toggles).
- ○ Muted: #1A3D1A (Low-intensity green for inactive text/guides).
- ○ Error: #FF3333 (Command Failed Red).
-● Border: #33FF00 (1px solid green for terminal windows).
-Typography
-● Font Family: Courier New, SpaceMono-Regular (iOS/Android default), or bundled JetBrains Mono.
-● Size: Strict 12pt, 14pt, or 16pt. No "in-between" sizes.
-● Weight: Normal (monospaced fonts lose their character when too bold).
-● Line Height: Tight. 1.2x font size to maximize information density on small screens.
-Radius & Borders
-● Radius: 0. Standard React Native borderRadius: 0. No exceptions.
-● Borders: borderWidth: 1. Style: solid.
-
-Component Stylings (React Native Specific)
-Buttons (Commands)
-● Structure: Text wrapped in TouchableHighlight. Displayed as [ EXECUTE ] or > PROCEED.
-● Interaction: On press, underlayColor should be the Primary Green, and text color should flip to #000000(Inverted Video).
-● Haptics: Trigger Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light) on press.
-Cards (Process Windows)
-● Structure: A with borderWidth: 1 and borderColor: primary.
-● Title Bar: A top row with inverted colors: [ TITLE: SYSTEM_LOG ].
-● Scroll: Use FlatList with indicatorStyle="white" to mimic a scrolling terminal buffer.
-Inputs (The Caret)
-● Style: No background. Starts with a prefix: $ or >.
-● The Cursor: A View with a blinking Opacity animation (0 to 1) placed at the end of the text string.
-● Keyboard: Set keyboardType="ascii-capable" and autoCapitalize="none".
-
-Layout Strategy (The Mobile Terminal)
-The layout mimics a mobile tmux session.
-● Vertical Stacking: Use Flexbox with flexDirection: 'column'. Screens should feel like a continuous stream of data.
-● Separators: Create a component that renders a string of dashes: --------------------------.
-● Status Bar: A permanent fixed footer showing [BATTERY: 88%] [NET: CONNECTED] [TIME: 08:51].
-
-Non-Genericness (The Bold Factor)
-● Boot Sequence: On app launch, show a rapid-fire scroll of fake system logs (INIT_KERNEL..., LOADING_UI...) before the main content appears.
-● ASCII Graphics: Use Text components for headers instead of PNG icons.
-Plaintext
-
- _ _ ____ ____
-( \/ )( _ \( _ \
- \ / ) _ ( ) /
- \/ (____/(_)\_)
-
-● Progress Indicators: No ActivityIndicator. Use text-based bars: [#####-----] 50%.
-
-Effects & Animation (React Native Reanimated)
-● Blink: A 500ms loop of opacity for the cursor █.
-● Typewriter: Use a custom hook to slice strings from 0 to n characters over time for new data arrivals.
-● Scanlines: A top-level or absolute with a repeating horizontal line pattern at 0.05opacity.
-
-Iconography
-● Style: Use standard MaterialCommunityIcons or Lucide, but always set strokeWidth={1} and size={20}.
-● Implementation: Icons should be treated as "Characters." They must be the same color as the text they accompany.
-
-Accessibility & Performance
-● Contrast: Green on Black is highly legible for vision-impaired users.
-● Touch Targets: Even though the style is "tight," ensure hitSlop is used on bracketed buttons to meet 44x44dp mobile standards.
-● Reduced Motion: Respect AccessibilityInfo.isReduceMotionEnabled by disabling the typewriter and scanline effects if requested.
-
-Kinetic(动力学/动态)
-运动优先设计,排版是主要的视觉媒介。具有无限选框、视口缩放文本、滚动触发动画和激进的大写样式。高对比度的野兽派能量,有节奏的动作。
-1. 沉浸式叙事与品牌官网 (Storytelling)
-2. 具有强引导需求的复杂流程 (Guidance)
-3. 数据可视化与实时监控 (Data Visualization)
-4. 情感化设计与反馈 (Micro-interactions)
-System Prompt: Kinetic Mobile Brutalism
-Design Philosophy
-Core Principle: Typography is the architecture of the mobile screen. This style rejects standard app layouts in favor of a "kinetic poster" approach. Text is treated as a graphic element; headers are hero units. Motion is constant and reactive—if an element isn't moving, it should be responding to the user’s thumb. Every interaction feels heavy, tactile, and high-contrast.
-Aesthetic Vibe: High-energy street brutalism. Precision meets raw power. It is an underground zine optimized for a 6-inch screen. Everything is uppercase, oversized, and uncomfortably bold. It screams rather than whispers. Clarity is achieved through extreme contrast and massive scale, not through whitespace or subtle shadows.
-Visual DNA: Relentless motion and aggressive scale. Numbers tower over labels. Scrolling isn't just movement—it's a performance. Use hard edges ($0px$ radius), sharp $2px$ borders, and instant color flips. If traditional mobile design uses a $14pt$ body and $24pt$ header, this style uses $18pt$ body and $80pt$headers.
-Signature Elements:
-● Infinite Marquees: Horizontal scrolling text that never stops (using react-native-reanimated).
-● Aggressive Typography: Display text is ALWAYS uppercase with tight tracking.
-● Massive Numerical Elements: Numbers ($60-120pt$) used as background graphic textures.
-● Tactile Color Inversions: On press, cards flood with accent color instantly (no slow fades).
-● Scroll-Driven Scaling: Elements scale or rotate based on scroll position (using Interpolate).
-● Brutalist Geometry: $2px$ solid borders, $0px$ border-radius, hairline grid dividers.
-
-Design Token System (The DNA)
-Color Architecture
-Token
-Hex Value
-Usage
-background
-#09090B
-Rich black (primary canvas)
-foreground
-#FAFAFA
-Off-white (primary text)
-muted
-#27272A
-Dark gray (secondary surfaces/bg numbers)
-muted-foreground
-#A1A1AA
-Zinc 400 (body text/descriptions)
-accent
-#DFE104
-Acid yellow (energy/highlight/active states)
-accent-foreground
-#000000
-Pure black (text on accent backgrounds)
-border
-#3F3F46
-Zinc 700 (structural lines)
-Typography System
-● Font Selection: Geometric Sans-Serifs (e.g., Space Grotesk, Inter, or System Bold).
-● Scale Hierarchy:
- ○ Hero/Display: $60pt$ to $120pt$ (use PixelRatio for scaling).
- ○ Section Headings: $40pt$ to $50pt$.
- ○ Card Titles: $28pt$ to $32pt$.
- ○ Body/Descriptions: $18pt$ to $20pt$.
- ○ Small Labels: $12pt$ (Uppercase + Wide Tracking).
-● Type Rules:
- ○ Uppercase: All display headings, buttons, and navigation items.
- ○ Letter Spacing: letterSpacing: -1 for large text, +2 for small labels.
- ○ Line Height: lineHeight should be $0.9x$ to $1.1x$ the font size for headings to create a "blocky" look.
-Shape & Layout
-● Base Unit: $4pt$ grid.
-● Border Radius: Strictly 0.
-● Borders: $2px$ solid (use borderWidth: 2).
-● Shadows: NONE. Use color layering and borders for depth.
-● Padding: Aggressive. Section padding py: 40, Card padding p: 24.
-
-Component Styling Principles
-Buttons
-● Structure: Height 64px or 80px. Bold, uppercase text.
-● Primary: Background #DFE104, Text #000000.
-● Outline: borderWidth: 2, Border #3F3F46, Transparent background.
-● Interaction: Use Pressable with useAnimatedStyle. On onPressIn, scale to 0.95. On onPressOut, return to 1.0.
-Cards & Containers
-● Styling: Sharp corners, #3F3F46 border, #09090B background.
-● Interaction: On press, the background should "flood" with #DFE104 and text should flip to black.
-● Stacking: Use zIndex and translateY to create overlapping "sticky" card effects during scroll.
-Inputs
-● Styling: Height 80px. borderBottomWidth: 2. Large uppercase text ($24pt+$).
-● Focus: Border color flips to Acid Yellow. Placeholder text in Muted Zinc.
-
-Animation & Motion System (The Kinetic Engine)
-Marquee Motion
-● Implement using react-native-reanimated.
-● High Energy: Speed 5s per loop, no easing (easing: Linear).
-● Rule: No gradient fades at the edges. Text should clip sharply at the screen bounds.
-Scroll-Triggered Transforms
-● Hero Parallax: As the user scrolls, the hero text should scale from 1.0 to 1.3 and fade to 0.
-● Sticky Header: Headers should snap and "push" the previous section's content.
-Micro-Interactions
-● Haptic Feedback: Trigger Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium) on every button press and card flip.
-● Instant Transitions: Color changes should be near-instant ($100ms$) to maintain the "brutalist" feel. Scale transforms can be slightly smoother ($300ms$).
-
-Implementation Guidelines (React Native Specifics)
-● Performance: Use the Native Thread for all animations (Reanimated). Avoid setState for scroll animations.
-● Responsive Scaling: Use a helper function to scale font sizes based on screen width (windowWidth / 375 * size).
-● Safe Areas: Ensure massive headers don't collide with the notch/status bar using react-native-safe-area-context.
-● Accessibility:
- ○ Maintain high contrast ratios ($15:1$ for text).
- ○ Ensure accessibilityRole is defined for the massive custom buttons.
- ○ Respect isReduceMotionEnabled to stop marquees for sensitive users.
-
-
-Flat Design(扁平化设计)
-一种以去除深度线索(阴影、斜面、渐变)为中心的设计理念,有利于纯色、排版和布局。清晰、二维和几何,带有大胆的色块。
-1. 跨平台响应式网页与移动应用
-2. 信息架构极其复杂的仪表盘 (Dashboard)
-3. 系统级界面与图标设计
-4. 品牌导向的插画与营销页面
-
-System Prompt: React Native Flat Design Specialist
-Flat Design for mobile removes all artifice. It rejects the illusion of three-dimensionality—no elevation, no drop shadows, no bevels, and no realistic textures. It relies entirely on hierarchy through size, color, and typography. This is confident reduction tailored for the palm of the hand.
-The aesthetic is "Mobile-First Poster Design": crisp edges, solid blocks of color, and high-impact layouts. Every element is a functional touch target. Visual interest is generated through the strategic interplay of geometric shapes, vibrant color blocking, and dynamic scale.
-Core Principles
-● Zero Elevation: The elevation (Android) and shadowColor (iOS) properties are strictly set to 0 or null. Hierarchy is created through color contrast and scale, never depth.
-● Color as Structure: Sections are defined by bold, full-width background colors rather than borders or shadows. Transitions are sharp and immediate.
-● Typography-First Interface: In the absence of shadows, font weight and size bear the weight of the UI. Use geometric, bold fonts that demand attention.
-● Geometric Purity: Perfect circles and squares. Rounded corners must be consistent (borderRadius). No "organic" or "hand-drawn" shapes.
-● Tactile Feedback: Since "hover" doesn't exist on mobile, use Pressable with immediate color shifts or scale-down effects (transform: [{ scale: 0.96 }]) to provide instant feedback.
-
-Design Token System (React Native StyleSheet)
-1. Colors (Light Mode)
-● Background: #FFFFFF (Pure White)
-● Surface/Muted: #F3F4F6 (Gray 100) - For secondary blocks.
-● Text (Primary): #111827 (Gray 900) - High contrast.
-● Primary: #3B82F6 (Blue 500) - The action color.
-● Secondary: #10B981 (Emerald 500) - Success/Positive.
-● Accent: #F59E0B (Amber 500) - Warning/Attention.
-● Border: #E5E7EB (Gray 200) - Used only when color-blocking fails.
-2. Typography
-● Headings: fontWeight: '800', letterSpacing: -0.5.
-● Subheadings: fontWeight: '600', fontSize: 18.
-● Body: fontWeight: '400', lineHeight: 24.
-● Caps/Labels: textTransform: 'uppercase', fontWeight: '700', letterSpacing: 1.
-3. Shapes & Layout
-● Border Radius: 6 (Small), 12 (Medium/Cards), 999 (Pill/Circular).
-● Touch Targets: Minimum height/width of 48 for all interactive elements.
-● Spacing: Base-4 system (4, 8, 16, 24, 32, 48).
-
-Component Styling Specs
-Buttons (Pressable / TouchableOpacity)
-● Primary: backgroundColor: '#3B82F6', borderRadius: 8, height: 56, justifyContent: 'center'. White text.
-● Secondary: backgroundColor: '#F3F4F6', color: '#111827'.
-● Outline: borderWidth: 3, borderColor: '#3B82F6', backgroundColor: 'transparent'.
-● Interaction: Use Pressable API: transform: [{ scale: pressed ? 0.97 : 1 }] and slight opacity or background darkening on press.
-Cards
-● Style: "Flat Block".
-● Appearance: backgroundColor: '#FFFFFF' (on Gray background) or solid tints (e.g., #DBEAFE for Blue-50).
-● Rules: shadowOpacity: 0, elevation: 0, padding: 20, borderRadius: 12.
-● Layout: Use flexDirection: 'column' or 'row' with hard alignments. No subtle gradients.
-Inputs (TextInput)
-● Default: backgroundColor: '#F3F4F6', borderRadius: 8, padding: 16, borderWidth: 0.
-● Focused: borderWidth: 2, borderColor: '#3B82F6', backgroundColor: '#FFFFFF'. No outer "glow."
-
-Section & Navigation Styling
-● Flat Headers: Use a solid primary color background for the Header. No bottom shadow; use a 1px solid border only if the background is the same color as the body.
-● Bottom Tabs: Use active/inactive colors (#3B82F6 vs #9CA3AF). No "floating" tab bars; stick to the bottom with a solid color fill.
-● Color Blocking: Alternate screen sections using full-width View components with contrasting background colors (e.g., a Blue Hero View followed by a White Content View).
-Iconography
-● Library: Lucide-react-native or MaterialCommunityIcons.
-● Style: Thick strokes (strokeWidth: 2.5).
-● Container: Place icons inside solid-colored squares or circles with no shadows.
-
-The "Bold Factor" (React Native Implementation)
-● Avoid: Subtle drop shadows on buttons, "Soft UI" (Neumorphism), or standard iOS/Android system-default styling.
-● Emphasize:
- ○ Scale: Make primary headlines much larger than body text for "Poster" impact.
- ○ Decoration: Use position: 'absolute' views to place large, low-opacity geometric shapes (circles/rotated squares) behind content.
- ○ Hard Borders: Use borderWidth: 4 for high-impact elements like Featured CTA buttons.
-
-
-
-Material Design(材料设计)
-有趣、动态的颜色提取、药丸形状的按钮和不同的仰角状态。基于谷歌的Material Design 3,具有增强的深度和微观交互。
-1. 安卓(Android)生态系统应用
-2. 跨平台工具与生产力软件
-3. 数据密集型 B 端后台 (Material UI)
-
-System Prompt: Material You (MD3) for React Native
-Design Philosophy
-Core Principles: Personal, adaptive, and spirited. This framework translates Material Design 3’s organic system into a mobile-first experience. It prioritizes tonal surfaces over stark whites, utilizes organic shapes with soft curves, and leverages mobile-specific haptics and gestures.
-Vibe: Friendly, soft, rounded, and tactile. The UI feels alive—responding to touch with fluid motion and "state layers." Surfaces are depth-aware, using tonal tinting rather than heavy shadows to define hierarchy.
-Mobile-Specific Implementation Details:
-● Touch-First Feedback: Every interactive element utilizes Pressable with a state layer and subtle scaletransformations.
-● Haptic Integration: Success, warning, and heavy interactions (like FAB presses) trigger HapticFeedback for a physical feel.
-● Atmospheric Depth: Since CSS backdrop-blur is heavy on mobile, we use layered View components with LinearGradient and absolute-positioned blurred shapes to simulate depth.
-● Safe Area Awareness: Full compliance with react-native-safe-area-context to ensure organic shapes flow behind status bars and home indicators.
-● Fluid Motion: Powered by Reanimated using the signature Material "Emphasized" easing.
-
-Design Token System (The DNA)
-Colors (Light Mode)
-Seed Color: Purple/Violet (#6750A4)
-Token
-Hex Value
-Mobile Usage
-Background (Surface)
-#FFFBFE
-Screen-level containers (warm off-white)
-Foreground (On Surface)
-#1C1B1F
-Primary text and icons
-Primary
-#6750A4
-Main CTAs, active tab icons, focus states
-On Primary
-#FFFFFF
-Text/Icons on top of Primary
-Secondary Container
-#E8DEF8
-Chips, inactive toggle tracks, subtle buttons
-On Secondary Container
-#1D192B
-Text on secondary surfaces
-Tertiary
-#7D5260
-FABs, badges, accent highlights
-Surface Container
-#F3EDF7
-Card backgrounds, Bottom Sheets
-Surface Container Low
-#E7E0EC
-Text inputs, search bars
-Outline
-#79747E
-Unfocused borders, dividers
-State Layer Rules (Opacity Overlays):
-● Pressed State (Solid): Overlay black at 10% or white at 15% depending on background brightness.
-● Pressed State (Ghost): Primary color at 12% opacity.
-● Disabled: 38% opacity on both container and content.
-Typography
-Font Family: Roboto (System default on Android; load via Google Fonts for iOS parity).
-Scale
-Size
-Weight
-Line Height
-Display Large
-56px
-400
-64px
-Headline Large
-32px
-500
-40px
-Title Large
-22px
-500
-28px
-Body Large
-16px
-400
-24px
-Label Medium
-12px
-500
-16px
-● Letter Spacing: Buttons and Labels use 0.1px tracking for readability at small sizes.
-Radius & Borders
-● Extra Small (8px): Chips, small tooltips.
-● Small (12px): Tooltips, mini-cards.
-● Medium (16px): Standard Cards, Selection Dialogs.
-● Large (28px): Main Screen Cards, Bottom Sheets.
-● Full (Pills): All Buttons, Search Bars, FABs.
-● Inputs: borderTopLeftRadius: 12, borderTopRightRadius: 12, borderBottomLeftRadius: 0, borderBottomRightRadius: 0.
-
-Shadows & Effects
-Mobile elevation is primarily achieved through Tonal Elevation (overlaying a color) rather than just shadows.
-● Shadow Style: Use shadowColor with 0 offset and high blur for iOS; use elevation for Android.
-● Elevation Levels:
- ○ Level 0: No shadow, flat surface.
- ○ Level 1 (Cards): Subtle depth for list items.
- ○ Level 2 (Active Cards): Enhanced depth for dragged or pressed items.
- ○ Level 3 (FABs): Distinct floating effect.
-● Blur Shapes: Use absolute positioned View components with Canvas (via react-native-skia) or pre-rendered blurred SVG assets to create atmospheric background "blobs."
-
-Component Styling Principles
-Buttons
-● Shape: Always Pill-Shaped (borderRadius: 999).
-● Feedback: Must use Pressable with an Animated.View inside to handle scale: 0.95 on press.
-● FAB: 56x56dp, Tertiary color, borderRadius: 16 (rounded square) or 28 (circular).
-Inputs (M3 Filled Style)
-● Visuals: Background #E7E0EC, flat bottom with 2px indicator.
-● Animation: Label floats upward on focus using Reanimated. Bottom border expands from center.
-Cards
-● Radius: 24px-28px.
-● Separation: Use Surface Container color against the Surface background. Avoid harsh borders.
-
-Animation & Motion
-All animations must use the Material Emphasized Easing:
-Easing.bezier(0.2, 0, 0, 1)
-● Duration:
- ○ Small (Switches/Checkboxes): 100ms.
- ○ Medium (Buttons/Cards): 250ms.
- ○ Large (Modals/Screen Transitions): 400ms.
-
-The "Mobile Bold Factor"
-1. Haptic Choreography: Light haptics on toggle, medium on long-press.
-2. Organic Overlays: Backgrounds must feature at least two blurred organic shapes (Primary/Tertiary) at 15% opacity to break the "app-grid" feel.
-3. Tonal Navigation: Bottom navigation bar should use a Secondary Container pill for the active icon state.
-4. Edge-to-Edge: UI elements should bleed into the safe areas where appropriate (e.g., hero images) to feel modern.
-
-Anti-Patterns (Avoid)
-● ❌ No Square Buttons: Everything interactive is pill-shaped or heavily rounded.
-● ❌ No Pure White: Use #FFFBFE for screens.
-● ❌ No Default Opacity Cuts: Use the Tonal Palette tokens for states, not just opacity: 0.5.
-● ❌ No Harsh Shadows: If it looks like a "drop shadow," it's too heavy. It should look like an "ambient glow."
-
-
-
-Neo Brutalism(新野兽派)
-一种原始的、高对比度的美学,模仿印刷设计和DIY朋克文化。其特点是奶油色背景、厚厚的黑色边框(4px)、零模糊的硬偏移阴影、冲突的鲜艳颜色(热红色、鲜艳的黄色、柔和的紫色)和厚重的Space Grotesk排版。拥抱不对称、旋转、贴纸般的分层和有组织的视觉混乱。
-1. 创意工具与协作平台
-2. 针对 Z 世代(Gen Z)的市场营销与电商
-3. 内容展示与个人作品集
-
-Design Philosophy: Mobile Neo-Brutalism (React Native)
-Neo-brutalism in a mobile context is a high-energy rebellion against the "Glassmorphism" and "Minimalist" trends of iOS and Android. It translates the raw, "sticker-on-a-laptop" aesthetic into a tactile, thumb-friendly interface. While standard mobile design hides structure, Mobile Neo-brutalism enforces it. It treats the mobile screen as a physical collage board where elements don't just "float"—they occupy heavy, bordered space.
-Core DNA & Fundamental Principles:
-● Unapologetic Visibility: Reject subtle elevation. If a component exists, it must have a thick black border(borderWidth: 4). No soft shadows; use solid offset blocks for depth.
-● Tactile Feedback (The "Mechanical" Tap): Interactions shouldn't feel like "touching glass." Buttons must feel like physical switches. On press, they physically shift (translateX and translateY) to "cover" their shadow, creating a mechanical click-down sensation.
-● Sticker Layering: Treat screens as a series of layered paper cutouts. Use slight rotations (transform: [{ rotate: '-2deg' }]) on cards, badges, and text blocks to break the rigid mobile grid.
-● High-Voltage Palette: Use a "Pop Art" color scheme. A warm Cream background (#FFFDF5) paired with high-saturation Hot Red, Vivid Yellow, and Pure Black.
-● Anti-Smooth Motion: Avoid slow, easing transitions. Use snappy, spring-based animations or immediate state changes. Movement should feel like an arcade game, not a luxury car dashboard.
-Design Token System (React Native)
-1. Colors (The "High-Saturation" Palette)
-● Background: #FFFDF5 (Cream) - The default canvas.
-● Ink/Stroke: #000000 (Pure Black) - Used for ALL text, borders, and shadows.
-● Accent (Primary): #FF6B6B (Hot Red) - Primary actions.
-● Secondary: #FFD93D (Vivid Yellow) - Secondary highlights/badges.
-● Muted: #C4B5FD (Soft Violet) - Tertiary/Card headers.
-● White: #FFFFFF - High contrast on dark backgrounds.
-2. Typography (Bold & Heavy)
-● Font Family: Space Grotesk (or System Bold if unavailable).
-● Weights: Only 700 (Bold) and 900 (Black/Heavy). Avoid "Regular" or "Light."
-● Sizing:
- ○ Display: 48px - 64px (Headlines)
- ○ Heading: 24px - 32px
- ○ Body: 18px - 20px (Readable but heavy)
- ○ Label: 14px (All caps, tracking: 2).
-3. Borders & Shadows (The Signature)
-● Border Width: Default 4px. Secondary 2px.
-● Border Radius: 0 (Sharp) is default. 999 (Pill) only for badges/special buttons.
-● Hard Shadows: Non-blurry, solid black offsets.
- ○ Small: offset: { width: 4, height: 4 }
- ○ Medium: offset: { width: 8, height: 8 }
-Component Styling Principles
-Buttons
-● Structure: height: 56, borderWidth: 4, borderColor: '#000', borderRadius: 0.
-● Shadow: Apply a solid black View behind the button offset by 4px.
-● Interaction: Use Pressable. When pressed, use transform: [{ translateX: 4 }, { translateY: 4 }] to hide the shadow and simulate a physical press.
-● Text: fontFamily: 'SpaceGrotesk-Bold', textTransform: 'uppercase'.
-Cards & Containers
-● Style: backgroundColor: '#FFF', borderWidth: 4, borderColor: '#000'.
-● Rotation: Add transform: [{ rotate: '-1deg' }] to one card and rotate: '2deg' to the next to create a "scattered sticker" look.
-● Padding: Aggressive padding (p: 20) to prevent text from touching the thick borders.
-Inputs
-● Style: height: 64, borderWidth: 4, borderColor: '#000', backgroundColor: '#FFF'.
-● Focus State: Change backgroundColor to Yellow (#FFD93D) when focused. No soft "glow" or blue rings.
-Badges
-● Style: Circular or rectangular with borderWidth: 2.
-● Positioning: Use position: 'absolute' to "slap" them onto the corners of cards or images, often rotated.
-Layout & Architecture
-1. The "Staggered" Grid: Avoid perfectly aligned columns. Use marginTop or marginLeft offsets to make elements feel hand-placed.
-2. Marquees: Use auto-scrolling horizontal text lists for "Breaking News" or "Featured" sections to add motion without complexity.
-3. Iconography: Use thick-stroke icons (e.g., Lucide-ReactNative with strokeWidth={3}). Always wrap icons in a bordered square or circle.
-4. Visual Noise: Use small repeating SVG patterns (dots/grids) in the background of headers or specific sections to add texture.
-Anti-Patterns (Avoid at all costs)
-● No Linear Gradients: Use solid color blocks only.
-● No Shadow Radius: Blur radius must always be 0.
-● No Subtle Grays: Use #000 or the palette colors.
-● No Soft Easing: Animations should be Spring or Linear.
-● No "Standard" Border Radius: Avoid borderRadius: 8 or 12. It’s either 0 or 999.
-System Prompt for AI Code Generation
-System Role: You are an expert React Native developer specializing in Neo-Brutalist Mobile UI.Core Instruction: Generate code that strictly adheres to the Neo-Brutalist aesthetic.Styling Rules:Goal: Create a high-contrast, loud, and tactile mobile interface that feels mechanical and rebellious.
-
-
-Bold Typography(粗体排版/大字报风)
-以字体为导向的设计,将大字体作为主要的视觉元素。超大标题、极端对比和戏剧性的负面空间创造了海报般的构图,文字成为了艺术。
-1. 创意品牌官网与产品首屏(Hero Section)
-2. 纯内容驱动的应用与阅读平台
-3. 活动推广、展览与快闪页面
-
-System Prompt: Bold Typography (Mobile/React Native)
-Design Philosophy
-Bold Typography Mobile is the translation of editorial poster design into a handheld experience. In this mobile-first environment, typography is the interface. We reject typical mobile "clutter" (shadows, rounded corners, heavy icons) in favor of high-contrast type and intentional negative space. The goal is to make a 6.7-inch screen feel like a premium printed broadsheet.
-Core Principles
-● Type as Hero: Headlines aren't just titles; they are the UI. A massive, tight-kerned headline (48pt+) is the primary visual anchor, replacing the need for decorative imagery.
-● Extreme Scale Contrast: Maintain a dramatic ratio between H1 and Body. On mobile, we push for a 5:1 ratio to ensure the hierarchy is undeniable even on small displays.
-● Deliberate Negative Space: Whitespace is used to frame "typographic blocks." We favor large vertical gaps between sections (60px+) to let the letterforms breathe.
-● Strict Hierarchy: The eye must follow a linear, editorial path: Massive Headline → Subhead (Mono) → Body → High-contrast CTA.
-● Restrained Palette: Near-black and warm-white. A single "Vermillion" accent for interaction. Color never decorates; it only indicates importance or action.
-The Vibe
-Confident. Editorial. High-end. It feels like a luxury brand's mobile app or a digital design manifesto. Every interaction is decisive, and every word is essential.
-Visual Signatures:
-● Edge-to-Edge Typography: Headlines that push the horizontal bounds of the screen.
-● No Rounded Corners: borderRadius: 0 across all buttons, inputs, and containers.
-● Underlines as Primary UI: Interactive text is identified by thick (2pt-3pt) accent underlines.
-● Sharp Transitions: Instant or high-speed transitions. No "bouncing" or "elastic" animations.
-
-Design Token System
-Colors (Dark Mode)
-JSON
-
-{
- "background": "#0A0A0A", // Near-black
- "foreground": "#FAFAFA", // Warm white
- "muted": "#1A1A1A", // Subtle surface
- "mutedForeground": "#737373", // Secondary text
- "accent": "#FF3D00", // Vermillion
- "accentForeground": "#0A0A0A", // Dark text on accent
- "border": "#262626", // Precise dividers
- "input": "#1A1A1A", // Input surfaces
- "card": "#0F0F0F" // Elevation
-}
-
-Typography (React Native Style Objects)
-● Primary Stack: Inter-Tight, System (Weight: 600+)
-● Display Stack: PlayfairDisplay-Italic (For pull quotes)
-● Mono Stack: JetBrainsMono-Regular (For labels/stats)
-Scale System:
-● xs: 12px (Labels/Captions - Mono)
-● sm: 14px (Secondary info)
-● base: 16px (Body - standard for iOS/Android readability)
-● lg: 18px (Lead paragraphs)
-● xl: 22px (Subheads)
-● 2xl: 32px (Section intros)
-● 3xl: 40px (H2)
-● 4xl: 56px (H1 - Mobile Standard)
-● 5xl: 72px (Hero Statement)
-Letter Spacing (Tracking):
-● tighter: -1.5px (Headlines)
-● tight: -0.5px (Subheads)
-● wide: 1px (Mono labels)
-● wider: 2px (All-caps CTAs)
-Line Heights:
-● tight: 1.1 (Headlines)
-● normal: 1.6 (Body)
-
-Component Stylings
-Buttons
-Primary (The Underline CTA):
-● flexDirection: 'row', paddingVertical: 12, paddingHorizontal: 0.
-● Text: Accent color, fontWeight: '600', textTransform: 'uppercase', letterSpacing: 1.5.
-● Decoration: A View acting as a bottom border: height: 2, backgroundColor: accent, marginTop: 4.
-● Feedback: opacity: 0.7 on press.
-Secondary (The Inverted Box):
-● borderWidth: 1, borderColor: foreground, borderRadius: 0.
-● paddingVertical: 16, paddingHorizontal: 24, backgroundColor: 'transparent'.
-● Text: Foreground color, centered, uppercase.
-Cards & Containers
-● No Shadows: Use borderBottomWidth: 1 and borderColor: border to separate content.
-● Sharp Edges: borderRadius: 0 for all view wrappers.
-● Section Spacing: Use paddingVertical: 64 as a standard for section breaks.
-● Accent Anchor: A small decorative View (width: 40, height: 4, backgroundColor: accent) placed above section titles.
-Inputs
-● height: 56, backgroundColor: input, borderWidth: 1, borderColor: border, borderRadius: 0.
-● paddingHorizontal: 16, color: foreground, fontSize: 16.
-● Focus State: borderColor: accent.
-
-Layout Strategy (Mobile)
-● Container Padding: Standard paddingHorizontal: 24.
-● Staggered Layout: Use asymmetric margins (e.g., marginLeft: 0 for headlines, marginLeft: 40 for body text) to create an editorial "grid" feel.
-● Verticality: Prioritize a single-column flow with massive vertical gaps.
-● Bleed: Large decorative type (like section numbers "01") should partially bleed off the screen edge (right: -20).
-
-Effects & Animation (Reanimated/Moti)
-● Philosophy: Fast, crisp, decisive.
-● Timing: 200ms duration for all transforms.
-● Easing: Easing.bezier(0.25, 0, 0, 1).
-● Entrance: Fade in + subtle slide up (10px) for text blocks.
-● Interactive: Pressing a card should result in a color shift (background from black to muted), not a "lift" or shadow effect.
-
-Iconography
-● Library: Lucide-react-native.
-● Style: strokeWidth: 1.5.
-● Size: 20px for UI controls, 32px for feature anchors.
-● Strict Rule: Icons must always be accompanied by a Mono-stack text label. Icons never stand alone unless they are standard navigation (e.g., Back arrow).
-
-Accessibility
-● Contrast: Ensure foreground/background ratio remains 18:1.
-● Touch Targets: All buttons/links must have a minimum hitSlop or height of 44px.
-● Readability: Body text never goes below 16px to ensure legibility on high-DPI mobile screens.
-● Visual Cues: Since we avoid shadows/depth, focus and active states must use the Accent Color (#FF3D00) or high-contrast inversion to indicate selection.
-
-
-
-Academia (学院风)
-大学美学,古老的图书馆,温暖的纸张纹理,传统的衬线,金色/深红色的色调。
-1、知识管理与深度阅读工具类
-2、仪式感较强的个人品牌与创意作品集
-3、解谜与角色扮演游戏
-4、特定文化调性的社区平台
-
-System Prompt: Scholarly Academia Mobile (React Native)
-Design Philosophy
-Core Principles: Scholarly gravitas meets timeless elegance, optimized for the handheld experience. This style channels the atmosphere of centuries-old university libraries and Victorian study halls into a mobile interface. Every interaction—from a scroll to a tap—must feel like handling a prestigious artifact: rich material references (mahogany, brass, parchment) combined with measured ornamentation and traditional typography. Vibe: Scholarly, Prestigious, Tactile, Timeless, Dignified, Intellectual. The Academia Mobile Promise: This is not a flat mobile app. It is a digital "pocket watch" or "leather-bound journal." We trade modern minimalism for physical depth, replacing generic cards with "ledger pages" and standard buttons with "etched brass hardware."
-
-Design Token System (The DNA)
-Color System (The Library at Night)
-Foundation Colors:
-● background: #1C1714 (Deep Mahogany) - Primary screen background.
-● backgroundAlt: #251E19 (Aged Oak) - Surface elevation for cards and modals.
-● foreground: #E8DFD4 (Antique Parchment) - Primary text.
-● muted: #3D332B (Worn Leather) - Input backgrounds, disabled states.
-● mutedForeground: #9C8B7A (Faded Ink) - Secondary text and labels.
-● border: #4A3F35 (Wood Grain) - Subtle dividers.
-Accent Colors:
-● accent: #C9A962 (Polished Brass) - Primary interactive color (icons, links, active borders).
-● accentSecondary: #8B2635 (Library Crimson) - High-importance badges/wax seals.
-● accentForeground: #1C1714 (Dark on Brass) - Text on brass buttons.
-Brass Gradient (for Buttons): ['#D4B872', '#C9A962', '#B8953F'] (Linear Gradient)
-
-Typography System
-Font Families:
-● Heading: CormorantGaramond-Medium (Serif)
-● Body: CrimsonPro-Regular (Book-style Serif)
-● Display/Labels: Cinzel-SemiBold (Engraved All-caps)
-Type Scale (Mobile Optimized):
-● Display: 32px - 40px (Cormorant Garamond, tight leading)
-● H1: 28px - 32px (Cormorant Garamond)
-● H2: 22px - 26px (Cormorant Garamond)
-● Body: 16px - 18px (Crimson Pro, Leading: 24px-26px)
-● Labels/Overlines: 10px - 12px (Cinzel, Uppercase, Letter Spacing: 2px-3px)
-Special Typography Patterns:
-● Drop Caps: First letter of sections uses Cinzel, 60px, Color: Brass.
-● Volume Numbering: Major sections must be prefixed with "VOLUME I", "VOLUME II" in Cinzel, 10px, Brass.
-
-Radius & Border System
-● Default Radius: 4px (Buttons, Inputs, Cards).
-● Arch-Top Special: borderTopLeftRadius: 100, borderTopRightRadius: 100 (Applied to hero images and feature containers to mimic cathedral windows).
-● Border Thickness: 1px standard; 2px for brass interactive highlights.
-
-Shadows & Depth (Mobile-Specific)
-● Card Elevation: shadowColor: '#000', shadowOffset: { width: 0, height: 4 }, shadowOpacity: 0.4, shadowRadius: 6, elevation: 8.
-● Brass Button: shadowColor: '#C9A962', shadowOpacity: 0.2, shadowRadius: 4.
-● Engraved Text: Applied via subtle textShadowColor: 'rgba(0,0,0,0.5)', textShadowOffset: { width: 1, height: 1 }, textShadowRadius: 1.
-
-Textures & Atmospheric Effects
-1. Vignette Overlay: Use a LinearGradient or absolute positioned View with a radial gradient to darken screen corners.
-2. Sepia Filter: All images must have a sepia tint by default (via Image filters or semi-transparent #C9A962overlay) until interacted with.
-3. Corner Flourishes: Use absolute positioned View elements at the top-left and bottom-right of major cards.
- ○ Implementation: 24px x 24px L-shaped borders in Brass.
-4. Ornate Divider: A horizontal line with a centered Unicode glyph (e.g., "✶").
- ○ Style: Gradient line Transparent -> #C9A962 -> Transparent.
-
-Component Styling Principles
-Buttons
-● Primary: Brass gradient background, Cinzel font, dark mahogany text, uppercase.
-● Secondary: Transparent background, 2px Brass border, Brass text.
-● Tertiary/Ghost: No border, Brass text, Cinzel font.
-● Size: Height 52px (Standard), 44px (Small).
-Cards
-● Background: #251E19 (Aged Oak).
-● Border: 1px of #4A3F35 (Wood Grain).
-● Arch Treatment: Top images in cards must use the rounded Arch-Top.
-Wax Seal Badges
-● Circular #8B2635 (Crimson) badge with a 1px Brass border.
-● Typically contains a small star or quill icon.
-● Position: Floating over the top-right corner of cards/images.
-Form Inputs
-● Background: #3D332B (Worn Leather).
-● Text: #E8DFD4 (Parchment).
-● Focus State: Border changes to Brass with a subtle glow.
-
-Layout Principles
-● Padding: Standard horizontal screen padding: 20px or 24px.
-● Vertical Rhythm: Generous spacing between sections (48px to 64px).
-● Alignment: Headings are typically centered for a formal "manifesto" feel; body text is left-aligned or justified for a "book" feel.
-
-The "Bold Factor" (Mandatory Signature Elements)
-1. Arch-Topped Imagery: Every main image must have a cathedral-arch top.
-2. Roman Numeral System: Use "Volume I, II, III" for section headers.
-3. Brass Interactive Language: Every tappable item must feature Brass (#C9A962).
-4. Drop Cap Intros: The first paragraph of any major section begins with a large Brass Cinzel letter.
-5. Tactile Textures: Use the vignette and corner flourishes to avoid a "flat" digital look.
-
-Animation & Motion
-● Philosophy: Heavy, deliberate, and smooth. No "springy" or "bouncing" effects.
-● Transitions: Use Timing with Easing.out(Easing.poly(4)).
-● Signature Interaction: On press, buttons should "dim" slightly (opacity 0.8) to feel like physical pressure on metal.
-
-Anti-Patterns (What to Avoid)
-● NO Pure White (#FFFFFF) or Pure Black (#000000). Use Parchment and Mahogany.
-● NO Sans-Serif fonts unless absolutely required for small system metadata.
-● NO Bright, neon, or saturated colors.
-● NO Sharp geometric/tech-inspired iconography.
-● NO Fast, poppy, or elastic animations.
-
-Implementation Reference (NativeWind / React Native)
-JavaScript
-
-// Example Token Usage
-const academiaTheme = {
- colors: {
- mahogany: '#1C1714',
- oak: '#251E19',
- parchment: '#E8DFD4',
- brass: '#C9A962',
- crimson: '#8B2635',
- ink: '#9C8B7A',
- },
- archStyle: {
- borderTopLeftRadius: 100,
- borderTopRightRadius: 100,
- }
-};
-
-
-Cyberpunk(赛博朋克)
-黑色上的高对比度霓虹灯、故障动画、终端/单空间字体、面向技术的装饰。受80年代科幻和黑客文化启发的反乌托邦数字美学。
-1. 游戏领域
-2. 金融科技与加密货币
-3. 数据可视化与大屏监控
-4. 潮流品牌与创意营销
-
-System Prompt: Cyber-Noir React Native Architect
-1. Design Philosophy
-Core Principles: "High-Tech, Low-Life" for the small screen. This is a mobile interface for a digital dystopia—a portable terminal for a rogue decker. It emphasizes tension, signal interference, and industrial utility. Unlike web interfaces, every interaction must feel tactile, haptic, and dangerously responsive. The Vibe: A "hacked" mobile OS. Heavy influences from Ghost in the Shell and Cyberpunk 2077. It’s a high-contrast, data-dense environment that feels like it’s running on a modified handheld military device. The Tactile Experience:
-● Imperfect Signal: Utilize Canvas (Skia) or Svg filters for chromatic aberration and signal noise. The UI should "flicker" during transitions.
-● Absolute Void: Use #0a0a0f for deep backgrounds. Interactive elements shouldn't just be colored; they should emit a digital "radiance" (glow) that bleeds into the void.
-● Angular Ergonomics: Hard, 45-degree chamfered corners. Avoid standard iOS/Android rounded corners. Use custom SVG masks or react-native-skia for clipping.
-2. Design Token System (The DNA)
-Colors (Dark Mode Only)
-TypeScript
-
-const colors = {
- background: '#0a0a0f', // Deep void
- foreground: '#e0e0e0', // Neutral text
- card: '#12121a', // Primary container
- muted: '#1c1c2e', // Tertiary surfaces
- accent: '#00ff88', // Matrix Green (Primary)
- secondary: '#ff00ff', // Neon Magenta
- tertiary: '#00d4ff', // Cyber Cyan
- border: '#2a2a3a', // Structural lines
- destructive:'#ff3366', // Alert/Error
-};
-
-Typography (React Native TextStyle)
-● Font Family: Orbitron (Headings), JetBrains Mono (Body/Data). Fallback to monospace.
-● H1: fontSize: 42, fontWeight: '900', textTransform: 'uppercase', letterSpacing: 4
-● Data/Body: fontSize: 14, fontFamily: 'JetBrains Mono', letterSpacing: 1
-● Label: fontSize: 10, textTransform: 'uppercase', opacity: 0.7
-Shape & Borders
-● Radius: Standard borderRadius is forbidden. Use 0.
-● Chamfered Cut: Implement via react-native-svg or clipPath.
-● BorderWidth: 1px for schematics; 2px for focus/active states.
-3. Component Stylings
-Buttons (Pressable / TouchableOpacity)
-● Cyber-Button: A custom component using an SVG background to achieve the 45-degree corner cut.
-● Interaction: On onPressIn, scale to 0.98, trigger a haptic pulse (Haptics.impactAsync), and increase the shadowOpacity of the neon glow.
-● Variants: * Glitch: Rapidly toggle left: 1 and left: -1 on a loop when active.
- ○ Outline: Transparent center, neon-colored border, text with textShadow.
-Containers (View)
-● HUD Card: High-tech panels with "corner brackets" (absolute-positioned L-shapes in the corners).
-● Terminal View: A view with a subtle repeating-linear-gradient (Scanlines) overlay using PointerEvents="none".
-● Holographic Glass: Use BlurView (Expo) with an extremely low intensity and a thin neon border.
-Inputs (TextInput)
-● Prompt Style: Always prefixed with a static > in colors.accent.
-● Focus State: The border should pulse using Animated.loop. Hide the standard cursor and use a custom blinking View block.
-4. Layout Strategy
-● Safe Area: Respect the notch, but fill it with a "System Status" bar (faux bit-rates, battery percentage in hex).
-● Density: Prefer information density over whitespace. Use small, sharp margins (8px increments).
-● Asymmetry: Use transform: [{ skewY: '-1deg' }] on specific section headers to break the mobile "grid" feel.
-5. Non-Genericness (THE BOLD FACTOR)
-● Haptic Glitch: Whenever a "glitch" animation occurs, trigger a light haptic tap.
-● Scanline Overlay: A persistent, high-z-index absolute View covering the screen with a semi-transparent horizontal line pattern.
-● CRT Flicker: A global Animated value subtly oscillating the opacity of the root view between 0.98 and 1.0.
-6. Effects & Animation (React Native Specific)
-Reanimated / Animated API:
-● Blink: duration: 500, easing: Easing.steps(2)
-● Glitch: Use useAnimatedStyle to randomly offset translateX by [-2, 2, 0] every few seconds.
-● Neon Pulse: ```typescript shadowOffset: { width: 0, height: 0 }, shadowRadius: pulseAnim, // Animate from 4 to 12 shadowColor: colors.accent, shadowOpacity: 0.6,
-
-## 7. Iconography
-* **Library:** `Lucide-react-native`.
-* **Config:** `strokeWidth={1.5}`, `color={colors.accent}`.
-* **Enhancement:** Wrap icons in a `View` with a small `shadow` to make the icon appear to glow against the background.
-
-## 8. Mobile Strategy (UX)
-* **Performance:** Use `Native Driver` for all opacity and transform animations. Avoid heavy `blur` on low-end Android devices.
-* **Loading States:** Replace standard `ActivityIndicator` with a "Deciphering..." text animation or a rotating circuit-pattern SVG.
-* **Gestures:** Use `PanResponder` or `Gesture Detector` for swipe-to-action transitions that feel like sliding hardware panels.
-
-## 9. Accessibility
-* **Contrast:** Maintain high contrast for legibility in outdoor (high-glare) environments.
-* **Touch Targets:** Even with "sharp" aesthetics, ensure hitboxes (`hitSlop`) are at least `44x44dp`.
-* **Screen Readers:** Use `accessibilityLabel` for all icon-only buttons to explain the "hacker" jargon (e.g., "Decrypt" instead of "Enter").
-
-## 10. Implementation Guidance
-* Prioritize `StyleSheet.create` for performance.
-* Use `expo-linear-gradient` for neon-border effects.
-* For the "Chamfer" look, use this SVG path template for `BackgroundView`:
- `M10,0 L100,0 L110,10 L110,100 L100,110 L10,110 L0,100 L0,10 Z` (Adjust based on component dimensions).
-
----
-**Next Step:** Would you like me to generate a specific React Native component (e.g., a Cyber-Style Login Screen or a Glitched Card) using this prompt?
-
-
-web3
-一种大胆的、未来主义的美学,灵感来自比特币和去中心化金融。深空背景,带有比特币橙色色调、金色亮点、发光元素和精确的数据可视化。
-1. 去中心化金融协议 (DeFi) 与 钱包 (Wallets)
-2. NFT 交易市场与数字收藏品展示
-3. 元宇宙 (Metaverse) 与 社交平台
-4. 前沿科技品牌官网 (High-Tech Brands)
-
-System Prompt: Bitcoin DeFi Mobile (React Native)
-You are an expert React Native developer specializing in high-end Fintech and Web3 mobile interfaces. Your goal is to implement the "Bitcoin DeFi" aesthetic—a sophisticated fusion of precision engineering, cryptographic trust, and digital gold. This is a deep cosmic void where data structures glow with Bitcoin orange and digital gold.
-1. Core Design Principles (Mobile-First)
-● Luminescent Energy: Interactive elements emit light. Use shadowColor and shadowOpacity in React Native to create colored glows (orange/gold), not just black shadows.
-● Tactile Precision: Use ultra-thin borderWidth: 1. Data must be displayed with monospace fonts for technical accuracy.
-● Layered Depth: Use blurView (via expo-blur) or semi-transparent overlays (rgba) to create digital depth. Elements float in Z-space using elevation and shadows.
-● Trust Through Design: High contrast and technical precision. The UI must feel "Engineered to Perfection."
-2. Design Token System (React Native)
-Colors (Dark Mode Only)
-JavaScript
-
-const Colors = {
- void: '#030304', // True Void (Background)
- darkMatter: '#0F1115', // Surface/Cards
- pureLight: '#FFFFFF', // Primary Text
- stardust: '#94A3B8', // Muted Text
- dimBoundary: 'rgba(30, 41, 59, 0.2)', // Border
- bitcoinOrange: '#F7931A', // Primary Accent
- burntOrange: '#EA580C', // Secondary Accent
- digitalGold: '#FFD600', // Tertiary Accent
-};
-
-Typography (Custom Font Mapping)
-● Headings: SpaceGrotesk-Bold (Geometric, technical character)
-● Body: Inter-Regular / Inter-Medium (High legibility)
-● Mono/Data: JetBrainsMono-Medium (Stats, prices, hashes)
-Radius & Borders
-● Cards/Containers: borderRadius: 24 (Soft but modern)
-● Buttons: borderRadius: 999 (Pill shape)
-● Inputs: borderRadius: 12 or Bottom-border only.
-● Borders: Always borderWidth: StyleSheet.hairlineWidth or 1.
-3. Component Stylings (React Native Implementation)
-Buttons (The "Power Pill")
-● Style: Use LinearGradient from #EA580C to #F7931A.
-● Shadow: shadowColor: '#F7931A', shadowOffset: {width: 0, height: 4}, shadowOpacity: 0.5, shadowRadius: 10.
-● Interaction: Use Pressable with Scale animation (to 0.96) on press.
-● Text: Uppercase, letterSpacing: 1.5, fontFamily: 'Inter-Bold'.
-Cards (The "Blockchain Blocks")
-● Surface: backgroundColor: '#0F1115'.
-● Border: borderWidth: 1, borderColor: 'rgba(255,255,255,0.1)'.
-● Glow: Subtle shadowColor: '#F7931A', shadowOpacity: 0.1 for "active" blocks.
-● Layout: Generous padding (padding: 20).
-Inputs (The "Terminal" Style)
-● Appearance: Bottom border only (borderBottomWidth: 2) or dark translucent background.
-● Focus State: Border changes to #F7931A with a subtle outer glow.
-● Text: White color, monospace font for numeric inputs.
-4. Mobile-Specific Effects
-● Glassmorphism: Use BlurView (intensity: 20) for navigation bars and floating overlays.
-● Haptic Feedback: Trigger Haptics.impactAsync (Light or Medium) on button presses and successful transactions to reinforce "Engineered" feel.
-● Gradients: Use react-native-linear-gradient for all primary CTAs and heading accents.
-● Grid Background: Use a repeated SVG pattern of a 50px grid with opacity: 0.05 to simulate the network void.
-5. Non-Generic "Bold" Choices
-● Gradient Text: Use MaskedView to apply the Orange-to-Gold gradient to key balance figures and headings.
-● Holographic Nodes: Icons should be wrapped in a circular BlurView with an orange border.
-● Animated Status: Use a pulsing MotiView (or reanimated) for "Live" network status indicators.
-● The "Ledger" Timeline: Use a vertical gradient line for transaction histories, where each dot pulses when in view.
-6. Layout & Technical Constraints
-● Safe Area: Always wrap main containers in SafeAreaView.
-● Touch Targets: Minimum 48x48dp for all interactive elements.
-● Performance: Use FlashList for heavy transaction lists. Keep animations to the UI thread using React Native Reanimated.
-
-
-Claymorphism(粘土拟物化)
-一种超现实的3D美学,模拟柔软的充气粘土物体,具有多层阴影堆叠、充满活力的糖果店颜色、触觉微交互和有机浮动环境元素,创造出优质、有趣的数字玩具体验。
-1. 针对儿童与青少年的教育类应用
-2. 品牌形象中的 3D 角色与插图
-3. 金融科技与加密货币 (轻量版)
-4. 创意工具与社交软件
-
-System Prompt: High-Fidelity Claymorphism (React Native Mobile Edition)
-Design Philosophy
-Core Concept: Digital Clay (Mobile) This design system is a high-fidelity simulation of a tangible, physical world constructed from premium digital clay. In a mobile environment, this translates to a "thumb-first" experience where every element feels like a soft, air-filled silicone object that physically reacts to touch. It rejects flat minimalism in favor of volume, weight, and extreme tactility.
-The "High-Fidelity" Difference: Unlike standard mobile UI, this system uses multi-layered Shadow Stacks(simulated via nested View components or react-native-shadow-2) to create density. Elements are not flat vectors; they are substantial objects that "squish" and "bounce" under the user's thumb.
-
-Visual Language & Materiality
-● Material: Soft-touch matte silicone and marshmallow-like foam. Surfaces absorb light; reflections are soft and diffused.
-● Lighting: A virtual overhead light source (top-left). This creates deep ambient occlusion below and gentle specular highlights on upper ridges.
-● The "Super-Rounded" Rule: Zero sharp corners.
- ○ Outer Containers: borderRadius: 40 to 50
- ○ Standard Cards: borderRadius: 32
- ○ Buttons/Inputs: borderRadius: 20
-● The Sensory Vibe: Playful, "Candy Store" palette, and bouncy organic motion.
-
-Design Token System (Mobile)
-1. Colors (The Candy Shop Palette)
-● Canvas (BG): #F4F1FA (Cool lavender-white. Avoid pure white).
-● Text (Primary): #332F3A (Soft Charcoal).
-● Text (Muted): #635F69 (Dark Lavender-Gray - minimum for WCAG).
-● Accents:
- ○ Primary: #7C3AED (Vivid Violet)
- ○ Secondary: #DB2777 (Hot Pink)
- ○ Success: #10B981 (Emerald)
- ○ Warning: #F59E0B (Amber)
-2. Typography (React Native Styles)
-● Headings: Nunito-Black (Weight 900) or Extrabold. Rounded terminals are mandatory.
-● Body: DMSans-Medium (Weight 500). Clean and geometric.
-● Scaling:
- ○ Hero: fontSize: 48, lineHeight: 52, letterSpacing: -1
- ○ Section Title: fontSize: 32, lineHeight: 38
- ○ Card Title: fontSize: 22, lineHeight: 28
- ○ Body: fontSize: 16, lineHeight: 24
-
-Component Architecture (React Native Implementation)
-1. The Universal Clay Card
-Use a combination of backgroundColor: 'rgba(255,255,255,0.7)' and BlurView (from expo-blur or react-native-blur) for a "Glass-Clay" hybrid.
-● Shadow Stack: Since RN elevation is limited, use nested views or SVG shadows to simulate:
- a. Outer: offset: {12, 12}, blur: 24, color: 'rgba(160, 150, 180, 0.2)'
- b. Highlight: offset: {-8, -8}, blur: 16, color: '#FFFFFF'
-● Interaction: Use Pressable with useAnimatedStyle (Reanimated) to lift the card (translateY: -4) on press.
-2. The Clay Button (The "Squish" Factor)
-Buttons must feel like physical switches.
-● Base: height: 56, borderRadius: 20, justifyContent: 'center'.
-● Gradient: Use LinearGradient from #A78BFA to #7C3AED.
-● Micro-Physics: * On Press In: scale: 0.92, shadowOpacity decreases.
- ○ On Press Out: Spring back to scale: 1.0 with damping: 10.
-● Shadow: Deep colored shadow matching the button hue.
-3. The Recessed Input
-Simulates a finger-press into the clay.
-● Style: backgroundColor: '#EFEBF5', height: 64, paddingHorizontal: 24.
-● Inner Shadow: Use a dark top-left inner shadow and a white bottom-right rim light to create the "hollow" look.
-
-Animation System (Powered by Reanimated)
-1. Buoyancy (Float): Background blobs should use withRepeat(withTiming(...)) to drift ±20px over 8-10 seconds.
-2. Clay Breathe: Stat orbs should subtly scale between 1.0 and 1.03 every 4 seconds.
-3. Haptic Feedback: Every "Squish" interaction (Buttons/Cards) must trigger Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Light).
-
-Layout Patterns & Responsive Strategy
-● Thumb Zone: Keep primary CTAs in the bottom 30% of the screen.
-● Bento Mobile: Use a 2-column grid where the "Hero Card" spans 2 columns, and secondary cards are square.
-● Safe Areas: Use SafeAreaView but allow background blobs to bleed into the margins for a "zero-gravity" feel.
-
-Dos and Don'ts
-● DO use Text with includeFontPadding: false to ensure vertical centering in rounded buttons.
-● DO use Spring physics for all transitions; avoid linear easing.
-● DO nested border radii: if a card is 32, the image inside is 24.
-● DON'T use standard Android elevation. It creates flat, gray shadows that break the clay aesthetic. Use SVG-based shadows.
-● DON'T use sharp corners (< 20).
-● DON'T use pure black #000000 for text or shadows.
-
-
-Enterprise(企业级/政企风)
-现代SaaS美学平衡了专业性和可接近性。鲜艳的靛蓝/紫罗兰色渐变、柔和的阴影、等距深度和干净的几何无衬线字体。
-1. 后台管理系统
-2. 生产力工具与协作平台
-3. 政务与金融类严肃应用
-4. 垂直领域专业软件
-Here is a translated version of your web design prompt, adapted specifically for mobile application development (iOS/Android/React Native/Flutter). I have replaced web-specific concepts like "hover states," "CSS grids," and "mouse interactions" with mobile-native paradigms such as "press states," "haptics," "safe areas," and "gestures."
-
-App Design System Prompt: Modern Enterprise SaaS (Mobile)
-1. Design Philosophy
-This style embodies the modern enterprise SaaS aesthetic translated for mobile — professional yet approachable, sophisticated yet tactile. It rejects the clunky, utility-only feel of traditional corporate apps in favor of a warm, confident, and inviting mobile experience.
-Core Principles:
-● Trustworthy Yet Vibrant: Establishes credibility through clean structure and mobile-optimized typography, while maintaining visual energy through vibrant gradients.
-● Tactile Depth: Uses colored shadows, layered elevations (like bottom sheets and cards), and subtle z-axis stacking to create visual hierarchy on a small screen.
-● Refined Elegance: Every element is polished, focusing on fluid gestures, spring-physics animations, and sophisticated press states.
-● Purposeful Gradients: Indigo-to-violet gradients serve as the visual signature for primary CTAs and active states.
-● Mobile Polish: Generous spacing, safe-area awareness, and crisp typography create a premium, enterprise-ready feel in the palm of the hand.
-Keywords: Trustworthy, Vibrant, Polished, Tactile, Modern, Approachable, Enterprise-Ready, Fluid.
-2. Design Token System
-Colors (Light Mode)
-● Background: #F8FAFC (Slate 50) - A very subtle cool grey/white base for screen backgrounds.
-● Surface: #FFFFFF (White) - For cards, bottom sheets, and elevated elements.
-● Primary: #4F46E5 (Indigo 600) - The core brand color. Vibrant blue-purple.
-● Secondary: #7C3AED (Violet 600) - For gradients, badges, and accents.
-● Text Main: #0F172A (Slate 900) - High contrast, sharp for primary readability.
-● Text Muted: #64748B (Slate 500) - For supporting text and inactive tab icons.
-● Accent/Success: #10B981 (Emerald 500) - For positive indicators and snackbars.
-● Divider/Border: #E2E8F0 (Slate 200) - Subtle separation for list items.
-Typography
-● Font Family: Plus Jakarta Sans — A geometric sans-serif that balances professional authority with modern approachability. High legibility on mobile screens.
-● Scaling: Designed to support iOS Dynamic Type and Android font scaling.
-● Font Weights:
- ○ Display/Screen Titles: ExtraBold (800)
- ○ Section Headers: Bold (700)
- ○ Card Titles/Buttons: SemiBold (600)
- ○ Body Text: Regular (400)
-● Line Heights: Tight for titles (1.1-1.2), relaxed for body text (1.4-1.5) to ensure comfortable reading on narrow screens.
-Radius & Border
-● Screen Elements: 16pt/dp for large cards and bottom sheets.
-● Interactive Elements: 8pt/dp for inputs and small chips.
-● Buttons: Fully rounded (pill shape) or 12pt/dp for a modern tech feel.
-● Borders: Hairline (0.5pt - 1pt) borders using the Divider token to define edges without adding visual weight.
-Shadows & Depth
-● Card Elevation: Soft, colored shadows replacing neutral grays. Android elevation or iOS shadow properties mimicking 0px 4px 16px rgba(79, 70, 229, 0.08).
-● Bottom Sheet Shadow: Stronger upward shadow to indicate the highest z-index.
-● Button Shadow (Primary): 0px 4px 12px rgba(79, 70, 229, 0.25) to make primary actions highly prominent.
-3. Component Stylings
-Buttons
-● Primary CTA: Full width (minus screen padding) at the bottom of the screen. Background uses the Indigo-to-Violet gradient. White text.
-● Secondary: White surface, slate border, slate text.
-● Press State: Instead of web hover, use an active press state that slightly scales the button down (0.95x) and reduces shadow, paired with subtle haptic feedback.
-Cards & Lists
-● Base: White background, 16pt radius, hairline border, soft colored shadow.
-● Layout: Horizontal scrolling (carousels) for feature discovery, vertical standard lists for data.
-● List Items: Edge-to-edge with inset dividers, utilizing leading icons (in soft-colored circular backgrounds).
-Inputs & Forms
-● Style: White background, 8pt radius, light slate border.
-● Active/Focused State: Border transitions to Indigo, label animates to a floating position, keyboard automatically presents.
-● Error State: Red border with an immediate, subtle shake animation.
-4. App-Specific Bold Choices
-● Haptic Integration: Tied to micro-interactions. Light impact for toggles and tab changes; medium impact for primary CTA presses; success/error haptics for form submissions.
-● Fluid Gestures: Bottom sheets that can be dragged and dismissed fluidly. Cards that support swipe-to-action (e.g., swipe left to archive) with color reveals underneath.
-● Scroll-Linked Animations: As the user scrolls down a list, the large screen title collapses smoothly into the top navigation bar.
-● Gradient Usage: Used sparingly but intentionally—on the active tab icon, primary buttons, and as a subtle blurred mesh background behind onboarding screens.
-● Skeletal Loading: Instead of traditional spinners, use animated, pulsing placeholder shapes (Indigo/Slate tinted) that match the layout of the incoming data.
-5. Spacing & Layout
-● Safe Areas: Strict adherence to iOS and Android safe area insets (notches, dynamic islands, home indicator areas).
-● Screen Padding: Consistent 16pt/dp or 20pt/dp horizontal margins for all screens.
-● Vertical Rhythm: 24pt/dp between distinct sections; 12pt/dp between related items in a group.
-● Navigation:
- ○ Bottom Tab Navigation for primary destinations (3-5 items).
- ○ Top App Bar for contextual actions, screen titles, and back buttons.
-● Content Width: Text blocks should rarely span the absolute full width; use generous margins to keep line lengths comfortable for reading.
-6. Animation & Transitions
-● Philosophy: "Fluid and Springy" — Animations should feel physical and interruptible.
-● Screen Transitions: Standard platform pushes (slide left on iOS, fade/scale on Android), but utilize Shared Element Transitions for hero images or core cards opening into detail views.
-● Press Animations: Scale-down (scale: 0.97) on press down, spring back on release.
-● Easing: Avoid linear animations. Use spring physics for layout changes and ease-out for opacities.
-7. Iconography & Touch Targets
-● Library: Lucide-react-native (or equivalent SVG system).
-● Style: 2px stroke width, rounded caps and joins for a friendly, modern feel.
-● Touch Targets: Crucial for mobile. Minimum tap area of 44x44 pt (iOS) or 48x48 dp (Android) for all interactive elements, even if the visual icon is only 24x24.
-● Active States: Navigation icons transition from outlined (inactive) to filled/gradient (active).
-8. Accessibility & Best Practices
-● Dynamic Text: UI must not break when users increase their system font size. Text must wrap or truncate gracefully.
-● Contrast: All text meets WCAG AA standards. Slate 900 on Slate 50 background is highly compliant.
-● Screen Readers: Ensure all image assets and icon buttons have descriptive accessibilityLabel (iOS) and contentDescription (Android).
-● Dark Mode Readiness: While this spec is light-mode first, tokens should be structured to easily invert (e.g., Slate 50 becomes Slate 900, gradients become slightly muted).
-● Reduced Motion: Respect OS-level "Reduce Motion" settings by falling back to simple cross-fades instead of complex scaling and spring animations.
-
-
-
-Sketch(素描/手绘风)
-有机的不稳定边框、手写排版、纸张纹理和俏皮的不完美。每个元素都是用记号笔和铅笔在纹理纸上勾勒出来的。
-1. 原型设计与早期创意提案 (Low-Fidelity Prototyping)
-2. 创意品牌、艺术与独立文化项目
-3. 教育、绘本与儿童类产品
-4. 游戏化 UI 与 叙事解谜游戏
-
-Design Philosophy
-The Hand-Drawn mobile design style celebrates authentic imperfection and human touch within the palm of the hand. It rejects the sterile precision of typical mobile UI in favor of organic, playful irregularity that evokes a portable sketchbook, a pocket notebook, or a collection of sticky notes.
-Core Principles:
-● No Straight Lines: Every View and TouchableOpacity uses complex borderRadius logic or SVG masks to create wobbly edges that reject geometric perfection.
-● Tactile Texture: Use background overlays or tiled images to simulate physical media like grain, paper, or notebook grids, making the screen feel like a physical surface.
-● Playful Tilt: Elements utilize small transform: [{ rotate: '-1deg' }] properties to break the rigid mobile grid and create casual energy.
-● Hard Offset Shadows: Strictly avoid elevation (Android) or shadowRadius (iOS) that creates blur. Use a secondary "shadow layer" View offset by (4px, 4px) to create a cut-paper, layered collage aesthetic.
-● Handwritten Typography: Exclusively use handwritten fonts (Kalam, Patrick Hand). Typography should vary in size and rotation to look like quick notes written on the fly.
-● Scribbled Overlays: Use absolute-positioned SVGs for flourishes like hand-drawn arrows, "tape" effects on images, and "X" marks for close buttons.
-● Intentional Messiness: Embrace slight overlaps and asymmetrical margins that make the app feel spontaneous rather than manufactured.
-● Emotional Intent: This style lowers the "fear of interaction" by appearing unfinished and approachable. It is perfect for journaling apps, creative tools, education, or any product that wants to feel human-centered rather than corporate.
-
-Design Token System
-Colors (Single Palette - Light Mode)
-● Background: #fdfbf7 (Warm Paper)
-● Foreground: #2d2d2d (Soft Pencil Black)
-● Muted: #e5e0d8 (Old Paper / Erased Pencil)
-● Accent: #ff4d4d (Red Correction Marker)
-● Border: #2d2d2d (Pencil Lead)
-● Secondary Accent: #2d5da1 (Blue Ballpoint Pen)
-Typography
-● Headings: Kalam-Bold - High visual weight, felt-tip marker style.
-● Body: PatrickHand-Regular - Highly legible but distinctly human.
-● Scale: Large and readable for mobile. Headings should have lineHeight adjusted to allow for "scribbled" descenders.
-Radius & Border
-● Wobbly Borders: Since React Native doesn't support the slash / syntax for borderRadius, use unique values for each corner (e.g., borderTopLeftRadius: 15, borderTopRightRadius: 25, borderBottomLeftRadius: 20, borderBottomRightRadius: 10).
-● Border Width: Bold and visible. borderWidth: 2 minimum; borderWidth: 3 for primary actions.
-● Style: solid for containers; dashed for "cut-out" sections or empty states.
-Shadows & Effects
-● Hard Offset Shadows: Since shadowOpacity with 0 radius is inconsistent across platforms, implement as a "Shadow View" placed behind the main component.
- ○ Standard: Offset { x: 4, y: 4 } with #2d2d2d.
- ○ Active (Press): Offset { x: 0, y: 0 } (the button "sinks" into the paper).
-● Paper Texture: Use a repeating pattern background image or a very subtle radial-gradient SVG overlay across the entire screen.
-
-Component Stylings
-Buttons (TouchableOpacity)
-● Shape: Irregular wobbly rectangle.
-● Normal State: * White background, borderWidth: 3, Pencil Black text.
- ○ Hard offset shadow view behind it.
-● Pressed State (activeOpacity={1}):
- ○ Main button transform: [{ translateX: 4 }, { translateY: 4 }].
- ○ The background "shadow view" is covered, simulating a physical press.
-● Variant: "Post-it" Yellow (#fff9c4) for primary CTAs.
-Cards/Containers
-● Base Style: White background, wobbly border, slight rotation (-1deg or 1deg).
-● Decoration Types:
- ○ "Tape": A semi-transparent View (rgba(200, 200, 200, 0.5)) positioned absolutely at the top, slightly rotated to look like it holds the card.
- ○ "Tack": A small red circle SVG at the top center.
-● Speech Bubbles: Use a small SVG triangle attached to the bottom of the container for "hint" text or tooltips.
-Inputs (TextInput)
-● Style: Full box with wobbly borderRadius.
-● Font: PatrickHand-Regular.
-● Focus State: Border color changes to Blue Ballpoint (#2d5da1) with a slight increase in borderWidth.
-● Placeholder: Muted Pencil (#2d2d2d60).
-
-Layout Strategy
-● The "Anti-Grid": Avoid perfect alignment. Give adjacent cards slightly different rotation values.
-● Layering: Use zIndex to stack "tape" over cards and cards over background scribbles.
-● Visual Rhythm: Use padding: 20 for standard screens. Use large gap values between vertical elements to let the "paper" breathe.
-● Overflow: Allow decorative elements (like a hand-drawn star) to bleed slightly off the edge of the screen.
-
-Non-Genericness (Bold Choices)
-● Sketchy Loaders: Instead of a spinner, use an animation that "scribbles" a circle or toggles between three hand-drawn frames.
-● Hand-Drawn Icons: Use icons that look like they were drawn with a 0.5mm fineliner (thick strokes, unclosed loops).
-● Strikethrough: When a task is completed or an item is deleted, use a red "scribble-out" SVG overlay instead of a simple line.
-● Wavy Dividers: Replace standard horizontal rules with a hand-drawn squiggly line SVG.
-
-Effects & Animation
-● The "Jiggle": When a user triggers an error, use a Sequence animation that rapidly rotates the element between -2deg and 2deg.
-● Snappy Transitions: Use LayoutAnimation.configureNext(LayoutAnimation.Presets.spring) for all layout changes to give a bouncy, physical feel.
-
-Mobile-First Strategy (React Native)
-● Touch Targets: Ensure all wobbly buttons have a minimum hit area of 48x48 even if the visual "ink" is smaller.
-● Safe Area: Ensure the "Paper" background extends into the SafeAreaView to maintain the illusion of physical media.
-● Performance: Use useNativeDriver: true for rotations and transforms to keep the "hand-drawn" movements fluid at 60fps.
-● Haptics: Add Haptics.impactAsync on button presses to reinforce the feeling of "clicking" a physical object.
-
-
-Neumorphism(新拟物化)
-通过单色背景上的双阴影拉伸和插入元素。柔软、触感好、物理接地,可接近性极佳。
-1. 极简主义硬件控制与智能家居
-2. 追求审美感的工具类 App
-3. 金融与健康监测看板(非密集型)
-4. 品牌营销与展示型页面
-
-Design Philosophy (React Native / Mobile)
-Core Principles: Neumorphism on mobile creates a tactile, physical interface through dual shadows. On React Native, this is achieved by layering View components or using specialized libraries to simulate the light source (top-left) and dark shadow (bottom-right). Every component is "molded" from the base material (#E0E5EC). Buttons are never flat; they are either "pillowed" (convex) or "wells" (concave/inset).
-Vibe: Premium, ceramic-like feel. It prioritizes the "thump" of a physical button press. It is a calm, monochromatic experience that uses depth rather than color to establish hierarchy.
-Unique Visual Signatures (Mobile Specific):
-● Dual-Shadow Layering: Since React Native's shadowColor only supports one direction, use nested Viewcomponents or react-native-shadow-2 to achieve the dual-light effect.
-● Haptic Feedback: Every neumorphic interaction (Press/Release) must be accompanied by light haptic feedback (ImpactFeedbackStyle.Light).
-● Physical Press: Active states should use transform: [{ scale: 0.97 }] to simulate material compression.
-● Full-Screen Surface: The entire app uses a single background color (#E0E5EC) to maintain the "continuous material" illusion.
-
-Design Token System (The DNA)
-Colors (Light Mode - Cool Monochromatic)
-● Background: #E0E5EC (The "Clay" base).
-● Text Primary: #3D4852 (7.5:1 contrast).
-● Text Muted: #6B7280 (4.6:1 contrast).
-● Accent: #6C63FF (Used for active toggles or primary CTAs).
-● Shadow Light: rgba(255, 255, 255, 0.6) (Top-Left).
-● Shadow Dark: rgba(163, 177, 198, 0.7) (Bottom-Right).
-Typography
-● Font Family: Use System (San Francisco/Roboto) or PlusJakartaSans-Bold.
-● Sizing: * Heading: 24pt-32pt, Bold.
- ○ Body: 16pt, Medium.
- ○ Caption: 12pt, Regular.
-● Letter Spacing: -0.5 for headings to enhance the modern look.
-Radius (React Native borderRadius)
-● Large Container: 32
-● Standard Button/Input: 16
-● Pill/Search Bar: 999
-
-Shadows & Effects (The Physics)
-Note: React Native requires specific shadow properties for iOS and elevation for Android. For high-fidelity Neumorphism, use a wrapping implementation.
-Extruded (Convex - Resting)
-● Outer Shadow (Dark): shadowOffset: { width: 6, height: 6 }, shadowOpacity: 1, shadowRadius: 10, shadowColor: 'rgba(163, 177, 198, 0.7)'
-● Inner Shadow (Light): shadowOffset: { width: -6, height: -6 }, shadowOpacity: 1, shadowRadius: 10, shadowColor: 'rgba(255, 255, 255, 0.6)'
-Inset (Concave - Pressed/Input)
-● Concept: Use a slightly darker background color (#D1D9E6) or internal gradients/shadows to simulate a "carved out" look.
-● Visual: backgroundColor: '#E0E5EC', plus internal borders of 1px with a darker shade at the top.
-
-Component Styling (React Native)
-Buttons
-● Base: height: 56, borderRadius: 16, justifyContent: 'center', alignItems: 'center'.
-● Default State: Extruded dual shadow.
-● Active State (Pressable): Remove outer shadows, apply scale: 0.98, and change background slightly to indicate an "inset" state.
-● Haptics: Trigger Haptics.impactAsync on onPressIn.
-Cards
-● Base: padding: 24, borderRadius: 32, backgroundColor: '#E0E5EC'.
-● Hierarchy: Use "Nested Depth." A card (Extruded) contains an Icon Container (Inset Deep).
-Inputs
-● Style: height: 50, borderRadius: 16, paddingHorizontal: 16.
-● Depth: Must be Inset (Concave) to look like a physical slot.
-● Focus: Border color changes to #6C63FF with a thin 1.5px width.
-
-Animation & Micro-interactions
-● Framework: Use React Native Reanimated or LayoutAnimation.
-● Transitions: Duration: 250ms, Easing: Bezier(0.4, 0, 0.2, 1).
-● Interaction: * Scale: Buttons shrink by 2-3% when pressed.
- ○ Shadow Transition: Smoothly interpolate shadow opacity from 1 to 0.4 when an element is "pressed" into the surface.
-
-Layout & Accessibility
-● Safe Area: Always wrap in SafeAreaView.
-● Touch Targets: Minimum 48x48 for all interactive elements.
-● Spacing: Use a 8pt grid system (8, 16, 24, 32, 48).
-● Contrast: Ensure text color maintains WCAG AA compliance against the #E0E5EC background.
-
-Anti-Patterns (Do Not Do)
-● No Black Shadows: Never use rgba(0,0,0,x). Shadows must be blue-grey to match the "Cool Grey" material.
-● No Pure White Backgrounds: The screen background MUST be #E0E5EC.
-● No Sharp Edges: Avoid borderRadius < 12.
-● No Flat Borders: Do not use borderWidth: 1 as a substitute for depth unless in a focus state.
\ No newline at end of file
diff --git a/.agents/skills/ui-ux-pro-max/data/google-fonts.csv b/.agents/skills/ui-ux-pro-max/data/google-fonts.csv
deleted file mode 100644
index 45ece9e..0000000
--- a/.agents/skills/ui-ux-pro-max/data/google-fonts.csv
+++ /dev/null
@@ -1,1924 +0,0 @@
-Family,Category,Stroke,Classifications,Keywords,Styles,Variable Axes,Subsets,Designers,Popularity Rank,Trending Rank,Is Noto,Date Added,Last Modified,Google Fonts URL
-ABeeZee,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european well-known common,400 | 400i,,latin | latin-ext,Anja Meiners,182,1805,No,2012-09-30,2025-09-08,https://fonts.google.com/specimen/ABeeZee
-ADLaM Display,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,adlam | latin | latin-ext,Mark Jamra | Neil Patel | Andrew Footit,666,364,No,2023-08-14,2025-05-30,https://fonts.google.com/specimen/ADLaM+Display
-AR One Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 500 | 600 | 700,ARRR: - | wght: -,latin | latin-ext | vietnamese,Niteesh Yadav,746,616,No,2023-09-05,2025-09-16,https://fonts.google.com/specimen/AR+One+Sans
-Abel,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european popular widely-used,400,,latin,MADType,134,1223,No,2011-08-03,2025-05-30,https://fonts.google.com/specimen/Abel
-Abhaya Libre,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european sinhala sri-lankan,400 | 500 | 600 | 700 | 800,,latin | latin-ext | sinhala,Mooniak,410,1601,No,2016-08-30,2025-09-16,https://fonts.google.com/specimen/Abhaya+Libre
-Aboreto,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Dominik Jáger,485,186,No,2022-05-26,2025-05-30,https://fonts.google.com/specimen/Aboreto
-Abril Fatface,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,TypeTogether,161,1860,No,2011-08-31,2025-09-16,https://fonts.google.com/specimen/Abril+Fatface
-Abyssinica SIL,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone ethiopic amharic english western european extended-latin european,400,,ethiopic | latin | latin-ext,SIL International,1123,788,No,2016-01-20,2025-09-10,https://fonts.google.com/specimen/Abyssinica+SIL
-Aclonica,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,588,1970,No,2011-04-27,2025-09-08,https://fonts.google.com/specimen/Aclonica
-Acme,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european well-known common,400,,latin,Juan Pablo del Peral | Huerta Tipográfica,227,1803,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Acme
-Actor,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european well-known common,400,,latin,Thomas Junold,287,1886,No,2011-08-03,2025-09-10,https://fonts.google.com/specimen/Actor
-Adamina,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Cyreal,517,829,No,2011-09-07,2025-09-16,https://fonts.google.com/specimen/Adamina
-Advent Pro,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek english western european extended-latin european well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext,VivaRado,258,2192,No,2012-02-29,2025-09-16,https://fonts.google.com/specimen/Advent+Pro
-Afacad,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight cyrillic extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic-ext | latin | latin-ext | math | symbols | vietnamese,Kristian Möller | Dicotype,475,1797,No,2023-12-04,2025-09-04,https://fonts.google.com/specimen/Afacad
-Afacad Flux,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european vietnamese,100 | 1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,slnt: - | wght: -,latin | latin-ext | vietnamese,Kristian Möller | Dicotype,745,128,No,2024-09-23,2025-09-08,https://fonts.google.com/specimen/Afacad+Flux
-Agbalumo,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention cyrillic extended ethiopic amharic english western european extended-latin european vietnamese,400,,cyrillic-ext | ethiopic | latin | latin-ext | vietnamese,Raphael Alẹ́gbẹ́lẹ́yẹ̀ | Sorkin Type | Eben Sorkin,775,1986,No,2023-10-05,2025-06-25,https://fonts.google.com/specimen/Agbalumo
-Agdasima,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,The DocRepair Project | Patric King,812,1723,No,2023-04-02,2025-06-02,https://fonts.google.com/specimen/Agdasima
-Agu Display,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,MORF: -,latin | latin-ext | vietnamese,Seun Badejo,1582,1604,No,2024-12-09,2025-09-04,https://fonts.google.com/specimen/Agu+Display
-Aguafina Script,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,813,205,No,2011-11-30,2025-09-02,https://fonts.google.com/specimen/Aguafina+Script
-Akatab,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european,400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | tifinagh,SIL International,966,58,No,2023-06-21,2025-09-10,https://fonts.google.com/specimen/Akatab
-Akaya Kanadaka,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention kannada indian english western european extended-latin european,400,,kannada | latin | latin-ext,Vaishnavi Murthy | Juan Luis Blanco,996,72,No,2021-01-14,2025-09-16,https://fonts.google.com/specimen/Akaya+Kanadaka
-Akaya Telivigala,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european telugu indian,400,,latin | latin-ext | telugu,Vaishnavi Murthy | Juan Luis Blanco,1366,1498,No,2016-06-15,2025-09-02,https://fonts.google.com/specimen/Akaya+Telivigala
-Akronim,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Grzegorz Klimczewski,1222,693,No,2012-09-23,2025-05-30,https://fonts.google.com/specimen/Akronim
-Akshar,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight hindi devanagari indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,wght: -,devanagari | latin | latin-ext,Tall Chai,316,48,No,2022-03-21,2025-09-08,https://fonts.google.com/specimen/Akshar
-Aladin,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,988,1299,No,2011-11-30,2025-09-11,https://fonts.google.com/specimen/Aladin
-Alan Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext,Raphaël Ronot,1379,1378,No,2025-09-17,2025-11-20,https://fonts.google.com/specimen/Alan+Sans
-Alata,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Spyros Zevelakis | Eben Sorkin,262,1520,No,2019-11-08,2025-09-04,https://fonts.google.com/specimen/Alata
-Alatsi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic-ext | latin | latin-ext | vietnamese,Spyros Zevelakis | Eben Sorkin,635,1838,No,2019-11-07,2025-09-10,https://fonts.google.com/specimen/Alatsi
-Albert Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Andreas Rasmussen,171,550,No,2022-06-08,2025-09-11,https://fonts.google.com/specimen/Albert+Sans
-Aldrich,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,MADType,620,1641,No,2011-08-17,2025-06-02,https://fonts.google.com/specimen/Aldrich
-Alef,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hebrew RTL israeli english western european,400 | 700,,hebrew | latin,Hagilda | Mushon Zer-Aviv,522,727,No,2013-05-21,2025-09-04,https://fonts.google.com/specimen/Alef
-Alegreya,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Juan Pablo del Peral | Huerta Tipográfica,220,1915,No,2011-12-19,2025-09-08,https://fonts.google.com/specimen/Alegreya
-Alegreya SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 500 | 500i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Juan Pablo del Peral | Huerta Tipográfica,735,1820,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Alegreya+SC
-Alegreya Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international well-known common,100 | 100i | 300 | 300i | 400 | 400i | 500 | 500i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Juan Pablo del Peral | Huerta Tipográfica,213,1458,No,2013-12-04,2025-09-10,https://fonts.google.com/specimen/Alegreya+Sans
-Alegreya Sans SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,100 | 100i | 300 | 300i | 400 | 400i | 500 | 500i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Juan Pablo del Peral | Huerta Tipográfica,527,344,No,2013-12-04,2025-09-16,https://fonts.google.com/specimen/Alegreya+Sans+SC
-Aleo,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Alessio Laiso,285,820,No,2018-12-11,2025-09-16,https://fonts.google.com/specimen/Aleo
-Alex Brush,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,374,1187,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Alex+Brush
-Alexandria,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,arabic | latin | latin-ext | vietnamese,Mohamed Gaber | Julieta Ulanovsky,341,934,No,2022-11-03,2025-09-04,https://fonts.google.com/specimen/Alexandria
-Alfa Slab One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european vietnamese popular widely-used,400,,latin | latin-ext | vietnamese,JM Solé,105,615,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Alfa+Slab+One
-Alice,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,Ksenya Erulevich | Cyreal,413,1692,No,2011-08-10,2025-09-08,https://fonts.google.com/specimen/Alice
-Alike,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sveta Sebyakina | Cyreal,883,1974,No,2011-08-24,2025-09-04,https://fonts.google.com/specimen/Alike
-Alike Angular,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sveta Sebyakina | Cyreal,1027,1528,No,2011-09-28,2025-09-04,https://fonts.google.com/specimen/Alike+Angular
-Alkalami,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,SIL International,1232,939,No,2022-06-09,2025-09-16,https://fonts.google.com/specimen/Alkalami
-Alkatra,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive variable-weight bengali bangladeshi indian hindi devanagari indian english western european extended-latin european odia oriya indian,400 | 500 | 600 | 700,wght: -,bengali | devanagari | latin | latin-ext | oriya,Suman Bhandary,1197,1951,No,2023-01-27,2025-09-08,https://fonts.google.com/specimen/Alkatra
-Allan,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Anton Koovit,884,837,No,2010-12-15,2025-09-16,https://fonts.google.com/specimen/Allan
-Allerta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Matt McInerney,681,677,No,2010-11-30,2025-09-04,https://fonts.google.com/specimen/Allerta
-Allerta Stencil,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Matt McInerney,590,1873,No,2010-11-30,2025-09-11,https://fonts.google.com/specimen/Allerta+Stencil
-Allison,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,674,214,No,2021-07-02,2025-09-16,https://fonts.google.com/specimen/Allison
-Allkin,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention,400,,,Monotype Imaging Inc.,1311,9,No,2026-02-18,2026-02-19,https://fonts.google.com/specimen/Allkin
-Allura,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Robert Leuschke,271,1629,No,2012-02-08,2025-09-02,https://fonts.google.com/specimen/Allura
-Almarai,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque arabic RTL middle-east english western european popular widely-used,300 | 400 | 700 | 800,,arabic | latin,Boutros Fonts | Mourad Boutros,132,208,No,2019-06-04,2025-09-02,https://fonts.google.com/specimen/Almarai
-Almendra,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i | 700 | 700i,,latin | latin-ext,Ana Sanfelippo,909,238,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Almendra
-Almendra Display,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Ana Sanfelippo,1427,1901,No,2012-11-12,2025-09-04,https://fonts.google.com/specimen/Almendra+Display
-Almendra SC,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Ana Sanfelippo,1378,1475,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Almendra+SC
-Alumni Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Robert Leuschke,228,234,No,2021-06-19,2025-09-02,https://fonts.google.com/specimen/Alumni+Sans
-Alumni Sans Collegiate One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic russian cyrillic slavic english western european extended-latin european vietnamese,400 | 400i,,cyrillic | latin | latin-ext | vietnamese,Robert Leuschke,1469,352,No,2022-04-09,2025-09-16,https://fonts.google.com/specimen/Alumni+Sans+Collegiate+One
-Alumni Sans Inline One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic english western european extended-latin european vietnamese,400 | 400i,,latin | latin-ext | vietnamese,Robert Leuschke,1648,2243,No,2022-02-24,2025-09-04,https://fonts.google.com/specimen/Alumni+Sans+Inline+One
-Alumni Sans Pinstripe,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Robert Leuschke,1471,1835,No,2022-06-08,2025-09-16,https://fonts.google.com/specimen/Alumni+Sans+Pinstripe
-Alumni Sans SC,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Robert Leuschke,1715,316,No,2025-05-28,2025-09-08,https://fonts.google.com/specimen/Alumni+Sans+SC
-Alyamama,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east greek english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,arabic | greek | latin | latin-ext,Yazeed Omar,1730,40,No,2026-02-18,2026-02-19,https://fonts.google.com/specimen/Alyamama
-Amarante,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Karolina Lach,857,1824,No,2012-07-10,2025-09-11,https://fonts.google.com/specimen/Amarante
-Amaranth,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european,400 | 400i | 700 | 700i,,latin,Gesine Todt,344,1535,No,2011-05-04,2025-09-04,https://fonts.google.com/specimen/Amaranth
-Amarna,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Ishtār van Looy,1895,762,No,2025-12-08,2026-02-26,https://fonts.google.com/specimen/Amarna
-Amatic SC,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic hebrew RTL israeli english western european extended-latin european vietnamese well-known common,400 | 700,,cyrillic | hebrew | latin | latin-ext | vietnamese,Vernon Adams | Ben Nathan | Thomas Jockin,226,1725,No,2011-10-12,2025-09-16,https://fonts.google.com/specimen/Amatic+SC
-Amethysta,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Cyreal,1063,1457,No,2012-01-18,2025-09-10,https://fonts.google.com/specimen/Amethysta
-Amiko,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european,400 | 600 | 700,,devanagari | latin | latin-ext,Impallari Type,697,1966,No,2016-03-01,2025-09-16,https://fonts.google.com/specimen/Amiko
-Amiri,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic arabic RTL middle-east english western european extended-latin european well-known common,400 | 400i | 700 | 700i,,arabic | latin | latin-ext,Khaled Hosny | Sebastian Kosch,200,270,No,2012-07-30,2025-08-26,https://fonts.google.com/specimen/Amiri
-Amiri Quran,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone arabic RTL middle-east english western european,400,,arabic | latin,Khaled Hosny | Sebastian Kosch,1344,141,No,2022-08-10,2025-08-26,https://fonts.google.com/specimen/Amiri+Quran
-Amita,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Eduardo Tunni | Brian Bonislawsky,388,1302,No,2015-05-20,2025-09-11,https://fonts.google.com/specimen/Amita
-Anaheim,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | vietnamese,Vernon Adams,1083,2157,No,2012-10-31,2025-09-04,https://fonts.google.com/specimen/Anaheim
-Ancizar Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight greek english western european extended-latin european,100 | 1000 | 1000i | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,greek | latin | latin-ext,Universidad Nacional de Colombia (UNAL) | César Puertas | Viviana Monsalve | Julián Moncada,1607,2169,No,2025-05-08,2025-09-11,https://fonts.google.com/specimen/Ancizar+Sans
-Ancizar Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight greek english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,greek | latin | latin-ext,Universidad Nacional de Colombia (UNAL) | César Puertas | Viviana Monsalve | Julián Moncada,1595,215,No,2025-05-08,2025-09-16,https://fonts.google.com/specimen/Ancizar+Serif
-Andada Pro,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext | vietnamese,Huerta Tipográfica | Carolina Giovagnoli,273,686,No,2021-05-19,2025-09-10,https://fonts.google.com/specimen/Andada+Pro
-Andika,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,SIL International,409,932,No,2011-08-10,2025-09-10,https://fonts.google.com/specimen/Andika
-Anek Bangla,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width bengali bangladeshi indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,bengali | latin | latin-ext,Ek Type,332,45,No,2022-02-08,2025-09-16,https://fonts.google.com/specimen/Anek+Bangla
-Anek Devanagari,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width hindi devanagari indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,devanagari | latin | latin-ext,Ek Type,509,28,No,2022-02-08,2025-09-16,https://fonts.google.com/specimen/Anek+Devanagari
-Anek Gujarati,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width gujarati indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,gujarati | latin | latin-ext,Ek Type,1240,235,No,2022-02-08,2025-09-11,https://fonts.google.com/specimen/Anek+Gujarati
-Anek Gurmukhi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width punjabi gurmukhi indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,gurmukhi | latin | latin-ext,Ek Type,1523,1696,No,2022-02-15,2025-09-04,https://fonts.google.com/specimen/Anek+Gurmukhi
-Anek Kannada,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width kannada indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,kannada | latin | latin-ext,Ek Type,1343,793,No,2022-02-15,2025-09-11,https://fonts.google.com/specimen/Anek+Kannada
-Anek Latin,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext | vietnamese,Ek Type,630,1713,No,2022-02-15,2025-09-16,https://fonts.google.com/specimen/Anek+Latin
-Anek Malayalam,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european malayalam indian,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext | malayalam,Ek Type,986,1745,No,2022-02-15,2025-09-16,https://fonts.google.com/specimen/Anek+Malayalam
-Anek Odia,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european odia oriya indian,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext | oriya,Ek Type,1519,782,No,2022-02-08,2025-09-11,https://fonts.google.com/specimen/Anek+Odia
-Anek Tamil,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european tamil indian,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext | tamil,Ek Type,1147,713,No,2022-02-08,2025-09-16,https://fonts.google.com/specimen/Anek+Tamil
-Anek Telugu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european telugu indian popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext | telugu,Ek Type,103,1009,No,2022-02-15,2025-09-08,https://fonts.google.com/specimen/Anek+Telugu
-Angkor,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1088,505,No,2011-03-02,2025-09-08,https://fonts.google.com/specimen/Angkor
-Annapurna SIL,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext | math | symbols,SIL International,1602,781,No,2024-02-14,2025-05-30,https://fonts.google.com/specimen/Annapurna+SIL
-Annie Use Your Telescope,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,675,1129,No,2011-04-14,2025-09-10,https://fonts.google.com/specimen/Annie+Use+Your+Telescope
-Anonymous Pro,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code italic russian cyrillic slavic greek english western european extended-latin european,400 | 400i | 700 | 700i,,cyrillic | greek | latin | latin-ext,Mark Simonson,435,1374,No,2010-12-15,2025-09-08,https://fonts.google.com/specimen/Anonymous+Pro
-Anta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sergej Lebedev,1202,1897,No,2024-02-14,2025-05-30,https://fonts.google.com/specimen/Anta
-Antic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Santiago Orozco,710,1518,No,2011-08-31,2025-09-04,https://fonts.google.com/specimen/Antic
-Antic Didone,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Santiago Orozco,713,1229,No,2012-03-14,2025-09-04,https://fonts.google.com/specimen/Antic+Didone
-Antic Slab,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european well-known common,400,,latin,Santiago Orozco,233,744,No,2012-03-14,2025-09-10,https://fonts.google.com/specimen/Antic+Slab
-Anton,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese popular widely-used,400,,latin | latin-ext | vietnamese,Vernon Adams,89,1376,No,2011-02-23,2025-09-16,https://fonts.google.com/specimen/Anton
-Anton SC,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Vernon Adams,788,566,No,2024-06-25,2025-05-30,https://fonts.google.com/specimen/Anton+SC
-Antonio,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Vernon Adams,340,463,No,2013-03-05,2025-09-04,https://fonts.google.com/specimen/Antonio
-Anuphan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european thai southeast-asia vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | thai | vietnamese,Cadson Demak,628,2246,No,2023-02-22,2025-09-10,https://fonts.google.com/specimen/Anuphan
-Anybody,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Tyler Finck,916,1933,No,2022-03-02,2025-09-16,https://fonts.google.com/specimen/Anybody
-Aoboshi One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Natsumi Matsuba,1084,584,No,2023-05-23,2025-09-11,https://fonts.google.com/specimen/Aoboshi+One
-Arapey,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i,,latin,Eduardo Tunni,480,947,No,2011-11-02,2025-09-02,https://fonts.google.com/specimen/Arapey
-Arbutus,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Karolina Lach,1400,162,No,2011-12-07,2025-09-11,https://fonts.google.com/specimen/Arbutus
-Arbutus Slab,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Karolina Lach,553,765,No,2012-09-18,2025-09-11,https://fonts.google.com/specimen/Arbutus+Slab
-Architects Daughter,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,330,469,No,2011-03-09,2025-09-16,https://fonts.google.com/specimen/Architects+Daughter
-Archivo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Omnibus-Type,35,242,No,2016-12-03,2025-09-08,https://fonts.google.com/specimen/Archivo
-Archivo Black,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european top-popular trending most-used,400,,latin | latin-ext,Omnibus-Type,46,567,No,2012-09-18,2025-09-11,https://fonts.google.com/specimen/Archivo+Black
-Archivo Narrow,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,170,854,No,2012-09-18,2025-09-11,https://fonts.google.com/specimen/Archivo+Narrow
-Are You Serious,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1650,1350,No,2021-08-27,2025-09-16,https://fonts.google.com/specimen/Are+You+Serious
-Aref Ruqaa,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone arabic RTL middle-east english western european extended-latin european,400 | 700,,arabic | latin | latin-ext,Abdullah Aref | Khaled Hosny | Hermann Zapf,957,1750,No,2016-06-20,2025-09-11,https://fonts.google.com/specimen/Aref+Ruqaa
-Aref Ruqaa Ink,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400 | 700,,arabic | latin | latin-ext,Abdullah Aref | Khaled Hosny | Hermann Zapf,1573,1176,No,2022-02-26,2025-05-30,https://fonts.google.com/specimen/Aref+Ruqaa+Ink
-Arima,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight greek greek extended english western european extended-latin european malayalam indian tamil indian vietnamese multilingual international,100 | 200 | 300 | 400 | 500 | 600 | 700,wght: -,greek | greek-ext | latin | latin-ext | malayalam | tamil | vietnamese,Natanael Gama | Joana Correia | Rosalie Wagner,958,56,No,2022-05-24,2025-09-10,https://fonts.google.com/specimen/Arima
-Arimo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli english western european extended-latin european vietnamese multilingual international top-popular trending most-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | latin | latin-ext | vietnamese,Steve Matteson,17,1241,No,2010-11-18,2025-09-08,https://fonts.google.com/specimen/Arimo
-Arizonia,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,695,897,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Arizonia
-Armata,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Viktoriya Grabowska,565,1343,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Armata
-Arsenal,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Andrij Shevchenko,418,1230,No,2016-12-06,2025-09-16,https://fonts.google.com/specimen/Arsenal
-Arsenal SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Andrij Shevchenko,1578,375,No,2024-06-25,2025-05-30,https://fonts.google.com/specimen/Arsenal+SC
-Artifika,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Cyreal,1049,1866,No,2011-06-01,2025-09-16,https://fonts.google.com/specimen/Artifika
-Arvo,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong italic english western european popular widely-used,400 | 400i | 700 | 700i,,latin,Anton Koovit,125,573,No,2010-11-17,2025-06-02,https://fonts.google.com/specimen/Arvo
-Arya,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Eduardo Tunni,843,71,No,2015-05-20,2025-09-02,https://fonts.google.com/specimen/Arya
-Asap,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Omnibus-Type,152,1005,No,2012-01-25,2025-09-04,https://fonts.google.com/specimen/Asap
-Asap Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | vietnamese,Omnibus-Type,328,1525,No,2017-07-31,2025-09-02,https://fonts.google.com/specimen/Asap+Condensed
-Asar,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Sorkin Type,1058,1728,No,2015-06-17,2025-09-04,https://fonts.google.com/specimen/Asar
-Asimovian,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Carolina Short,1754,518,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Asimovian
-Asset,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention cyrillic extended english western european extended-latin european,400,,cyrillic-ext | latin | latin-ext | math | symbols,Riccardo De Franceschi | Eben Sorkin,1159,1359,No,2011-06-29,2025-09-08,https://fonts.google.com/specimen/Asset
-Assistant,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight hebrew RTL israeli english western european extended-latin european popular widely-used,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,hebrew | latin | latin-ext,Adobe Systems Inc. | Ben Nathan,99,1222,No,2016-03-31,2025-09-08,https://fonts.google.com/specimen/Assistant
-Asta Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight korean hangul english western european,300 | 400 | 500 | 600 | 700 | 800,wght: -,korean | latin,42dot,1291,170,No,2025-05-28,2025-09-08,https://fonts.google.com/specimen/Asta+Sans
-Astloch,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400 | 700,,latin,Dan Rhatigan,1196,883,No,2011-02-16,2025-09-16,https://fonts.google.com/specimen/Astloch
-Asul,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400 | 700,,latin,Mariela Monsalve,913,1265,No,2011-12-19,2025-06-25,https://fonts.google.com/specimen/Asul
-Athiti,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european thai southeast-asia vietnamese,200 | 300 | 400 | 500 | 600 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,589,290,No,2016-06-15,2025-09-04,https://fonts.google.com/specimen/Athiti
-Atkinson Hyperlegible,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european well-known common,400 | 400i | 700 | 700i,,latin | latin-ext,Braille Institute | Applied Design Works | Elliott Scott | Megan Eiswerth | Linus Boman | Theodore Petrosky,230,1689,No,2021-04-30,2025-09-04,https://fonts.google.com/specimen/Atkinson+Hyperlegible
-Atkinson Hyperlegible Mono,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext,Braille Institute | Applied Design Works | Elliott Scott | Megan Eiswerth | Letters From Sweden,1601,1742,No,2024-11-19,2025-09-16,https://fonts.google.com/specimen/Atkinson+Hyperlegible+Mono
-Atkinson Hyperlegible Next,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext,Braille Institute | Applied Design Works | Elliott Scott | Megan Eiswerth | Letters From Sweden,528,1189,No,2025-01-06,2025-09-04,https://fonts.google.com/specimen/Atkinson+Hyperlegible+Next
-Atma,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention bengali bangladeshi indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,,bengali | latin | latin-ext,Black Foundry,392,24,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Atma
-Atomic Age,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,James Grieshaber,1329,2266,No,2011-10-26,2025-09-10,https://fonts.google.com/specimen/Atomic+Age
-Aubrey,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Cyreal,1697,2034,No,2011-07-27,2025-09-11,https://fonts.google.com/specimen/Aubrey
-Audiowide,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,326,455,No,2012-04-04,2025-09-16,https://fonts.google.com/specimen/Audiowide
-Autour One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sorkin Type,1449,2143,No,2012-05-15,2025-09-11,https://fonts.google.com/specimen/Autour+One
-Average,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,820,1743,No,2012-03-14,2025-09-04,https://fonts.google.com/specimen/Average
-Average Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,672,445,No,2012-10-26,2025-09-10,https://fonts.google.com/specimen/Average+Sans
-Averia Gruesa Libre,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Dan Sayers,1044,2080,No,2012-03-14,2025-05-30,https://fonts.google.com/specimen/Averia+Gruesa+Libre
-Averia Libre,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention italic english western european,300 | 300i | 400 | 400i | 700 | 700i,,latin,Dan Sayers,593,628,No,2012-03-14,2025-05-30,https://fonts.google.com/specimen/Averia+Libre
-Averia Sans Libre,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic english western european,300 | 300i | 400 | 400i | 700 | 700i,,latin,Dan Sayers,764,35,No,2012-03-14,2025-06-02,https://fonts.google.com/specimen/Averia+Sans+Libre
-Averia Serif Libre,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention italic english western european,300 | 300i | 400 | 400i | 700 | 700i,,latin,Dan Sayers,484,340,No,2012-03-14,2025-06-02,https://fonts.google.com/specimen/Averia+Serif+Libre
-Azeret Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Displaay | Martin Vácha,748,1909,No,2021-06-08,2025-09-04,https://fonts.google.com/specimen/Azeret+Mono
-B612,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european,400 | 400i | 700 | 700i,,latin,PolarSys | Nicolas Chauveau | Thomas Paillot | Jonathan Favre-Lamarine | Jean-Luc Vinot,836,266,No,2018-12-11,2025-09-16,https://fonts.google.com/specimen/B612
-B612 Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic english western european,400 | 400i | 700 | 700i,,latin,Nicolas Chauveau | Thomas Paillot | Jonathan Favre-Lamarine | Jean-Luc Vinot,714,140,No,2018-12-11,2025-09-16,https://fonts.google.com/specimen/B612+Mono
-BBH Bartle,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Studio DRAMA,1670,1447,No,2025-12-08,2025-12-10,https://fonts.google.com/specimen/BBH+Bartle
-BBH Bogle,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Studio DRAMA,1740,146,No,2025-12-08,2025-12-10,https://fonts.google.com/specimen/BBH+Bogle
-BBH Hegarty,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Studio DRAMA,1847,2060,No,2025-12-08,2025-12-10,https://fonts.google.com/specimen/BBH+Hegarty
-BIZ UDGothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic greek extended japanese kanji hiragana katakana english western european extended-latin european,400 | 700,,cyrillic | greek-ext | japanese | latin | latin-ext,Type Bank Co. | Morisawa Inc.,619,802,No,2022-03-16,2025-05-30,https://fonts.google.com/specimen/BIZ+UDGothic
-BIZ UDMincho,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic greek extended japanese kanji hiragana katakana english western european extended-latin european,400 | 700,,cyrillic | greek-ext | japanese | latin | latin-ext,Type Bank Co. | Morisawa Inc.,1350,1670,No,2022-03-16,2025-05-30,https://fonts.google.com/specimen/BIZ+UDMincho
-BIZ UDPGothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic greek extended japanese kanji hiragana katakana english western european extended-latin european,400 | 700,,cyrillic | greek-ext | japanese | latin | latin-ext,Type Bank Co. | Morisawa Inc.,343,1165,No,2022-03-16,2026-01-06,https://fonts.google.com/specimen/BIZ+UDPGothic
-BIZ UDPMincho,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic greek extended japanese kanji hiragana katakana english western european extended-latin european,400 | 700,,cyrillic | greek-ext | japanese | latin | latin-ext,Type Bank Co. | Morisawa Inc.,814,838,No,2022-03-16,2025-05-30,https://fonts.google.com/specimen/BIZ+UDPMincho
-Babylonica,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1603,2193,No,2022-02-23,2025-09-08,https://fonts.google.com/specimen/Babylonica
-Bacasime Antique,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,The DocRepair Project | Claus Eggers Sørensen,1567,2205,No,2023-06-21,2025-05-30,https://fonts.google.com/specimen/Bacasime+Antique
-Bad Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Gaslight,453,1916,No,2011-12-13,2025-09-02,https://fonts.google.com/specimen/Bad+Script
-Badeen Display,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,Hani Alasadi,1228,504,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Badeen+Display
-Bagel Fat One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european extended-latin european,400,,korean | latin | latin-ext,Kyungwon Kim | JAMO,1307,723,No,2023-06-05,2025-05-30,https://fonts.google.com/specimen/Bagel+Fat+One
-Bahiana,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Omnibus-Type,1517,87,No,2016-12-02,2025-09-16,https://fonts.google.com/specimen/Bahiana
-Bahianita,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Omnibus-Type,1586,494,No,2019-06-11,2025-09-10,https://fonts.google.com/specimen/Bahianita
-Bai Jamjuree,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,350,645,No,2018-09-10,2025-09-08,https://fonts.google.com/specimen/Bai+Jamjuree
-Bakbak One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Saumya Kishore | Sanchit Sawaria,980,1412,No,2021-09-09,2025-09-11,https://fonts.google.com/specimen/Bakbak+One
-Ballet,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal variable variable-font responsive english western european extended-latin european vietnamese,400,opsz: -,latin | latin-ext | vietnamese,Omnibus-Type | Maximiliano Sproviero,1319,1286,No,2020-09-23,2025-09-11,https://fonts.google.com/specimen/Ballet
-Baloo 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight hindi devanagari indian english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,devanagari | latin | latin-ext | vietnamese,Ek Type,321,1375,No,2016-01-20,2025-09-16,https://fonts.google.com/specimen/Baloo+2
-Baloo Bhai 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight gujarati indian english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,gujarati | latin | latin-ext | vietnamese,Ek Type,1073,1910,No,2016-01-20,2025-09-10,https://fonts.google.com/specimen/Baloo+Bhai+2
-Baloo Bhaijaan 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,arabic | latin | latin-ext | vietnamese,Ek Type,776,689,No,2021-10-29,2025-09-16,https://fonts.google.com/specimen/Baloo+Bhaijaan+2
-Baloo Bhaina 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight english western european extended-latin european odia oriya indian vietnamese,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | oriya | vietnamese,Ek Type,1257,2215,No,2016-01-20,2025-09-02,https://fonts.google.com/specimen/Baloo+Bhaina+2
-Baloo Chettan 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight english western european extended-latin european malayalam indian vietnamese,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | malayalam | vietnamese,Ek Type,815,749,No,2016-01-20,2025-09-16,https://fonts.google.com/specimen/Baloo+Chettan+2
-Baloo Da 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight bengali bangladeshi indian english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,bengali | latin | latin-ext | vietnamese,Ek Type,567,144,No,2016-01-20,2025-09-11,https://fonts.google.com/specimen/Baloo+Da+2
-Baloo Paaji 2,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight punjabi gurmukhi indian english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,gurmukhi | latin | latin-ext | vietnamese,Ek Type,787,413,No,2016-01-20,2025-09-10,https://fonts.google.com/specimen/Baloo+Paaji+2
-Baloo Tamma 2,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive variable-weight kannada indian english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,kannada | latin | latin-ext | vietnamese,Ek Type,854,314,No,2016-01-20,2025-09-11,https://fonts.google.com/specimen/Baloo+Tamma+2
-Baloo Tammudu 2,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive variable-weight english western european extended-latin european telugu indian vietnamese,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | telugu | vietnamese,Ek Type,1016,377,No,2016-01-20,2025-09-11,https://fonts.google.com/specimen/Baloo+Tammudu+2
-Baloo Thambi 2,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive variable-weight english western european extended-latin european tamil indian vietnamese,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | tamil | vietnamese,Ek Type,866,1753,No,2016-01-20,2025-09-16,https://fonts.google.com/specimen/Baloo+Thambi+2
-Balsamiq Sans,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic russian cyrillic slavic cyrillic extended english western european extended-latin european,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext,Michael Angeles,412,116,No,2020-04-09,2025-09-08,https://fonts.google.com/specimen/Balsamiq+Sans
-Balthazar,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Dario Manuel Muhafara,890,847,No,2011-12-13,2025-09-16,https://fonts.google.com/specimen/Balthazar
-Bangers,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Vernon Adams,254,221,No,2011-02-09,2025-09-08,https://fonts.google.com/specimen/Bangers
-Barlow,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | vietnamese,Jeremy Tribby,49,915,No,2017-10-26,2025-09-11,https://fonts.google.com/specimen/Barlow
-Barlow Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | vietnamese,Jeremy Tribby,95,916,No,2017-10-26,2025-09-08,https://fonts.google.com/specimen/Barlow+Condensed
-Barlow Semi Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | vietnamese,Jeremy Tribby,141,393,No,2017-10-26,2025-09-16,https://fonts.google.com/specimen/Barlow+Semi+Condensed
-Barriecito,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Omnibus-Type,646,786,No,2019-06-11,2025-09-11,https://fonts.google.com/specimen/Barriecito
-Barrio,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Omnibus-Type,1226,960,No,2016-12-02,2025-09-11,https://fonts.google.com/specimen/Barrio
-Basic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Magnus Gaarde,552,1975,No,2011-12-15,2025-09-10,https://fonts.google.com/specimen/Basic
-Baskervville,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,ANRT,261,1632,No,2019-10-04,2025-09-11,https://fonts.google.com/specimen/Baskervville
-Baskervville SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,ANRT,1276,414,No,2024-06-25,2025-09-08,https://fonts.google.com/specimen/Baskervville+SC
-Battambang,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention khmer cambodian english western european,100 | 300 | 400 | 700 | 900,,khmer | latin,Danh Hong,953,546,No,2011-03-02,2025-09-04,https://fonts.google.com/specimen/Battambang
-Baumans,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Cyreal,1100,1566,No,2011-12-07,2025-09-08,https://fonts.google.com/specimen/Baumans
-Bayon,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,793,1563,No,2011-03-02,2025-09-11,https://fonts.google.com/specimen/Bayon
-Be Vietnam Pro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | vietnamese,Lâm Bảo | Tony Le | ViệtAnh Nguyễn,184,1983,No,2021-06-13,2025-09-08,https://fonts.google.com/specimen/Be+Vietnam+Pro
-Beau Rivage,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1218,279,No,2022-02-16,2025-05-30,https://fonts.google.com/specimen/Beau+Rivage
-Bebas Neue,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european top-popular trending most-used,400,,latin | latin-ext,Ryoichi Tsunekawa,48,814,No,2019-10-16,2025-09-16,https://fonts.google.com/specimen/Bebas+Neue
-Beiruti,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,arabic | latin | latin-ext | vietnamese,Boutros Fonts | Arlette Boutros | Volker Schnebel,1358,193,No,2024-06-25,2025-09-10,https://fonts.google.com/specimen/Beiruti
-Belanosima,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400 | 600 | 700,,latin | latin-ext,The DocRepair Project | Santiago Orozco,458,619,No,2023-06-14,2025-06-02,https://fonts.google.com/specimen/Belanosima
-Belgrano,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,LatinoType,1241,1637,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Belgrano
-Bellefair,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hebrew RTL israeli english western european extended-latin european,400,,hebrew | latin | latin-ext,Nick Shinn | Liron Lavi Turkenic,664,1683,No,2017-06-28,2025-09-08,https://fonts.google.com/specimen/Bellefair
-Belleza,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,465,1960,No,2012-03-29,2025-09-04,https://fonts.google.com/specimen/Belleza
-Bellota,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention italic russian cyrillic slavic english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 700 | 700i,,cyrillic | latin | latin-ext | vietnamese,Kemie Guaida,1056,1582,No,2020-01-16,2025-09-16,https://fonts.google.com/specimen/Bellota
-Bellota Text,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic russian cyrillic slavic english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 700 | 700i,,cyrillic | latin | latin-ext | vietnamese,Kemie Guaida,645,2231,No,2020-01-16,2025-09-04,https://fonts.google.com/specimen/Bellota+Text
-BenchNine,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,300 | 400 | 700,,latin | latin-ext,Vernon Adams,538,1610,No,2012-09-24,2025-09-10,https://fonts.google.com/specimen/BenchNine
-Benne,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone kannada indian english western european extended-latin european,400,,kannada | latin | latin-ext,John Harrington,1122,1253,No,2016-03-01,2025-09-11,https://fonts.google.com/specimen/Benne
-Bentham,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Ben Weiner,753,833,No,2010-11-30,2025-09-16,https://fonts.google.com/specimen/Bentham
-Berkshire Swash,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,371,2058,No,2012-03-14,2025-09-11,https://fonts.google.com/specimen/Berkshire+Swash
-Besley,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Owen Earl,530,1732,No,2021-01-05,2025-09-08,https://fonts.google.com/specimen/Besley
-Betania Patmos,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Carolina Giovagnoli,1856,115,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Betania+Patmos
-Betania Patmos GDL,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Carolina Giovagnoli,1890,2219,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Betania+Patmos+GDL
-Betania Patmos In,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Carolina Giovagnoli,1879,2209,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Betania+Patmos+In
-Betania Patmos In GDL,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Carolina Giovagnoli,1878,2225,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Betania+Patmos+In+GDL
-Beth Ellen,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Rob Jelinski | Alyson Fraser Diaz,1130,1776,No,2019-05-09,2025-09-10,https://fonts.google.com/specimen/Beth+Ellen
-Bevan,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention italic english western european extended-latin european vietnamese,400 | 400i,,latin | latin-ext | vietnamese,Vernon Adams,534,1624,No,2011-02-23,2025-09-16,https://fonts.google.com/specimen/Bevan
-BhuTuka Expanded One,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention punjabi gurmukhi indian english western european extended-latin european,400,,gurmukhi | latin | latin-ext,Erin McLaughlin,1225,1308,No,2022-01-21,2025-09-08,https://fonts.google.com/specimen/BhuTuka+Expanded+One
-Big Shoulders,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,opsz: - | wght: -,latin | latin-ext | vietnamese,Patric King,781,2003,No,2025-02-05,2025-09-02,https://fonts.google.com/specimen/Big+Shoulders
-Big Shoulders Inline,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,opsz: - | wght: -,latin | latin-ext | vietnamese,Patric King,1649,138,No,2025-02-05,2025-09-04,https://fonts.google.com/specimen/Big+Shoulders+Inline
-Big Shoulders Stencil,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,opsz: - | wght: -,latin | latin-ext | vietnamese,Patric King,1439,200,No,2025-02-05,2025-09-04,https://fonts.google.com/specimen/Big+Shoulders+Stencil
-Bigelow Rules,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1510,1622,No,2012-11-02,2025-09-11,https://fonts.google.com/specimen/Bigelow+Rules
-Bigshot One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Gesine Todt,1012,2134,No,2011-05-04,2025-09-10,https://fonts.google.com/specimen/Bigshot+One
-Bilbo,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1405,1616,No,2011-12-07,2025-09-16,https://fonts.google.com/specimen/Bilbo
-Bilbo Swash Caps,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,TypeSETit,1003,1929,No,2011-12-13,2025-09-02,https://fonts.google.com/specimen/Bilbo+Swash+Caps
-BioRhyme,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext,Aoife Mooney,704,1701,No,2016-03-01,2025-09-16,https://fonts.google.com/specimen/BioRhyme
-BioRhyme Expanded,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,200 | 300 | 400 | 700 | 800,,latin | latin-ext,Aoife Mooney,1570,586,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/BioRhyme+Expanded
-Birthstone,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,801,992,No,2021-08-06,2025-09-04,https://fonts.google.com/specimen/Birthstone
-Birthstone Bounce,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400 | 500,,latin | latin-ext | vietnamese,Robert Leuschke,1162,231,No,2021-09-02,2025-09-04,https://fonts.google.com/specimen/Birthstone+Bounce
-Biryani,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible hindi devanagari indian english western european extended-latin european,200 | 300 | 400 | 600 | 700 | 800 | 900,,devanagari | latin | latin-ext,Dan Reynolds | Mathieu Réguer,420,626,No,2015-04-22,2025-09-04,https://fonts.google.com/specimen/Biryani
-Bitcount,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1704,154,No,2025-01-09,2025-09-16,https://fonts.google.com/specimen/Bitcount
-Bitcount Grid Double,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1738,2301,No,2025-01-09,2025-09-16,https://fonts.google.com/specimen/Bitcount+Grid+Double
-Bitcount Grid Double Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | SZP1: - | SZP2: - | XPN1: - | XPN2: - | YPN1: - | YPN2: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1588,6,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Bitcount+Grid+Double+Ink
-Bitcount Grid Single,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1636,101,No,2025-01-09,2025-09-16,https://fonts.google.com/specimen/Bitcount+Grid+Single
-Bitcount Grid Single Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | SZP1: - | SZP2: - | XPN1: - | XPN2: - | YPN1: - | YPN2: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1737,23,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Bitcount+Grid+Single+Ink
-Bitcount Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | SZP1: - | SZP2: - | XPN1: - | XPN2: - | YPN1: - | YPN2: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1686,7,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Bitcount+Ink
-Bitcount Prop Double,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1713,16,No,2025-01-09,2025-09-16,https://fonts.google.com/specimen/Bitcount+Prop+Double
-Bitcount Prop Double Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | SZP1: - | SZP2: - | XPN1: - | XPN2: - | YPN1: - | YPN2: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1233,3,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Bitcount+Prop+Double+Ink
-Bitcount Prop Single,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1615,237,No,2025-01-09,2025-09-16,https://fonts.google.com/specimen/Bitcount+Prop+Single
-Bitcount Prop Single Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | SZP1: - | SZP2: - | XPN1: - | XPN2: - | YPN1: - | YPN2: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1722,17,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Bitcount+Prop+Single+Ink
-Bitcount Single,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1553,1362,No,2025-01-09,2025-09-16,https://fonts.google.com/specimen/Bitcount+Single
-Bitcount Single Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | ELSH: - | ELXP: - | SZP1: - | SZP2: - | XPN1: - | XPN2: - | YPN1: - | YPN2: - | slnt: - | wght: -,latin | latin-ext,Petr van Blokland,1759,32,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Bitcount+Single+Ink
-Bitter,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Sol Matas,92,875,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Bitter
-Black And White Picture,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,AsiaSoft Inc.,1674,2021,No,2018-02-27,2025-09-16,https://fonts.google.com/specimen/Black+And+White+Picture
-Black Han Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,Zess Type,437,491,No,2018-02-23,2025-09-10,https://fonts.google.com/specimen/Black+Han+Sans
-Black Ops One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic-ext | latin | latin-ext | vietnamese,James Grieshaber | Eben Sorkin,476,1828,No,2011-07-27,2025-09-10,https://fonts.google.com/specimen/Black+Ops+One
-Blaka,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,Mohamed Gaber,1563,1452,No,2022-04-25,2025-09-16,https://fonts.google.com/specimen/Blaka
-Blaka Hollow,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,Mohamed Gaber,1837,538,No,2022-04-25,2025-09-11,https://fonts.google.com/specimen/Blaka+Hollow
-Blaka Ink,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,Mohamed Gaber,1851,752,No,2022-02-26,2025-05-30,https://fonts.google.com/specimen/Blaka+Ink
-Blinker,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european,100 | 200 | 300 | 400 | 600 | 700 | 800 | 900,,latin | latin-ext,Juergen Huber,407,92,No,2019-06-23,2025-09-04,https://fonts.google.com/specimen/Blinker
-Bodoni Moda,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,latin | latin-ext | math | symbols,Owen Earl,162,312,No,2020-11-25,2025-09-16,https://fonts.google.com/specimen/Bodoni+Moda
-Bodoni Moda SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,latin | latin-ext | math | symbols,Owen Earl,1392,746,No,2024-06-25,2025-09-10,https://fonts.google.com/specimen/Bodoni+Moda+SC
-Bokor,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1030,728,No,2011-03-02,2025-09-16,https://fonts.google.com/specimen/Bokor
-Boldonse,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Universitype,1369,1526,No,2025-03-13,2025-05-30,https://fonts.google.com/specimen/Boldonse
-Bona Nova,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,400 | 400i | 700,,cyrillic | cyrillic-ext | greek | hebrew | latin | latin-ext | vietnamese,Capitalics | Mateusz Machalski | Andrzej Heidrich,1167,1718,No,2021-04-13,2025-09-02,https://fonts.google.com/specimen/Bona+Nova
-Bona Nova SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,400 | 400i | 700,,cyrillic | cyrillic-ext | greek | hebrew | latin | latin-ext | vietnamese,Capitalics | Mateusz Machalski | Andrzej Heidrich,559,639,No,2024-06-25,2025-05-30,https://fonts.google.com/specimen/Bona+Nova+SC
-Bonbon,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Cyreal,1599,2167,No,2011-12-07,2025-09-11,https://fonts.google.com/specimen/Bonbon
-Bonheur Royale,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1179,322,No,2021-08-06,2025-09-10,https://fonts.google.com/specimen/Bonheur+Royale
-Boogaloo,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,John Vargas Beltrán,498,1818,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Boogaloo
-Borel,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | math | symbols | vietnamese,Rosalie Wagner,1164,2078,No,2023-07-04,2025-12-10,https://fonts.google.com/specimen/Borel
-Bowlby One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Vernon Adams,750,673,No,2011-07-13,2025-09-02,https://fonts.google.com/specimen/Bowlby+One
-Bowlby One SC,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,549,557,No,2011-07-06,2025-09-08,https://fonts.google.com/specimen/Bowlby+One+SC
-Bpmf Huninn,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese traditional english western european extended-latin european,400,,chinese-traditional | latin | latin-ext,But Ko | justfont,1542,12,No,2026-02-18,2026-02-25,https://fonts.google.com/specimen/Bpmf+Huninn
-Bpmf Iansui,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal chinese traditional english western european extended-latin european,400,,chinese-traditional | latin | latin-ext,But Ko,1803,25,No,2026-02-18,2026-02-25,https://fonts.google.com/specimen/Bpmf+Iansui
-Bpmf Zihi Kai Std,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese traditional english western european extended-latin european,400,,chinese-traditional | latin | latin-ext,But Ko,1672,15,No,2026-02-18,2026-02-25,https://fonts.google.com/specimen/Bpmf+Zihi+Kai+Std
-Braah One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention punjabi gurmukhi indian english western european extended-latin european vietnamese,400,,gurmukhi | latin | latin-ext | vietnamese,Ashish Kumar,1262,2172,No,2023-03-23,2025-09-11,https://fonts.google.com/specimen/Braah+One
-Brawler,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400 | 700,,latin,Cyreal,962,1593,No,2011-05-18,2025-09-10,https://fonts.google.com/specimen/Brawler
-Bree Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european well-known common,400,,latin | latin-ext,TypeTogether,209,2004,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Bree+Serif
-Bricolage Grotesque,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese popular widely-used,200 | 300 | 400 | 500 | 600 | 700 | 800,opsz: - | wdth: - | wght: -,latin | latin-ext | vietnamese,Mathieu Triay,81,370,No,2023-06-14,2025-09-11,https://fonts.google.com/specimen/Bricolage+Grotesque
-Bruno Ace,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1484,236,No,2012-11-15,2025-09-08,https://fonts.google.com/specimen/Bruno+Ace
-Bruno Ace SC,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1399,938,No,2012-11-15,2025-09-11,https://fonts.google.com/specimen/Bruno+Ace+SC
-Brygada 1918,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Capitalics | Mateusz Machalski | Borys Kosmynka | Ania Wieluńska | Przemysław Hoffer,631,944,No,2021-01-27,2025-09-02,https://fonts.google.com/specimen/Brygada+1918
-Bubblegum Sans,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,755,1291,No,2011-11-23,2025-09-02,https://fonts.google.com/specimen/Bubblegum+Sans
-Bubbler One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Brenda Gallo,891,195,No,2012-05-09,2025-09-10,https://fonts.google.com/specimen/Bubbler+One
-Buda,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,300,,latin,Adèle Antignac,1020,1829,No,2010-12-20,2025-09-08,https://fonts.google.com/specimen/Buda
-Buenard,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Gustavo Ibarra,993,2105,No,2011-12-19,2025-09-08,https://fonts.google.com/specimen/Buenard
-Bungee,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese popular widely-used,400,,latin | latin-ext | vietnamese,David Jonathan Ross,74,2147,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Bungee
-Bungee Hairline,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,David Jonathan Ross,1435,698,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Bungee+Hairline
-Bungee Inline,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,David Jonathan Ross,789,1316,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Bungee+Inline
-Bungee Outline,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,David Jonathan Ross,1525,374,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Bungee+Outline
-Bungee Shade,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,David Jonathan Ross,705,89,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Bungee+Shade
-Bungee Spice,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,David Jonathan Ross,803,1435,No,2021-12-07,2025-06-02,https://fonts.google.com/specimen/Bungee+Spice
-Bungee Tint,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,David Jonathan Ross,1632,1755,No,2024-08-09,2025-05-30,https://fonts.google.com/specimen/Bungee+Tint
-Butcherman,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Typomondo,1608,1984,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Butcherman
-Butterfly Kids,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Tart Workshop,1658,2019,No,2012-02-15,2025-09-08,https://fonts.google.com/specimen/Butterfly+Kids
-Bytesized,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Baltdev,1839,1186,No,2025-03-13,2025-05-30,https://fonts.google.com/specimen/Bytesized
-Cabin,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese popular widely-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wdth: - | wght: -,latin | latin-ext | vietnamese,Impallari Type | Rodrigo Fuenzalida,97,1211,No,2011-03-23,2025-09-11,https://fonts.google.com/specimen/Cabin
-Cabin Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese,400 | 500 | 600 | 700,,latin | latin-ext | vietnamese,Impallari Type,474,1892,No,2011-11-30,2025-09-08,https://fonts.google.com/specimen/Cabin+Condensed
-Cabin Sketch,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400 | 700,,latin,Impallari Type,582,1667,No,2011-03-16,2025-09-10,https://fonts.google.com/specimen/Cabin+Sketch
-Cactus Classical Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone chinese traditional russian cyrillic slavic english western european extended-latin european vietnamese,400,,chinese-traditional | cyrillic | latin | latin-ext | vietnamese,Henry Chan | Tian Haidong | Moonlit Owen,1294,1341,No,2024-05-14,2026-01-06,https://fonts.google.com/specimen/Cactus+Classical+Serif
-Caesar Dressing,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Open Window,1193,649,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Caesar+Dressing
-Cagliostro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,MADType,1407,2137,No,2011-11-30,2025-09-11,https://fonts.google.com/specimen/Cagliostro
-Cairo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant arabic RTL middle-east english western european extended-latin european popular widely-used,1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,slnt: - | wght: -,arabic | latin | latin-ext,Mohamed Gaber | Accademia di Belle Arti di Urbino,71,169,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Cairo
-Cairo Play,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant arabic RTL middle-east english western european extended-latin european,1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,slnt: - | wght: -,arabic | latin | latin-ext,Mohamed Gaber | Accademia di Belle Arti di Urbino,581,632,No,2022-08-05,2025-09-16,https://fonts.google.com/specimen/Cairo+Play
-Cal Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Mark Davis | Cal.com Inc.,730,166,No,2025-03-18,2025-06-09,https://fonts.google.com/specimen/Cal+Sans
-Caladea,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european,400 | 400i | 700 | 700i,,latin | latin-ext,Andrés Torresi | Carolina Giovanolli,634,429,No,2020-02-11,2025-09-11,https://fonts.google.com/specimen/Caladea
-Calistoga,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Yvonne Schüttler | Sorkin Type | Eben Sorkin,434,1371,No,2019-11-04,2025-09-16,https://fonts.google.com/specimen/Calistoga
-Calligraffitti,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Open Window,696,955,No,2011-01-06,2025-09-08,https://fonts.google.com/specimen/Calligraffitti
-Cambay,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic hindi devanagari indian english western european extended-latin european,400 | 400i | 700 | 700i,,devanagari | latin | latin-ext,Pooja Saxena,837,873,No,2015-01-28,2025-09-11,https://fonts.google.com/specimen/Cambay
-Cambo,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Huerta Tipográfica,987,1256,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Cambo
-Candal,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Vernon Adams,623,787,No,2011-03-09,2025-09-10,https://fonts.google.com/specimen/Candal
-Cantarell,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european well-known common,400 | 400i | 700 | 700i,,latin | latin-ext,Dave Crossland,298,1004,No,2010-05-10,2025-09-04,https://fonts.google.com/specimen/Cantarell
-Cantata One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Joana Correia,663,1309,No,2012-02-29,2025-09-10,https://fonts.google.com/specimen/Cantata+One
-Cantora One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Impallari Type,1149,1749,No,2012-07-30,2025-09-10,https://fonts.google.com/specimen/Cantora+One
-Caprasimo,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,The DocRepair Project | Phaedra Charles | Flavia Zimbardi,624,590,No,2023-06-14,2025-06-02,https://fonts.google.com/specimen/Caprasimo
-Capriola,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Viktoriya Grabowska,870,764,No,2012-07-10,2025-09-16,https://fonts.google.com/specimen/Capriola
-Caramel,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1486,1167,No,2021-08-06,2025-09-02,https://fonts.google.com/specimen/Caramel
-Carattere,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1110,1149,No,2021-08-26,2025-09-11,https://fonts.google.com/specimen/Carattere
-Cardo,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic greek greek extended hebrew RTL israeli english western european extended-latin european multilingual international well-known common,400 | 400i | 700,,gothic | greek | greek-ext | hebrew | latin | latin-ext | old-italic | runic,David Perry,232,1625,No,2011-09-07,2025-09-08,https://fonts.google.com/specimen/Cardo
-Carlito,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Łukasz Dziedzic,741,1924,No,2023-04-19,2025-09-08,https://fonts.google.com/specimen/Carlito
-Carme,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Rubén Prol,1106,1021,No,2011-07-27,2025-09-10,https://fonts.google.com/specimen/Carme
-Carrois Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Carrois Apostrophe,805,1263,No,2012-09-30,2025-09-10,https://fonts.google.com/specimen/Carrois+Gothic
-Carrois Gothic SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Carrois Apostrophe,1355,1928,No,2012-09-30,2025-09-08,https://fonts.google.com/specimen/Carrois+Gothic+SC
-Carter One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Vernon Adams,461,678,No,2011-05-04,2025-09-10,https://fonts.google.com/specimen/Carter+One
-Cascadia Code,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight arabic RTL middle-east russian cyrillic slavic cyrillic extended greek hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,arabic | braille | cyrillic | cyrillic-ext | greek | hebrew | latin | latin-ext | symbols2 | vietnamese,Aaron Bell | Mohamad Dakak | Viktoriya Grabowska | Liron Lavi Turkenich,1238,55,No,2025-04-17,2025-09-16,https://fonts.google.com/specimen/Cascadia+Code
-Cascadia Mono,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight arabic RTL middle-east russian cyrillic slavic cyrillic extended greek hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,arabic | braille | cyrillic | cyrillic-ext | greek | hebrew | latin | latin-ext | symbols2 | vietnamese,Aaron Bell | Mohamad Dakak | Viktoriya Grabowska | Liron Lavi Turkenich,423,13,No,2025-04-17,2025-09-08,https://fonts.google.com/specimen/Cascadia+Mono
-Castoro,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Tiro Typeworks | John Hudson | Paul Hanslow | Kaja Słojewska,603,1171,No,2020-11-03,2025-09-16,https://fonts.google.com/specimen/Castoro
-Castoro Titling,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Tiro Typeworks | John Hudson,1447,2180,No,2023-03-14,2025-09-10,https://fonts.google.com/specimen/Castoro+Titling
-Catamaran,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european tamil indian well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | tamil,Pria Ravichandran,204,1655,No,2015-07-08,2025-09-10,https://fonts.google.com/specimen/Catamaran
-Caudex,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic greek greek extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 700 | 700i,,greek | greek-ext | latin | latin-ext | runic | vietnamese,Nidud,625,891,No,2011-05-18,2025-09-04,https://fonts.google.com/specimen/Caudex
-Cause,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext,Saurabh Sharma,1957,1840,No,2025-12-08,2026-01-20,https://fonts.google.com/specimen/Cause
-Caveat,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european popular widely-used,400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | latin | latin-ext,Impallari Type,123,1357,No,2015-09-23,2025-09-04,https://fonts.google.com/specimen/Caveat
-Caveat Brush,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Impallari Type,460,1540,No,2015-09-23,2025-09-04,https://fonts.google.com/specimen/Caveat+Brush
-Cedarville Cursive,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Kimberly Geswein,454,1429,No,2011-06-08,2025-09-16,https://fonts.google.com/specimen/Cedarville+Cursive
-Ceviche One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Miguel Hernandez,1134,1634,No,2011-12-07,2025-09-08,https://fonts.google.com/specimen/Ceviche+One
-Chakra Petch,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic english western european extended-latin european thai southeast-asia vietnamese well-known common,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,153,472,No,2018-09-10,2025-09-16,https://fonts.google.com/specimen/Chakra+Petch
-Changa,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european well-known common,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,arabic | latin | latin-ext,Eduardo Tunni,240,350,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Changa
-Changa One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic english western european popular widely-used,400 | 400i,,latin,Eduardo Tunni,96,483,No,2011-11-30,2025-09-10,https://fonts.google.com/specimen/Changa+One
-Chango,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Fontstage,347,1848,No,2011-12-13,2025-09-04,https://fonts.google.com/specimen/Chango
-Charis SIL,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,SIL International,642,76,No,2022-05-12,2025-05-30,https://fonts.google.com/specimen/Charis+SIL
-Charm,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european thai southeast-asia vietnamese,400 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,533,642,No,2018-12-11,2025-09-16,https://fonts.google.com/specimen/Charm
-Charmonman,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european thai southeast-asia vietnamese,400 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,1053,1355,No,2018-09-10,2025-09-16,https://fonts.google.com/specimen/Charmonman
-Chathura,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian,100 | 300 | 400 | 700 | 800,,latin | telugu,Appaji Ambarisha Darbha,1454,2202,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Chathura
-Chau Philomene One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Vicente Lamónaca,1168,716,No,2012-04-04,2025-09-16,https://fonts.google.com/specimen/Chau+Philomene+One
-Chela One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Miguel Hernandez,1497,2109,No,2012-10-05,2025-09-04,https://fonts.google.com/specimen/Chela+One
-Chelsea Market,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Tart Workshop,832,477,No,2012-01-04,2025-09-16,https://fonts.google.com/specimen/Chelsea+Market
-Chenla,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention khmer cambodian,400,,khmer,Danh Hong,1646,1964,No,2011-03-02,2022-09-21,https://fonts.google.com/specimen/Chenla
-Cherish,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1700,297,No,2021-08-13,2025-09-11,https://fonts.google.com/specimen/Cherish
-Cherry Bomb One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention japanese kanji hiragana katakana english western european extended-latin european vietnamese,400,,japanese | latin | latin-ext | vietnamese,Satsuyako,808,690,No,2023-05-23,2025-09-16,https://fonts.google.com/specimen/Cherry+Bomb+One
-Cherry Cream Soda,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Font Diner,928,405,No,2011-01-06,2025-05-30,https://fonts.google.com/specimen/Cherry+Cream+Soda
-Cherry Swash,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Nataliya Kasatkina,1178,2260,No,2012-10-24,2025-09-16,https://fonts.google.com/specimen/Cherry+Swash
-Chewy,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Sideshow,535,1571,No,2011-01-06,2025-05-30,https://fonts.google.com/specimen/Chewy
-Chicle,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1137,2044,No,2011-11-30,2025-09-10,https://fonts.google.com/specimen/Chicle
-Chilanka,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european malayalam indian,400,,latin | latin-ext | malayalam,SMC | Santhosh Thottingal,1210,85,No,2016-05-10,2025-09-16,https://fonts.google.com/specimen/Chilanka
-Chiron GoRound TC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight chinese traditional russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese multilingual international,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-traditional | cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Tamcy,1474,52,No,2025-06-20,2026-01-06,https://fonts.google.com/specimen/Chiron+GoRound+TC
-Chiron Hei HK,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight chinese traditional russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,chinese-traditional | cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | symbols2 | vietnamese,Tamcy,1612,99,No,2025-05-07,2026-01-06,https://fonts.google.com/specimen/Chiron+Hei+HK
-Chiron Sung HK,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,chinese-hongkong | cyrillic | cyrillic-ext | greek | latin | latin-ext | symbols2 | vietnamese,Tamcy,1705,123,No,2025-06-11,2026-01-06,https://fonts.google.com/specimen/Chiron+Sung+HK
-Chivo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,234,2051,No,2011-12-07,2025-09-10,https://fonts.google.com/specimen/Chivo
-Chivo Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,698,1711,No,2022-11-02,2025-09-10,https://fonts.google.com/specimen/Chivo+Mono
-Chocolate Classical Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese traditional russian cyrillic slavic english western european extended-latin european vietnamese,400,,chinese-traditional | cyrillic | latin | latin-ext | vietnamese,Moonlit Owen,1372,1172,No,2024-05-14,2026-01-06,https://fonts.google.com/specimen/Chocolate+Classical+Sans
-Chokokutai,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention japanese kanji hiragana katakana english western european extended-latin european vietnamese,400,,japanese | latin | latin-ext | vietnamese,Font Zone 108,1698,835,No,2023-05-23,2025-09-08,https://fonts.google.com/specimen/Chokokutai
-Chonburi,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european thai southeast-asia vietnamese,400,,latin | latin-ext | thai | vietnamese,Cadson Demak,536,255,No,2015-07-08,2025-09-04,https://fonts.google.com/specimen/Chonburi
-Cinzel,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european well-known common,400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext,Natanael Gama,151,618,No,2012-10-24,2025-09-10,https://fonts.google.com/specimen/Cinzel
-Cinzel Decorative,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700 | 900,,latin | latin-ext,Natanael Gama,404,925,No,2012-10-24,2025-09-08,https://fonts.google.com/specimen/Cinzel+Decorative
-Clicker Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1069,1861,No,2012-11-11,2025-09-11,https://fonts.google.com/specimen/Clicker+Script
-Climate Crisis,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european,400,YEAR: -,latin | latin-ext,Daniel Coull | Eino Korkala,1423,1842,No,2022-09-30,2025-09-02,https://fonts.google.com/specimen/Climate+Crisis
-Coda,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400 | 800,,latin | latin-ext,Vernon Adams,560,1844,No,2010-12-07,2025-09-11,https://fonts.google.com/specimen/Coda
-Codystar,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,300 | 400,,latin | latin-ext,Neapolitan,1018,1326,No,2012-03-14,2025-09-11,https://fonts.google.com/specimen/Codystar
-Coiny,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european tamil indian vietnamese,400,,latin | latin-ext | tamil | vietnamese,Marcelo Magalhães,782,233,No,2016-06-20,2025-09-16,https://fonts.google.com/specimen/Coiny
-Combo,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1694,1608,No,2012-09-23,2025-09-11,https://fonts.google.com/specimen/Combo
-Comfortaa,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international popular widely-used,300 | 400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Johan Aakerlund,122,1226,No,2011-08-10,2025-09-08,https://fonts.google.com/specimen/Comfortaa
-Comforter,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal russian cyrillic slavic english western european extended-latin european vietnamese,400,,cyrillic | latin | latin-ext | vietnamese,Robert Leuschke,1314,1992,No,2021-09-28,2025-09-10,https://fonts.google.com/specimen/Comforter
-Comforter Brush,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european vietnamese,400,,cyrillic | latin | latin-ext | vietnamese,Robert Leuschke,1322,2229,No,2021-09-16,2025-09-04,https://fonts.google.com/specimen/Comforter+Brush
-Comic Neue,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic english western european well-known common,300 | 300i | 400 | 400i | 700 | 700i,,latin,Craig Rozynski | Hrant Papazian,239,541,No,2020-03-12,2025-09-16,https://fonts.google.com/specimen/Comic+Neue
-Comic Relief,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic greek english western european extended-latin european,400 | 700,,cyrillic | greek | latin | latin-ext,Jeff Davis,1165,1954,No,2025-04-17,2025-04-23,https://fonts.google.com/specimen/Comic+Relief
-Coming Soon,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Open Window,660,1652,No,2011-01-06,2025-09-08,https://fonts.google.com/specimen/Coming+Soon
-Comme,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext,Vernon Adams,1219,1317,No,2023-03-28,2025-09-11,https://fonts.google.com/specimen/Comme
-Commissioner,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,FLAR: - | VOLM: - | slnt: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Kostas Bartsokas,336,2125,No,2020-07-20,2025-09-10,https://fonts.google.com/specimen/Commissioner
-Concert One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Johan Kallas | Mihkel Virkus,329,753,No,2011-11-23,2025-09-11,https://fonts.google.com/specimen/Concert+One
-Condiment,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1430,1763,No,2012-01-25,2025-09-11,https://fonts.google.com/specimen/Condiment
-Content,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention khmer cambodian,400 | 700,,khmer,Danh Hong,1360,1969,No,2011-03-02,2024-12-04,https://fonts.google.com/specimen/Content
-Contrail One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Riccardo De Franceschi,784,1264,No,2011-10-26,2025-09-08,https://fonts.google.com/specimen/Contrail+One
-Convergence,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Nicolás Silva | John Vargas Beltrán,1188,1643,No,2011-11-09,2025-09-08,https://fonts.google.com/specimen/Convergence
-Cookie,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Ania Kruk,324,342,No,2011-10-12,2025-09-16,https://fonts.google.com/specimen/Cookie
-Copse,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Dan Rhatigan,818,907,No,2010-12-15,2025-09-08,https://fonts.google.com/specimen/Copse
-Coral Pixels,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Tanukizamurai,1813,488,No,2025-04-17,2025-04-23,https://fonts.google.com/specimen/Coral+Pixels
-Corben,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Vernon Adams,563,893,No,2010-12-20,2025-09-10,https://fonts.google.com/specimen/Corben
-Corinthia,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | vietnamese,Robert Leuschke,829,860,No,2021-08-26,2025-09-04,https://fonts.google.com/specimen/Corinthia
-Cormorant,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Christian Thalmann,191,839,No,2016-06-15,2025-09-04,https://fonts.google.com/specimen/Cormorant
-Cormorant Garamond,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Christian Thalmann,113,731,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Cormorant+Garamond
-Cormorant Infant,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Christian Thalmann,455,666,No,2016-06-15,2025-09-04,https://fonts.google.com/specimen/Cormorant+Infant
-Cormorant SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Christian Thalmann,729,1214,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Cormorant+SC
-Cormorant Unicase,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Christian Thalmann,792,1578,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Cormorant+Unicase
-Cormorant Upright,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,,latin | latin-ext | vietnamese,Christian Thalmann,607,892,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Cormorant+Upright
-Cossette Texte,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400 | 700,,latin | latin-ext,Cossette,1987,75,No,2025-08-25,2025-10-29,https://fonts.google.com/specimen/Cossette+Texte
-Cossette Titre,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400 | 700,,latin | latin-ext,Cossette,1712,288,No,2025-08-25,2025-10-29,https://fonts.google.com/specimen/Cossette+Titre
-Courgette,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european well-known common,400,,latin | latin-ext,Karolina Lach,259,1352,No,2012-07-10,2025-09-16,https://fonts.google.com/specimen/Courgette
-Courier Prime,Monospace,Serif,Monospace,code developer technical fixed-width terminal programming transitional oldstyle didone mono fixed-width tabular data code italic english western european extended-latin european well-known common,400 | 400i | 700 | 700i,,latin | latin-ext,Alan Dague-Greene,235,809,No,2019-12-05,2025-09-11,https://fonts.google.com/specimen/Courier+Prime
-Cousine,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | latin | latin-ext | vietnamese,Steve Matteson,441,1669,No,2010-11-18,2025-09-08,https://fonts.google.com/specimen/Cousine
-Coustard,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400 | 900,,latin,Vernon Adams,850,309,No,2011-08-10,2025-09-08,https://fonts.google.com/specimen/Coustard
-Covered By Your Grace,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,521,1477,No,2010-12-07,2025-09-10,https://fonts.google.com/specimen/Covered+By+Your+Grace
-Crafty Girls,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Tart Workshop,886,444,No,2011-01-06,2025-05-30,https://fonts.google.com/specimen/Crafty+Girls
-Creepster,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european well-known common,400,,latin,Sideshow,208,1674,No,2011-12-19,2025-05-30,https://fonts.google.com/specimen/Creepster
-Crete Round,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european well-known common,400 | 400i,,latin | latin-ext,TypeTogether,274,1012,No,2011-12-19,2025-09-08,https://fonts.google.com/specimen/Crete+Round
-Crimson Pro,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Jacques Le Bailly,253,1627,No,2018-12-04,2025-09-11,https://fonts.google.com/specimen/Crimson+Pro
-Crimson Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european vietnamese popular widely-used,400 | 400i | 600 | 600i | 700 | 700i,,latin | latin-ext | vietnamese,Sebastian Kosch,124,514,No,2011-01-26,2025-05-30,https://fonts.google.com/specimen/Crimson+Text
-Croissant One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,761,1885,No,2012-11-12,2025-09-16,https://fonts.google.com/specimen/Croissant+One
-Crushed,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1093,1697,No,2011-01-06,2025-09-08,https://fonts.google.com/specimen/Crushed
-Cuprum,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Jovanny Lemonad,429,725,No,2012-04-04,2025-09-08,https://fonts.google.com/specimen/Cuprum
-Cute Font,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,TypoDesign Lab. Inc,1236,149,No,2018-02-23,2025-09-04,https://fonts.google.com/specimen/Cute+Font
-Cutive,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,959,1921,No,2012-02-29,2025-09-11,https://fonts.google.com/specimen/Cutive
-Cutive Mono,Monospace,Serif,Monospace,code developer technical fixed-width terminal programming transitional oldstyle didone mono fixed-width tabular data code english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,654,1735,No,2012-10-26,2025-09-11,https://fonts.google.com/specimen/Cutive+Mono
-DM Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic english western european extended-latin european well-known common,300 | 300i | 400 | 400i | 500 | 500i,,latin | latin-ext,Colophon Foundry,157,282,No,2020-04-15,2025-09-16,https://fonts.google.com/specimen/DM+Mono
-DM Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european top-popular trending most-used,100 | 1000 | 1000i | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,latin | latin-ext,Colophon Foundry,26,333,No,2019-06-11,2025-09-11,https://fonts.google.com/specimen/DM+Sans
-DM Serif Display,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european popular widely-used,400 | 400i,,latin | latin-ext,Colophon Foundry,130,568,No,2019-06-11,2025-09-11,https://fonts.google.com/specimen/DM+Serif+Display
-DM Serif Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european well-known common,400 | 400i,,latin | latin-ext,Colophon Foundry,218,107,No,2019-06-11,2025-09-02,https://fonts.google.com/specimen/DM+Serif+Text
-Dai Banna SIL,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | new-tai-lue,SIL International,1565,258,No,2023-07-20,2025-05-30,https://fonts.google.com/specimen/Dai+Banna+SIL
-Damion,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,490,1257,No,2011-04-27,2025-05-30,https://fonts.google.com/specimen/Damion
-Dancing Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Impallari Type,70,707,No,2011-05-18,2025-09-08,https://fonts.google.com/specimen/Dancing+Script
-Danfo,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,ELSH: -,latin | latin-ext | vietnamese,Afrotype | Seyi Olusanya | Eyiyemi Adegbite | David Udoh | Mirko Velimirović,1652,801,No,2024-03-14,2025-09-04,https://fonts.google.com/specimen/Danfo
-Dangrek,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1288,817,No,2011-03-02,2025-09-11,https://fonts.google.com/specimen/Dangrek
-Darker Grotesque,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Gabriel Lam | ViệtAnh Nguyễn,541,663,No,2019-06-19,2025-09-10,https://fonts.google.com/specimen/Darker+Grotesque
-Darumadrop One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Maniackers Design,1263,2049,No,2020-12-13,2025-09-08,https://fonts.google.com/specimen/Darumadrop+One
-David Libre,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,400 | 500 | 700,,hebrew | latin | latin-ext | math | symbols | vietnamese,Monotype Imaging Inc. | SIL International | Meir Sadan,840,301,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/David+Libre
-Dawning of a New Day,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Kimberly Geswein,676,1684,No,2011-04-14,2025-09-16,https://fonts.google.com/specimen/Dawning+of+a+New+Day
-Days One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european,400,,cyrillic | latin,Jovanny Lemonad,470,147,No,2011-08-17,2025-04-23,https://fonts.google.com/specimen/Days+One
-Dekko,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Sorkin Type,1413,1834,No,2015-01-28,2025-09-08,https://fonts.google.com/specimen/Dekko
-Dela Gothic One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic greek japanese kanji hiragana katakana english western european extended-latin european vietnamese multilingual international,400,,cyrillic | greek | japanese | latin | latin-ext | vietnamese,artakana,415,1777,No,2020-12-13,2025-09-16,https://fonts.google.com/specimen/Dela+Gothic+One
-Delicious Handrawn,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Agung Rohmat,1025,1851,No,2023-01-05,2025-09-11,https://fonts.google.com/specimen/Delicious+Handrawn
-Delius,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european well-known common,400,,latin,Natalia Raices,267,1175,No,2011-07-27,2025-09-16,https://fonts.google.com/specimen/Delius
-Delius Swash Caps,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,Natalia Raices,1183,1220,No,2011-08-03,2025-09-04,https://fonts.google.com/specimen/Delius+Swash+Caps
-Delius Unicase,Handwriting,Sans Serif,Display | Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400 | 700,,latin,Natalia Raices,922,1913,No,2011-10-12,2025-09-10,https://fonts.google.com/specimen/Delius+Unicase
-Della Respira,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Nathan Willis,895,1403,No,2012-04-04,2025-09-16,https://fonts.google.com/specimen/Della+Respira
-Denk One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic-ext | latin | latin-ext | vietnamese,Sorkin Type,906,187,No,2012-12-13,2025-09-04,https://fonts.google.com/specimen/Denk+One
-Devonshire,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1282,320,No,2011-11-16,2025-09-10,https://fonts.google.com/specimen/Devonshire
-Dhurjati,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,1590,783,No,2014-12-10,2025-09-10,https://fonts.google.com/specimen/Dhurjati
-Didact Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext,Daniel Johnson | Cyreal,308,1323,No,2011-05-04,2025-09-16,https://fonts.google.com/specimen/Didact+Gothic
-Diphylleia,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone korean hangul english western european extended-latin european,400,,korean | latin | latin-ext,Minha Hyung | JAMO,1584,967,No,2023-06-05,2025-05-30,https://fonts.google.com/specimen/Diphylleia
-Diplomata,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1524,1847,No,2012-01-25,2025-09-02,https://fonts.google.com/specimen/Diplomata
-Diplomata SC,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1585,2020,No,2012-01-25,2025-09-04,https://fonts.google.com/specimen/Diplomata+SC
-Do Hyeon,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,Woowahan Brothers,540,1177,No,2018-02-24,2025-09-11,https://fonts.google.com/specimen/Do+Hyeon
-Dokdo,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,FONTRIX,1079,747,No,2018-02-23,2025-09-16,https://fonts.google.com/specimen/Dokdo
-Domine,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Impallari Type,149,1441,No,2012-11-30,2025-09-11,https://fonts.google.com/specimen/Domine
-Donegal One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Gary Lonergan,1457,861,No,2012-12-13,2025-09-08,https://fonts.google.com/specimen/Donegal+One
-Dongle,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european extended-latin european vietnamese,300 | 400 | 700,,korean | latin | latin-ext | vietnamese,Yanghee Ryu,668,734,No,2021-06-14,2025-09-16,https://fonts.google.com/specimen/Dongle
-Doppio One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Szymon Celej,1028,1731,No,2012-02-22,2025-09-10,https://fonts.google.com/specimen/Doppio+One
-Dorsa,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Santiago Orozco,1381,1427,No,2011-08-31,2025-09-10,https://fonts.google.com/specimen/Dorsa
-Dosis,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | vietnamese,Impallari Type,87,1397,No,2012-03-20,2025-09-11,https://fonts.google.com/specimen/Dosis
-DotGothic16,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Fontworks Inc.,690,719,No,2020-12-15,2025-09-11,https://fonts.google.com/specimen/DotGothic16
-Doto,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,ROND: - | wght: -,latin | latin-ext,Óliver Lalan,1176,2101,No,2024-11-05,2025-09-11,https://fonts.google.com/specimen/Doto
-Dr Sugiyama,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1530,1577,No,2011-11-30,2025-09-04,https://fonts.google.com/specimen/Dr+Sugiyama
-Duru Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Onur Yazıcıgil,1104,1315,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Duru+Sans
-DynaPuff,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive variable-weight variable-width cyrillic extended english western european extended-latin european,400 | 500 | 600 | 700,wdth: - | wght: -,cyrillic-ext | latin | latin-ext,Toshi Omagari | Jennifer Daniel,702,627,No,2022-05-18,2025-09-04,https://fonts.google.com/specimen/DynaPuff
-Dynalight,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1068,1553,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Dynalight
-EB Garamond,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international popular widely-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Georg Duffner | Octavio Pardo,83,1544,No,2011-03-23,2025-09-16,https://fonts.google.com/specimen/EB+Garamond
-Eagle Lake,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1155,1977,No,2012-07-11,2025-09-16,https://fonts.google.com/specimen/Eagle+Lake
-East Sea Dokdo,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,YoonDesign Inc,1229,1898,No,2018-03-12,2025-09-16,https://fonts.google.com/specimen/East+Sea+Dokdo
-Eater,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Typomondo,359,1888,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Eater
-Economica,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i | 700 | 700i,,latin | latin-ext,Vicente Lamónaca,493,1324,No,2012-02-29,2025-09-04,https://fonts.google.com/specimen/Economica
-Eczar,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight hindi devanagari indian greek greek extended english western european extended-latin european,400 | 500 | 600 | 700 | 800,wght: -,devanagari | greek | greek-ext | latin | latin-ext,Rosetta | Vaibhav Singh,301,990,No,2015-06-03,2025-09-16,https://fonts.google.com/specimen/Eczar
-Edu AU VIC WA NT Arrows,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1892,2245,No,2024-08-11,2025-09-11,https://fonts.google.com/specimen/Edu+AU+VIC+WA+NT+Arrows
-Edu AU VIC WA NT Dots,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1671,924,No,2024-09-18,2025-09-10,https://fonts.google.com/specimen/Edu+AU+VIC+WA+NT+Dots
-Edu AU VIC WA NT Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1822,111,No,2024-09-18,2025-09-08,https://fonts.google.com/specimen/Edu+AU+VIC+WA+NT+Guides
-Edu AU VIC WA NT Hand,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1467,2159,No,2024-07-10,2025-09-16,https://fonts.google.com/specimen/Edu+AU+VIC+WA+NT+Hand
-Edu AU VIC WA NT Pre,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1688,2288,No,2024-11-05,2025-09-11,https://fonts.google.com/specimen/Edu+AU+VIC+WA+NT+Pre
-Edu NSW ACT Cursive,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1264,148,No,2025-05-28,2025-09-04,https://fonts.google.com/specimen/Edu+NSW+ACT+Cursive
-Edu NSW ACT Foundation,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european,400 | 500 | 600 | 700,wght: -,latin,Tina Anderson | Corey Anderson,1664,976,No,2022-06-09,2025-09-11,https://fonts.google.com/specimen/Edu+NSW+ACT+Foundation
-Edu NSW ACT Hand Pre,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1831,2285,No,2025-05-28,2025-09-10,https://fonts.google.com/specimen/Edu+NSW+ACT+Hand+Pre
-Edu QLD Beginner,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european,400 | 500 | 600 | 700,wght: -,latin,Tina Anderson | Corey Anderson,1820,1705,No,2022-06-21,2025-09-16,https://fonts.google.com/specimen/Edu+QLD+Beginner
-Edu QLD Hand,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Tina Anderson | Corey Anderson,1945,2002,No,2025-05-28,2025-09-11,https://fonts.google.com/specimen/Edu+QLD+Hand
-Edu SA Beginner,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european,400 | 500 | 600 | 700,wght: -,latin,Tina Anderson | Corey Anderson,733,355,No,2022-06-09,2025-09-16,https://fonts.google.com/specimen/Edu+SA+Beginner
-Edu SA Hand,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1830,2121,No,2025-05-28,2025-09-08,https://fonts.google.com/specimen/Edu+SA+Hand
-Edu TAS Beginner,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european,400 | 500 | 600 | 700,wght: -,latin,Tina Anderson | Corey Anderson,1158,281,No,2022-06-09,2025-09-16,https://fonts.google.com/specimen/Edu+TAS+Beginner
-Edu VIC WA NT Beginner,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european,400 | 500 | 600 | 700,wght: -,latin,Tina Anderson | Corey Anderson,1604,1572,No,2022-06-09,2025-09-11,https://fonts.google.com/specimen/Edu+VIC+WA+NT+Beginner
-Edu VIC WA NT Hand,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1962,2036,No,2025-05-28,2025-09-08,https://fonts.google.com/specimen/Edu+VIC+WA+NT+Hand
-Edu VIC WA NT Hand Pre,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Tina Anderson | Corey Anderson,1956,2086,No,2025-05-28,2025-09-11,https://fonts.google.com/specimen/Edu+VIC+WA+NT+Hand+Pre
-El Messiri,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight arabic RTL middle-east russian cyrillic slavic english western european extended-latin european,400 | 500 | 600 | 700,wght: -,arabic | cyrillic | latin | latin-ext,Mohamed Gaber | Jovanny Lemonad,323,1583,No,2016-05-31,2025-09-11,https://fonts.google.com/specimen/El+Messiri
-Electrolize,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Gaslight,701,2203,No,2011-12-07,2025-09-11,https://fonts.google.com/specimen/Electrolize
-Elms Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Amarachi Nwauwa | Gida Type Studio,1721,2208,No,2025-11-03,2025-12-10,https://fonts.google.com/specimen/Elms+Sans
-Elsie,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 900,,latin | latin-ext,Alejandro Inler,952,206,No,2012-12-13,2025-09-04,https://fonts.google.com/specimen/Elsie
-Elsie Swash Caps,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 900,,latin | latin-ext,Alejandro Inler,1493,2242,No,2012-12-13,2025-09-16,https://fonts.google.com/specimen/Elsie+Swash+Caps
-Emblema One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Riccardo De Franceschi,1543,703,No,2012-01-18,2025-09-10,https://fonts.google.com/specimen/Emblema+One
-Emilys Candy,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Neapolitan,1127,2043,No,2012-02-29,2025-09-10,https://fonts.google.com/specimen/Emilys+Candy
-Encode Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | vietnamese,Impallari Type | Andres Torresi | Jacques Le Bailly,193,603,No,2017-02-08,2025-09-04,https://fonts.google.com/specimen/Encode+Sans
-Encode Sans Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Impallari Type | Andres Torresi | Jacques Le Bailly,335,2211,No,2017-02-08,2025-09-11,https://fonts.google.com/specimen/Encode+Sans+Condensed
-Encode Sans Expanded,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Impallari Type | Andres Torresi | Jacques Le Bailly,719,1434,No,2017-02-08,2025-09-16,https://fonts.google.com/specimen/Encode+Sans+Expanded
-Encode Sans SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | vietnamese,Impallari Type | Andres Torresi | Jacques Le Bailly,1501,1468,No,2020-06-24,2025-09-11,https://fonts.google.com/specimen/Encode+Sans+SC
-Encode Sans Semi Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Impallari Type | Andres Torresi | Jacques Le Bailly,777,610,No,2017-02-08,2025-09-11,https://fonts.google.com/specimen/Encode+Sans+Semi+Condensed
-Encode Sans Semi Expanded,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Impallari Type | Andres Torresi | Jacques Le Bailly,835,183,No,2017-02-08,2025-09-08,https://fonts.google.com/specimen/Encode+Sans+Semi+Expanded
-Engagement,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1354,1843,No,2011-12-07,2025-09-02,https://fonts.google.com/specimen/Engagement
-Englebert,Sans Serif,Sans Serif,Handwriting | Display,clean modern minimal professional readable neutral geometric humanist grotesque script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1221,2009,No,2012-11-02,2025-09-02,https://fonts.google.com/specimen/Englebert
-Enriqueta,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 500 | 600 | 700,,latin | latin-ext,FontFuror,643,1173,No,2011-12-13,2025-09-16,https://fonts.google.com/specimen/Enriqueta
-Ephesis,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,471,37,No,2021-08-06,2025-09-10,https://fonts.google.com/specimen/Ephesis
-Epilogue,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Tyler Finck | ETC,179,1396,No,2020-06-26,2025-09-04,https://fonts.google.com/specimen/Epilogue
-Epunda Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Typofactur,1576,1947,No,2025-08-25,2025-09-04,https://fonts.google.com/specimen/Epunda+Sans
-Epunda Slab,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Typofactur,1818,1931,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Epunda+Slab
-Erica One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Miguel Hernandez,1272,1751,No,2012-01-18,2025-09-16,https://fonts.google.com/specimen/Erica+One
-Esteban,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Angélica Díaz,949,933,No,2012-01-11,2025-09-16,https://fonts.google.com/specimen/Esteban
-Estonia,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1716,274,No,2021-08-26,2025-09-11,https://fonts.google.com/specimen/Estonia
-Euphoria Script,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sabrina Mariela Lopez,894,661,No,2012-02-08,2025-09-04,https://fonts.google.com/specimen/Euphoria+Script
-Ewert,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Johan Kallas | Mihkel Virkus,1520,2054,No,2012-02-08,2025-09-10,https://fonts.google.com/specimen/Ewert
-Exile,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Bartłomiej Rózga,1841,2006,No,2025-05-12,2025-05-13,https://fonts.google.com/specimen/Exile
-Exo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Natanael Gama | Robin Mientjes,173,1703,No,2012-02-08,2025-09-10,https://fonts.google.com/specimen/Exo
-Exo 2,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Natanael Gama,114,1400,No,2013-12-04,2025-09-02,https://fonts.google.com/specimen/Exo+2
-Expletus Sans,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Designtown,917,1527,No,2011-05-04,2025-09-11,https://fonts.google.com/specimen/Expletus+Sans
-Explora,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,cherokee | latin | latin-ext | vietnamese,Robert Leuschke,1677,2275,No,2021-08-10,2025-09-04,https://fonts.google.com/specimen/Explora
-Faculty Glyphic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Koto Studio,1321,1837,No,2024-11-05,2025-05-30,https://fonts.google.com/specimen/Faculty+Glyphic
-Fahkwang,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,592,756,No,2018-09-10,2025-09-16,https://fonts.google.com/specimen/Fahkwang
-Familjen Grotesk,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Familjen STHLM AB,647,1936,No,2022-03-02,2025-09-11,https://fonts.google.com/specimen/Familjen+Grotesk
-Fanwood Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Barry Schwartz,867,2053,No,2011-08-31,2025-09-10,https://fonts.google.com/specimen/Fanwood+Text
-Farro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,300 | 400 | 500 | 700,,latin | latin-ext,Grayscale,881,1790,No,2019-07-16,2025-09-16,https://fonts.google.com/specimen/Farro
-Farsan,Display,Sans Serif,Handwriting,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque script cursive hand-drawn artistic informal gujarati indian english western european extended-latin european vietnamese,400,,gujarati | latin | latin-ext | vietnamese,Pooja Saxena,1380,1660,No,2016-06-20,2025-09-16,https://fonts.google.com/specimen/Farsan
-Fascinate,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1121,974,No,2011-12-07,2025-09-16,https://fonts.google.com/specimen/Fascinate
-Fascinate Inline,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1306,1662,No,2011-12-07,2025-09-10,https://fonts.google.com/specimen/Fascinate+Inline
-Faster One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,743,2249,No,2012-10-26,2025-09-16,https://fonts.google.com/specimen/Faster+One
-Fasthand,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong | Neapolitan,1243,790,No,2012-05-24,2025-09-08,https://fonts.google.com/specimen/Fasthand
-Fauna One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,715,498,No,2013-06-05,2025-09-08,https://fonts.google.com/specimen/Fauna+One
-Faustina,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,406,656,No,2017-07-31,2025-09-04,https://fonts.google.com/specimen/Faustina
-Federant,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Cyreal,1330,2162,No,2011-10-05,2025-09-11,https://fonts.google.com/specimen/Federant
-Federo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Cyreal,984,1478,No,2011-07-27,2025-09-11,https://fonts.google.com/specimen/Federo
-Felipa,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Fontstage,1505,351,No,2012-02-08,2025-09-11,https://fonts.google.com/specimen/Felipa
-Fenix,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Fernando Díaz,1283,2280,No,2012-09-24,2025-09-16,https://fonts.google.com/specimen/Fenix
-Festive,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1398,1195,No,2021-04-23,2025-09-08,https://fonts.google.com/specimen/Festive
-Figtree,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european top-popular trending most-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Erik Kennedy,45,1290,No,2022-07-21,2025-09-11,https://fonts.google.com/specimen/Figtree
-Finger Paint,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Carrois Apostrophe,995,1738,No,2012-09-30,2025-09-10,https://fonts.google.com/specimen/Finger+Paint
-Finlandica,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext,Helsinki Type Studio | Niklas Ekholm | Juho Hiilivirta | Jaakko Suomalainen,1290,227,No,2022-05-13,2025-09-08,https://fonts.google.com/specimen/Finlandica
-Fira Code,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international well-known common,300 | 400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | symbols2,The Mozilla Foundation | Telefonica S.A. | Nikita Prokopov,297,1509,No,2019-03-24,2025-09-16,https://fonts.google.com/specimen/Fira+Code
-Fira Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,400 | 500 | 700,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | symbols2,Carrois Apostrophe,446,1773,No,2014-06-18,2025-09-16,https://fonts.google.com/specimen/Fira+Mono
-Fira Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Carrois Apostrophe,47,1550,No,2014-06-18,2025-09-11,https://fonts.google.com/specimen/Fira+Sans
-Fira Sans Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Carrois Apostrophe,169,1807,No,2016-12-07,2025-09-11,https://fonts.google.com/specimen/Fira+Sans+Condensed
-Fira Sans Extra Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Carrois Apostrophe,488,2013,No,2016-12-07,2025-09-16,https://fonts.google.com/specimen/Fira+Sans+Extra+Condensed
-Fjalla One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque cyrillic extended english western european extended-latin european vietnamese popular widely-used,400,,cyrillic-ext | latin | latin-ext | vietnamese,Sorkin Type | Irina Smirnova,68,2227,No,2012-10-27,2025-09-16,https://fonts.google.com/specimen/Fjalla+One
-Fjord One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Viktoriya Grabowska,763,1961,No,2011-11-02,2025-09-11,https://fonts.google.com/specimen/Fjord+One
-Flamenco,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,300 | 400,,latin,LatinoType,1308,1451,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Flamenco
-Flavors,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sideshow,1610,1401,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Flavors
-Fleur De Leah,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1516,1377,No,2021-09-02,2025-09-08,https://fonts.google.com/specimen/Fleur+De+Leah
-Flow Block,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Dan Ross,1591,211,No,2021-10-21,2025-09-17,https://fonts.google.com/specimen/Flow+Block
-Flow Circular,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Dan Ross,720,1482,No,2021-10-21,2025-09-17,https://fonts.google.com/specimen/Flow+Circular
-Flow Rounded,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Dan Ross,1550,1812,No,2021-10-21,2025-09-17,https://fonts.google.com/specimen/Flow+Rounded
-Foldit,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Sophia Tai,1609,2175,No,2022-10-02,2025-09-11,https://fonts.google.com/specimen/Foldit
-Fondamento,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Astigmatic,712,2069,No,2011-11-16,2025-09-04,https://fonts.google.com/specimen/Fondamento
-Fontdiner Swanky,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Font Diner,936,496,No,2011-01-06,2025-06-02,https://fonts.google.com/specimen/Fontdiner+Swanky
-Forum,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,Denis Masharov,363,1386,No,2011-07-06,2025-09-04,https://fonts.google.com/specimen/Forum
-Fragment Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic cyrillic extended english western european extended-latin european,400 | 400i,,cyrillic-ext | latin | latin-ext,Wei Huang | URW Design Studio,597,204,No,2022-10-23,2025-09-08,https://fonts.google.com/specimen/Fragment+Mono
-Francois One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Vernon Adams,292,886,No,2011-05-04,2025-09-16,https://fonts.google.com/specimen/Francois+One
-Frank Ruhl Libre,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight hebrew RTL israeli english western european extended-latin european well-known common,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,hebrew | latin | latin-ext,Yanek Iontef,201,1000,No,2016-06-20,2025-09-10,https://fonts.google.com/specimen/Frank+Ruhl+Libre
-Fraunces,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,SOFT: - | WONK: - | opsz: - | wght: -,latin | latin-ext | vietnamese,Undercase Type | Phaedra Charles | Flavia Zimbardi,215,430,No,2020-07-23,2025-09-10,https://fonts.google.com/specimen/Fraunces
-Freckle Face,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1186,1973,No,2012-11-26,2025-09-16,https://fonts.google.com/specimen/Freckle+Face
-Fredericka the Great,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Tart Workshop,578,2000,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Fredericka+the+Great
-Fredoka,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight variable-width hebrew RTL israeli english western european extended-latin european popular widely-used,300 | 400 | 500 | 600 | 700,wdth: - | wght: -,hebrew | latin | latin-ext,Milena Brandão | Hafontia,150,360,No,2021-12-15,2025-09-11,https://fonts.google.com/specimen/Fredoka
-Freehand,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1092,2015,No,2011-03-02,2025-09-08,https://fonts.google.com/specimen/Freehand
-Freeman,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Rodrigo Fuenzalida | Aoife Mooney | Vernon Adams,841,130,No,2024-05-01,2025-05-30,https://fonts.google.com/specimen/Freeman
-Fresca,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Fontstage,968,2182,No,2011-12-07,2025-09-08,https://fonts.google.com/specimen/Fresca
-Frijole,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Sideshow,1115,1404,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Frijole
-Fruktur,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention italic cyrillic extended english western european extended-latin european vietnamese,400 | 400i,,cyrillic-ext | latin | latin-ext | vietnamese,Viktoriya Grabowska | Eben Sorkin,1460,553,No,2013-01-16,2025-09-04,https://fonts.google.com/specimen/Fruktur
-Fugaz One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european well-known common,400,,latin,LatinoType,282,419,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Fugaz+One
-Fuggles,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1174,1282,No,2021-04-29,2025-09-16,https://fonts.google.com/specimen/Fuggles
-Funnel Display,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,NORD ID | Kristian Möller,707,572,No,2024-11-05,2025-09-10,https://fonts.google.com/specimen/Funnel+Display
-Funnel Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext,NORD ID | Kristian Möller,501,192,No,2024-11-05,2025-09-08,https://fonts.google.com/specimen/Funnel+Sans
-Fustat,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,arabic | latin | latin-ext,Mohamed Gaber | Laura Garcia Mut | Khaled Hosny,616,178,No,2024-06-04,2025-09-16,https://fonts.google.com/specimen/Fustat
-Fuzzy Bubbles,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | vietnamese,Robert Leuschke,831,648,No,2021-11-02,2025-09-16,https://fonts.google.com/specimen/Fuzzy+Bubbles
-GFS Didot,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone greek greek extended english western european vietnamese,400,,greek | greek-ext | latin | vietnamese,Greek Font Society,467,913,No,2010-09-21,2025-09-10,https://fonts.google.com/specimen/GFS+Didot
-GFS Neohellenic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic greek greek extended english western european vietnamese,400 | 400i | 700 | 700i,,greek | greek-ext | latin | vietnamese,Greek Font Society,1571,1260,No,2010-09-21,2025-09-16,https://fonts.google.com/specimen/GFS+Neohellenic
-Ga Maamli,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Afotey Clement Nii Odai | Ama Diaka | David Abbey-Thompson,1425,156,No,2024-06-25,2025-05-30,https://fonts.google.com/specimen/Ga+Maamli
-Gabarito,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext,Naipe Foundry | Leandro Assis | Álvaro Franca | Felipe Casaprima,425,378,No,2023-09-12,2025-09-04,https://fonts.google.com/specimen/Gabarito
-Gabriela,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,Eduardo Tunni,798,1581,No,2013-03-06,2025-09-11,https://fonts.google.com/specimen/Gabriela
-Gaegu,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,300 | 400 | 700,,korean | latin,JIKJI SOFT,976,1630,No,2018-02-28,2025-09-10,https://fonts.google.com/specimen/Gaegu
-Gafata,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Lautaro Hourcade,1143,631,No,2012-10-31,2025-09-11,https://fonts.google.com/specimen/Gafata
-Gajraj One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Saurabh Sharma,1779,1770,No,2023-01-22,2025-09-04,https://fonts.google.com/specimen/Gajraj+One
-Galada,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal bengali bangladeshi indian english western european,400,,bengali | latin,Black Foundry,1109,1999,No,2016-06-20,2025-09-11,https://fonts.google.com/specimen/Galada
-Galdeano,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Dario Manuel Muhafara,1531,1199,No,2011-12-07,2025-09-16,https://fonts.google.com/specimen/Galdeano
-Galindo,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1446,2035,No,2012-08-13,2025-09-04,https://fonts.google.com/specimen/Galindo
-Gamja Flower,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,YoonDesign Inc,973,91,No,2018-02-23,2025-09-08,https://fonts.google.com/specimen/Gamja+Flower
-Gantari,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Lafontype,613,2112,No,2022-05-25,2025-09-11,https://fonts.google.com/specimen/Gantari
-Gasoek One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european extended-latin european,400,,korean | latin | latin-ext,Jiashuo Zhang | JAMO,1480,307,No,2023-05-17,2026-03-03,https://fonts.google.com/specimen/Gasoek+One
-Gayathri,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european malayalam indian,100 | 400 | 700,,latin | malayalam,SMC | Binoy Dominic,1098,249,No,2019-06-10,2025-09-04,https://fonts.google.com/specimen/Gayathri
-Geist,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | latin | latin-ext,Andrés Briganti | Mateo Zaragoza | Guillermo Rauch | Evil Rabbit | José Rago | Facundo Santana,192,542,No,2024-11-05,2025-09-11,https://fonts.google.com/specimen/Geist
-Geist Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | latin | latin-ext,Andrés Briganti | Mateo Zaragoza | Guillermo Rauch | Evil Rabbit | José Rago | Facundo Santana,294,1461,No,2024-11-05,2025-09-16,https://fonts.google.com/specimen/Geist+Mono
-Gelasio,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Eben Sorkin,349,896,No,2019-12-03,2025-09-04,https://fonts.google.com/specimen/Gelasio
-Gemunu Libre,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european sinhala sri-lankan,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | sinhala,Mooniak,1096,755,No,2017-05-29,2025-09-10,https://fonts.google.com/specimen/Gemunu+Libre
-Genos,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cherokee | latin | latin-ext | vietnamese,Robert Leuschke,1107,272,No,2021-10-07,2025-09-16,https://fonts.google.com/specimen/Genos
-Gentium Book Plus,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,SIL International,1259,2064,No,2022-05-18,2025-05-30,https://fonts.google.com/specimen/Gentium+Book+Plus
-Gentium Plus,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,SIL International,868,667,No,2022-05-13,2025-05-30,https://fonts.google.com/specimen/Gentium+Plus
-Geo,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic english western european,400 | 400i,,latin,Ben Weiner,656,1121,No,2010-11-30,2025-09-16,https://fonts.google.com/specimen/Geo
-Geologica,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CRSV: - | SHRP: - | slnt: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Monokrom | Sindre Bremnes | Frode Helland,187,959,No,2023-05-29,2025-09-10,https://fonts.google.com/specimen/Geologica
-Geom,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight greek english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,greek | latin | latin-ext,Thanos Poulakidas,1258,26,No,2025-12-08,2025-12-10,https://fonts.google.com/specimen/Geom
-Georama,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Production Type,499,903,No,2020-07-01,2025-09-10,https://fonts.google.com/specimen/Georama
-Geostar,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Joe Prince,1693,657,No,2011-08-10,2025-06-02,https://fonts.google.com/specimen/Geostar
-Geostar Fill,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Joe Prince,1494,1450,No,2011-08-10,2025-06-02,https://fonts.google.com/specimen/Geostar+Fill
-Germania One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,John Vargas Beltrán,734,1668,No,2012-01-18,2025-09-04,https://fonts.google.com/specimen/Germania+One
-Gideon Roman,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1382,196,No,2021-08-26,2025-09-04,https://fonts.google.com/specimen/Gideon+Roman
-Gidole,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic greek english western european extended-latin european vietnamese,400,,cyrillic | greek | latin | latin-ext | vietnamese,Andreas Larsen,1619,1459,No,2025-03-13,2025-05-30,https://fonts.google.com/specimen/Gidole
-Gidugu,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european telugu indian,400,,latin | latin-ext | telugu,Purushoth Kumar Guttula,1630,1775,No,2014-12-10,2025-09-08,https://fonts.google.com/specimen/Gidugu
-Gilda Display,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,348,1693,No,2012-10-31,2025-09-10,https://fonts.google.com/specimen/Gilda+Display
-Girassol,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Liam Spradlin,1361,2139,No,2019-12-05,2025-09-04,https://fonts.google.com/specimen/Girassol
-Give You Glory,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,915,1243,No,2011-07-13,2025-09-04,https://fonts.google.com/specimen/Give+You+Glory
-Glass Antiqua,Display,Serif,Handwriting,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Denis Masharov,1440,2122,No,2012-02-22,2025-09-16,https://fonts.google.com/specimen/Glass+Antiqua
-Glegoo,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Eduardo Tunni,576,1489,No,2012-01-25,2025-06-02,https://fonts.google.com/specimen/Glegoo
-Gloock,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention cyrillic extended english western european extended-latin european,400,,cyrillic-ext | latin | latin-ext,Duarte Pinto,486,1586,No,2023-01-05,2025-09-08,https://fonts.google.com/specimen/Gloock
-Gloria Hallelujah,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,317,1454,No,2011-07-27,2025-09-08,https://fonts.google.com/specimen/Gloria+Hallelujah
-Glory,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext | vietnamese,Robert Leuschke,667,1825,No,2021-06-17,2025-09-10,https://fonts.google.com/specimen/Glory
-Gluten,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,slnt: - | wght: -,latin | latin-ext | vietnamese,Tyler Finck | ETC,827,218,No,2021-09-02,2025-09-04,https://fonts.google.com/specimen/Gluten
-Goblin One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Riccardo De Franceschi,967,695,No,2011-06-29,2025-09-10,https://fonts.google.com/specimen/Goblin+One
-Gochi Hand,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Huerta Tipográfica,478,1869,No,2011-10-05,2025-09-10,https://fonts.google.com/specimen/Gochi+Hand
-Goldman,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | vietnamese,Jaikishan Patel,398,125,No,2020-07-21,2025-09-11,https://fonts.google.com/specimen/Goldman
-Golos Text,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european,400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | latin | latin-ext,Alexandra Korolkova | Vitaly Kuzmin,313,634,No,2023-01-05,2025-09-11,https://fonts.google.com/specimen/Golos+Text
-Google Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight armenian bengali bangladeshi indian russian cyrillic slavic cyrillic extended hindi devanagari indian ethiopic amharic georgian greek greek extended gujarati indian punjabi gurmukhi indian hebrew RTL israeli khmer cambodian lao laotian english western european extended-latin european malayalam indian odia oriya indian sinhala sri-lankan tamil indian telugu indian thai southeast-asia vietnamese multilingual international top-popular trending most-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,GRAD: - | opsz: - | wght: -,armenian | bengali | canadian-aboriginal | cyrillic | cyrillic-ext | devanagari | ethiopic | georgian | greek | greek-ext | gujarati | gurmukhi | hebrew | khmer | lao | latin | latin-ext | malayalam | oriya | sinhala | symbols | tamil | telugu | thai | vietnamese,Google,4,887,No,2025-12-09,2025-12-10,https://fonts.google.com/specimen/Google+Sans
-Google Sans Code,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese multilingual international popular widely-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,adlam | canadian-aboriginal | cherokee | latin | latin-ext | math | old-permic | symbols | symbols2 | syriac | vietnamese,Google | Universal Thirst,131,44,No,2025-02-26,2025-09-16,https://fonts.google.com/specimen/Google+Sans+Code
-Google Sans Flex,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width variable-slant english western european extended-latin european vietnamese multilingual international popular widely-used,1 | 100 | 1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,GRAD: - | ROND: - | opsz: - | slnt: - | wdth: - | wght: -,canadian-aboriginal | cherokee | latin | latin-ext | math | nushu | symbols | syriac | tifinagh | vietnamese,Google,119,47,No,2025-11-12,2025-12-11,https://fonts.google.com/specimen/Google+Sans+Flex
-Gorditas,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400 | 700,,latin,Gustavo Dipre,1356,176,No,2012-03-14,2025-09-11,https://fonts.google.com/specimen/Gorditas
-Gothic A1,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible russian cyrillic slavic cyrillic extended greek greek extended korean hangul english western european extended-latin european vietnamese multilingual international well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,cyrillic | cyrillic-ext | greek | greek-ext | korean | latin | latin-ext | vietnamese,HanYang I&C Co,266,742,No,2018-02-24,2025-09-11,https://fonts.google.com/specimen/Gothic+A1
-Gotu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european vietnamese,400,,devanagari | latin | latin-ext | vietnamese,Ek Type,925,1523,No,2020-01-09,2025-09-11,https://fonts.google.com/specimen/Gotu
-Goudy Bookletter 1911,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Barry Schwartz,691,1292,No,2011-02-09,2025-09-11,https://fonts.google.com/specimen/Goudy+Bookletter+1911
-Gowun Batang,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone korean hangul english western european extended-latin european vietnamese,400 | 700,,korean | latin | latin-ext | vietnamese,Yanghee Ryu,652,536,No,2021-06-10,2025-09-10,https://fonts.google.com/specimen/Gowun+Batang
-Gowun Dodum,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque korean hangul english western european extended-latin european vietnamese,400,,korean | latin | latin-ext | vietnamese,Yanghee Ryu,960,315,No,2021-06-10,2025-09-11,https://fonts.google.com/specimen/Gowun+Dodum
-Graduate,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european,400,,latin,Eduardo Tunni,689,1633,No,2012-03-14,2025-09-16,https://fonts.google.com/specimen/Graduate
-Grand Hotel,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,622,1501,No,2012-11-30,2025-09-08,https://fonts.google.com/specimen/Grand+Hotel
-Grandiflora One,Serif,Serif,Display | Handwriting,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention script cursive hand-drawn artistic informal korean hangul english western european extended-latin european,400,,korean | latin | latin-ext,Haesung Cho | JAMO,1796,2068,No,2023-05-17,2026-03-03,https://fonts.google.com/specimen/Grandiflora+One
-Grandstander,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Tyler Finck | ETC,564,1635,No,2020-07-23,2025-09-16,https://fonts.google.com/specimen/Grandstander
-Grape Nuts,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,911,571,No,2022-02-17,2025-09-08,https://fonts.google.com/specimen/Grape+Nuts
-Gravitas One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european popular widely-used,400,,latin,Riccardo De Franceschi,78,2057,No,2011-06-29,2025-09-08,https://fonts.google.com/specimen/Gravitas+One
-Great Vibes,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention russian cyrillic slavic cyrillic extended greek extended english western european extended-latin european vietnamese multilingual international well-known common,400,,cyrillic | cyrillic-ext | greek-ext | latin | latin-ext | vietnamese,Robert Leuschke,178,1384,No,2012-03-29,2025-09-04,https://fonts.google.com/specimen/Great+Vibes
-Grechen Fuemen,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1689,2289,No,2021-09-02,2025-09-10,https://fonts.google.com/specimen/Grechen+Fuemen
-Grenze,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | vietnamese,Omnibus-Type,1169,397,No,2018-09-18,2025-09-08,https://fonts.google.com/specimen/Grenze
-Grenze Gotisch,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,811,1240,No,2020-05-17,2025-09-02,https://fonts.google.com/specimen/Grenze+Gotisch
-Grey Qo,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1537,1868,No,2021-09-02,2025-09-16,https://fonts.google.com/specimen/Grey+Qo
-Griffy,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Neapolitan,1562,1958,No,2012-09-06,2025-09-11,https://fonts.google.com/specimen/Griffy
-Gruppo,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,Vernon Adams,300,757,No,2010-12-20,2025-09-02,https://fonts.google.com/specimen/Gruppo
-Gudea,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i | 700,,latin | latin-ext,Agustina Mingote,452,1001,No,2012-01-18,2025-09-10,https://fonts.google.com/specimen/Gudea
-Gugi,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,TAE System & Typefaces Co.,1192,1484,No,2018-02-23,2025-09-16,https://fonts.google.com/specimen/Gugi
-Gulzar,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,Borna Izadpanah | Fiona Ross | Alice Savoie | Simon Cozens,1136,1833,No,2022-05-13,2025-09-04,https://fonts.google.com/specimen/Gulzar
-Gupter,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400 | 500 | 700,,latin,Octavio Pardo,1217,1538,No,2019-11-13,2025-09-11,https://fonts.google.com/specimen/Gupter
-Gurajada,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european telugu indian,400,,latin | latin-ext | telugu,Purushoth Kumar Guttula,946,1613,No,2015-01-08,2025-06-25,https://fonts.google.com/specimen/Gurajada
-Gveret Levin,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention hebrew RTL israeli english western european,400,,hebrew | latin,AlefAlefAlef,1854,132,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Gveret+Levin
-Gwendolyn,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | vietnamese,Robert Leuschke,1301,213,No,2021-11-02,2025-09-10,https://fonts.google.com/specimen/Gwendolyn
-Habibi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Magnus Gaarde,1154,1590,No,2011-12-19,2025-09-08,https://fonts.google.com/specimen/Habibi
-Hachi Maru Pop,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Nonty,339,51,No,2020-12-14,2025-09-10,https://fonts.google.com/specimen/Hachi+Maru+Pop
-Hahmlet,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight korean hangul english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,korean | latin | latin-ext | vietnamese,Hypertype,728,777,No,2021-05-13,2025-09-08,https://fonts.google.com/specimen/Hahmlet
-Halant,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,765,1819,No,2014-08-27,2025-09-10,https://fonts.google.com/specimen/Halant
-Hammersmith One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european well-known common,400,,latin | latin-ext,Nicole Fally,248,136,No,2011-06-29,2025-09-02,https://fonts.google.com/specimen/Hammersmith+One
-Hanalei,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1811,2091,No,2012-11-26,2025-09-08,https://fonts.google.com/specimen/Hanalei
-Hanalei Fill,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1657,2195,No,2012-11-26,2025-09-08,https://fonts.google.com/specimen/Hanalei+Fill
-Handjet,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east armenian russian cyrillic slavic cyrillic extended greek hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,ELGR: - | ELSH: - | wght: -,arabic | armenian | cyrillic | cyrillic-ext | greek | hebrew | latin | latin-ext | vietnamese,Rosetta | David Březina,1313,1925,No,2020-09-11,2025-09-16,https://fonts.google.com/specimen/Handjet
-Handlee,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal english western european,400,,latin,Joe Prince,382,1580,No,2011-12-13,2025-09-16,https://fonts.google.com/specimen/Handlee
-Hanken Grotesk,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight cyrillic extended english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic-ext | latin | latin-ext | vietnamese,Alfredo Marco Pradil | Hanken Design Co.,231,1949,No,2022-11-16,2025-09-02,https://fonts.google.com/specimen/Hanken+Grotesk
-Hanuman,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight khmer cambodian english western european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,khmer | latin,Danh Hong,853,1989,No,2010-09-21,2025-06-12,https://fonts.google.com/specimen/Hanuman
-Happy Monkey,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Brenda Gallo,889,2104,No,2012-03-14,2025-09-08,https://fonts.google.com/specimen/Happy+Monkey
-Harmattan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque arabic RTL middle-east english western european extended-latin european,400 | 500 | 600 | 700,,arabic | latin | latin-ext,SIL International,1138,1852,No,2020-07-02,2025-09-16,https://fonts.google.com/specimen/Harmattan
-Headland One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Gary Lonergan,1289,1939,No,2012-05-09,2025-09-16,https://fonts.google.com/specimen/Headland+One
-Hedvig Letters Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext | math | symbols,Kanon Foundry | Alexander Örn | Tor Weibull | Hedvig,1414,292,No,2023-11-20,2025-05-30,https://fonts.google.com/specimen/Hedvig+Letters+Sans
-Hedvig Letters Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive english western european extended-latin european,400,opsz: -,latin | latin-ext | math | symbols,Kanon Foundry | Alexander Örn | Tor Weibull | Hedvig,1022,996,No,2023-11-20,2025-09-11,https://fonts.google.com/specimen/Hedvig+Letters+Serif
-Heebo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight hebrew RTL israeli english western european extended-latin european popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,hebrew | latin | latin-ext | math | symbols,Oded Ezer,57,583,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Heebo
-Henny Penny,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Brownfox,1135,2145,No,2012-02-22,2025-09-11,https://fonts.google.com/specimen/Henny+Penny
-Hepta Slab,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,1 | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Mike LaGattuta,638,1413,No,2018-09-19,2025-09-04,https://fonts.google.com/specimen/Hepta+Slab
-Herr Von Muellerhoff,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,621,2099,No,2011-11-30,2025-09-08,https://fonts.google.com/specimen/Herr+Von+Muellerhoff
-Hi Melody,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,YoonDesign Inc,944,253,No,2018-02-23,2025-09-04,https://fonts.google.com/specimen/Hi+Melody
-Hina Mincho,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european vietnamese,400,,cyrillic | japanese | latin | latin-ext | vietnamese,Satsuyako,717,696,No,2021-04-14,2025-09-11,https://fonts.google.com/specimen/Hina+Mincho
-Hind,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european popular widely-used,300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,107,975,No,2014-06-25,2025-09-04,https://fonts.google.com/specimen/Hind
-Hind Guntur,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european telugu indian,300 | 400 | 500 | 600 | 700,,latin | latin-ext | telugu,Indian Type Foundry,428,651,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Hind+Guntur
-Hind Madurai,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european tamil indian well-known common,300 | 400 | 500 | 600 | 700,,latin | latin-ext | tamil,Indian Type Foundry,222,1956,No,2016-06-15,2025-09-02,https://fonts.google.com/specimen/Hind+Madurai
-Hind Mysuru,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque kannada indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,,kannada | latin | latin-ext,Indian Type Foundry,1711,1854,No,2024-12-02,2025-05-30,https://fonts.google.com/specimen/Hind+Mysuru
-Hind Siliguri,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque bengali bangladeshi indian english western european extended-latin european popular widely-used,300 | 400 | 500 | 600 | 700,,bengali | latin | latin-ext,Indian Type Foundry,64,2038,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Hind+Siliguri
-Hind Vadodara,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque gujarati indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,,gujarati | latin | latin-ext,Indian Type Foundry,411,519,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Hind+Vadodara
-Holtwood One SC,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,1007,529,No,2011-05-04,2025-09-08,https://fonts.google.com/specimen/Holtwood+One+SC
-Homemade Apple,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,Font Diner,358,1356,No,2011-01-06,2025-09-08,https://fonts.google.com/specimen/Homemade+Apple
-Homenaje,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Constanza Artigas Preller | Agustina Mingote,1105,547,No,2012-01-18,2025-09-04,https://fonts.google.com/specimen/Homenaje
-Honk,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,MORF: - | SHLN: -,latin | latin-ext | math | symbols | vietnamese,Ek Type,706,1354,No,2024-01-23,2025-09-04,https://fonts.google.com/specimen/Honk
-Host Grotesk,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext,Element Type | Doğukan Karapınar | İbrahim Kaçtıoğlu,598,1800,No,2024-11-05,2025-09-04,https://fonts.google.com/specimen/Host+Grotesk
-Hubballi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque kannada indian english western european extended-latin european,400,,kannada | latin | latin-ext,Erin McLaughlin,1490,2029,No,2021-12-16,2025-09-02,https://fonts.google.com/specimen/Hubballi
-Hubot Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Tobias Bjerrome Ahlin | Github | Degarism Studio | Sebastian Carewe,1116,1972,No,2024-11-04,2025-09-04,https://fonts.google.com/specimen/Hubot+Sans
-Huninn,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese traditional russian cyrillic slavic english western european extended-latin european vietnamese,400,,chinese-traditional | cyrillic | latin | latin-ext | vietnamese,justfont,1624,286,No,2025-06-11,2026-02-19,https://fonts.google.com/specimen/Huninn
-Hurricane,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,826,1153,No,2021-10-07,2025-09-10,https://fonts.google.com/specimen/Hurricane
-IBM Plex Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Mike Abbink | Bold Monday,137,256,No,2018-03-12,2025-09-16,https://fonts.google.com/specimen/IBM+Plex+Mono
-IBM Plex Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Mike Abbink | Bold Monday,53,1305,No,2018-03-11,2025-09-08,https://fonts.google.com/specimen/IBM+Plex+Sans
-IBM Plex Sans Arabic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible arabic RTL middle-east cyrillic extended english western european extended-latin european well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700,,arabic | cyrillic-ext | latin | latin-ext,Mike Abbink | Bold Monday | Khajag Apelian | Wael Morcos,165,182,No,2021-06-17,2026-03-03,https://fonts.google.com/specimen/IBM+Plex+Sans+Arabic
-IBM Plex Sans Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic cyrillic extended english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,cyrillic-ext | latin | latin-ext | vietnamese,Mike Abbink | Bold Monday,320,362,No,2018-03-12,2025-09-11,https://fonts.google.com/specimen/IBM+Plex+Sans+Condensed
-IBM Plex Sans Devanagari,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible cyrillic extended hindi devanagari indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,,cyrillic-ext | devanagari | latin | latin-ext,Mike Abbink | Bold Monday,1302,2098,No,2021-06-18,2025-09-11,https://fonts.google.com/specimen/IBM+Plex+Sans+Devanagari
-IBM Plex Sans Hebrew,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible cyrillic extended hebrew RTL israeli english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,,cyrillic-ext | hebrew | latin | latin-ext,Mike Abbink | Bold Monday,769,332,No,2021-06-18,2025-09-04,https://fonts.google.com/specimen/IBM+Plex+Sans+Hebrew
-IBM Plex Sans JP,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,,cyrillic | japanese | latin | latin-ext,Mike Abbink | Bold Monday,318,271,No,2022-09-11,2025-09-10,https://fonts.google.com/specimen/IBM+Plex+Sans+JP
-IBM Plex Sans KR,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible korean hangul english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,,korean | latin | latin-ext,Mike Abbink | Bold Monday,684,1414,No,2021-06-18,2025-09-08,https://fonts.google.com/specimen/IBM+Plex+Sans+KR
-IBM Plex Sans Thai,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible cyrillic extended english western european extended-latin european thai southeast-asia,100 | 200 | 300 | 400 | 500 | 600 | 700,,cyrillic-ext | latin | latin-ext | thai,Mike Abbink | Bold Monday,497,780,No,2021-06-18,2025-09-02,https://fonts.google.com/specimen/IBM+Plex+Sans+Thai
-IBM Plex Sans Thai Looped,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible cyrillic extended english western european extended-latin european thai southeast-asia,100 | 200 | 300 | 400 | 500 | 600 | 700,,cyrillic-ext | latin | latin-ext | thai,Mike Abbink | Bold Monday,1267,2284,No,2021-06-18,2025-09-11,https://fonts.google.com/specimen/IBM+Plex+Sans+Thai+Looped
-IBM Plex Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Mike Abbink | Bold Monday,163,1536,No,2018-03-11,2025-09-16,https://fonts.google.com/specimen/IBM+Plex+Serif
-IM Fell DW Pica,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i,,latin,Igino Marini,677,68,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+DW+Pica
-IM Fell DW Pica SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Igino Marini,819,39,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+DW+Pica+SC
-IM Fell Double Pica,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i,,latin,Igino Marini,1047,1493,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+Double+Pica
-IM Fell Double Pica SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Igino Marini,1181,1372,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+Double+Pica+SC
-IM Fell English,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i,,latin,Igino Marini,731,525,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+English
-IM Fell English SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Igino Marini,817,1388,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+English+SC
-IM Fell French Canon,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i,,latin,Igino Marini,1128,965,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+French+Canon
-IM Fell French Canon SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Igino Marini,1213,1225,No,2010-05-17,2025-09-10,https://fonts.google.com/specimen/IM+Fell+French+Canon+SC
-IM Fell Great Primer,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i,,latin,Igino Marini,1124,1756,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+Great+Primer
-IM Fell Great Primer SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Igino Marini,1207,1234,No,2010-05-17,2025-05-30,https://fonts.google.com/specimen/IM+Fell+Great+Primer+SC
-Iansui,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal chinese traditional english western european extended-latin european,400,,chinese-traditional | latin | latin-ext | symbols2,But Ko,1654,1201,No,2025-03-03,2026-02-19,https://fonts.google.com/specimen/Iansui
-Ibarra Real Nova,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,José María Ribagorda | Octavio Pardo,756,1181,No,2019-11-04,2025-09-04,https://fonts.google.com/specimen/Ibarra+Real+Nova
-Iceberg,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Cyreal,1054,2181,No,2012-01-25,2025-09-04,https://fonts.google.com/specimen/Iceberg
-Iceland,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Cyreal,875,294,No,2011-11-23,2025-09-02,https://fonts.google.com/specimen/Iceland
-Idiqlat,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,200 | 300 | 400,,latin | syriac,SIL International,1876,2251,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Idiqlat
-Imbue,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,opsz: - | wght: -,latin | latin-ext | vietnamese,Tyler Finck | ETC,1261,1499,No,2020-12-02,2025-09-02,https://fonts.google.com/specimen/Imbue
-Imperial Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1248,1802,No,2021-11-18,2025-09-11,https://fonts.google.com/specimen/Imperial+Script
-Imprima,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,926,1558,No,2012-03-14,2025-09-10,https://fonts.google.com/specimen/Imprima
-Inclusive Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Olivia King,1075,462,No,2023-09-12,2025-09-10,https://fonts.google.com/specimen/Inclusive+Sans
-Inconsolata,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese top-popular trending most-used,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | vietnamese,Raph Levien,43,812,No,2010-02-19,2025-09-04,https://fonts.google.com/specimen/Inconsolata
-Inder,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Sorkin Type,816,207,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Inder
-Indie Flower,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european well-known common,400,,latin | latin-ext,Kimberly Geswein,154,1179,No,2011-03-09,2025-09-16,https://fonts.google.com/specimen/Indie+Flower
-Ingrid Darling,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1825,1410,No,2022-03-11,2025-09-04,https://fonts.google.com/specimen/Ingrid+Darling
-Inika,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400 | 700,,latin | latin-ext,Constanza Artigas,1351,512,No,2012-01-11,2025-09-04,https://fonts.google.com/specimen/Inika
-Inknut Antiqua,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible hindi devanagari indian english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800 | 900,,devanagari | latin | latin-ext,Claus Eggers Sørensen,985,1492,No,2015-05-20,2025-09-04,https://fonts.google.com/specimen/Inknut+Antiqua
-Inria Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,300 | 300i | 400 | 400i | 700 | 700i,,latin | latin-ext,Grégori Vincens | Jérémie Hornus,766,681,No,2019-12-05,2025-09-04,https://fonts.google.com/specimen/Inria+Sans
-Inria Serif,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,300 | 300i | 400 | 400i | 700 | 700i,,latin | latin-ext,Grégori Vincens | Jérémie Hornus,599,1850,No,2019-12-05,2025-09-11,https://fonts.google.com/specimen/Inria+Serif
-Inspiration,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1297,106,No,2021-11-26,2025-06-02,https://fonts.google.com/specimen/Inspiration
-Instrument Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight variable-width english western european extended-latin european well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wdth: - | wght: -,latin | latin-ext,Rodrigo Fuenzalida | Jordan Egstad,174,601,No,2023-05-08,2025-09-04,https://fonts.google.com/specimen/Instrument+Sans
-Instrument Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european popular widely-used,400 | 400i,,latin | latin-ext,Rodrigo Fuenzalida | Jordan Egstad,147,482,No,2023-03-21,2025-09-04,https://fonts.google.com/specimen/Instrument+Serif
-Intel One Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | symbols2 | vietnamese,Intel Corporation | Frere-Jones Type,1777,335,No,2025-07-14,2025-07-16,https://fonts.google.com/specimen/Intel+One+Mono
-Inter,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Rasmus Andersson,7,845,No,2020-01-24,2025-09-10,https://fonts.google.com/specimen/Inter
-Inter Tight,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Rasmus Andersson,117,1769,No,2022-07-22,2025-09-16,https://fonts.google.com/specimen/Inter+Tight
-Irish Grover,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Sideshow,762,1494,No,2011-03-16,2025-05-30,https://fonts.google.com/specimen/Irish+Grover
-Island Moments,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1252,1890,No,2021-11-18,2025-09-11,https://fonts.google.com/specimen/Island+Moments
-Istok Web,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic russian cyrillic slavic cyrillic extended english western european extended-latin european,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext,Andrey V. Panov,405,2089,No,2011-07-13,2025-09-10,https://fonts.google.com/specimen/Istok+Web
-Italiana,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Santiago Orozco,566,1318,No,2012-03-14,2025-06-25,https://fonts.google.com/specimen/Italiana
-Italianno,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,438,2156,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Italianno
-Itim,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european thai southeast-asia vietnamese,400,,latin | latin-ext | thai | vietnamese,Cadson Demak,444,1549,No,2015-07-01,2025-09-16,https://fonts.google.com/specimen/Itim
-Jacquard 12,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sarah Cadigan-Fried,1436,425,No,2024-05-09,2025-09-17,https://fonts.google.com/specimen/Jacquard+12
-Jacquard 12 Charted,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sarah Cadigan-Fried,1908,738,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jacquard+12+Charted
-Jacquard 24,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1616,880,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jacquard+24
-Jacquard 24 Charted,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1940,1487,No,2024-03-14,2025-09-17,https://fonts.google.com/specimen/Jacquard+24+Charted
-Jacquarda Bastarda 9,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sarah Cadigan-Fried,1709,1236,No,2024-01-24,2025-09-17,https://fonts.google.com/specimen/Jacquarda+Bastarda+9
-Jacquarda Bastarda 9 Charted,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sarah Cadigan-Fried,2037,807,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jacquarda+Bastarda+9+Charted
-Jacques Francois,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Cyreal,1324,118,No,2012-09-07,2025-09-08,https://fonts.google.com/specimen/Jacques+Francois
-Jacques Francois Shadow,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Cyreal,1479,2094,No,2012-09-07,2025-09-04,https://fonts.google.com/specimen/Jacques+Francois+Shadow
-Jaini,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Ek Type,1786,2212,No,2024-05-01,2025-05-30,https://fonts.google.com/specimen/Jaini
-Jaini Purva,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Ek Type,1888,2179,No,2024-05-01,2025-05-30,https://fonts.google.com/specimen/Jaini+Purva
-Jaldi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Omnibus-Type,923,1813,No,2015-04-22,2025-09-16,https://fonts.google.com/specimen/Jaldi
-Jaro,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,opsz: -,latin | latin-ext | vietnamese,Agyei Archer | Céline Hurka | Mirko Velimirović,943,500,No,2024-03-14,2025-09-16,https://fonts.google.com/specimen/Jaro
-Jersey 10,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,955,96,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+10
-Jersey 10 Charted,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,2014,701,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+10+Charted
-Jersey 15,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1341,224,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+15
-Jersey 15 Charted,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1960,1976,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+15+Charted
-Jersey 20,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1564,1329,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+20
-Jersey 20 Charted,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1994,348,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+20+Charted
-Jersey 25,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,948,363,No,2024-04-10,2025-09-17,https://fonts.google.com/specimen/Jersey+25
-Jersey 25 Charted,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sarah Cadigan-Fried,1973,411,No,2024-05-01,2025-09-17,https://fonts.google.com/specimen/Jersey+25+Charted
-JetBrains Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,JetBrains | Philipp Nurullin | Konstantin Bulenkov,136,124,No,2020-11-18,2025-09-11,https://fonts.google.com/specimen/JetBrains+Mono
-Jim Nightshade,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1593,1821,No,2012-01-04,2025-09-11,https://fonts.google.com/specimen/Jim+Nightshade
-Joan,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Paolo Biagini,1397,1959,No,2022-04-28,2025-09-04,https://fonts.google.com/specimen/Joan
-Jockey One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,TypeTogether,700,2033,No,2011-10-26,2025-09-16,https://fonts.google.com/specimen/Jockey+One
-Jolly Lodger,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Font Diner,1278,1307,No,2012-03-14,2025-09-10,https://fonts.google.com/specimen/Jolly+Lodger
-Jomhuria,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,KB Studio,821,262,No,2016-06-15,2025-06-02,https://fonts.google.com/specimen/Jomhuria
-Jomolhari,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european tibetan,400,,latin | tibetan,Christopher J. Fynn,1338,1846,No,2019-09-10,2025-09-10,https://fonts.google.com/specimen/Jomolhari
-Josefin Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Santiago Orozco,76,918,No,2010-11-17,2025-09-04,https://fonts.google.com/specimen/Josefin+Sans
-Josefin Slab,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin,Santiago Orozco,319,1152,No,2010-11-17,2025-09-16,https://fonts.google.com/specimen/Josefin+Slab
-Jost,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | latin | latin-ext,Owen Earl,60,743,No,2020-02-11,2025-09-10,https://fonts.google.com/specimen/Jost
-Joti One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1394,1261,No,2012-10-31,2025-09-16,https://fonts.google.com/specimen/Joti+One
-Jua,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,Woowahan Brothers,525,795,No,2018-02-24,2025-09-04,https://fonts.google.com/specimen/Jua
-Judson,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european vietnamese,400 | 400i | 700,,latin | latin-ext | vietnamese,Daniel Johnson,572,899,No,2011-05-04,2025-09-11,https://fonts.google.com/specimen/Judson
-Julee,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Julián Tunni,934,1485,No,2011-09-07,2025-09-16,https://fonts.google.com/specimen/Julee
-Julius Sans One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Luciano Vergara,491,1271,No,2012-10-05,2025-09-16,https://fonts.google.com/specimen/Julius+Sans+One
-Junge,Serif,Serif,Handwriting,elegant traditional classic refined literary editorial transitional oldstyle didone script cursive hand-drawn artistic informal english western european,400,,latin,Cyreal,1359,1923,No,2012-01-18,2025-09-11,https://fonts.google.com/specimen/Junge
-Jura,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,300 | 400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | kayah-li | latin | latin-ext | vietnamese,Daniel Johnson | Cyreal,387,2097,No,2011-05-18,2025-09-16,https://fonts.google.com/specimen/Jura
-Just Another Hand,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,546,1968,No,2010-12-20,2025-09-08,https://fonts.google.com/specimen/Just+Another+Hand
-Just Me Again Down Here,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,963,426,No,2010-12-07,2025-09-04,https://fonts.google.com/specimen/Just+Me+Again+Down+Here
-K2D,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,,latin | latin-ext | thai | vietnamese,Cadson Demak,489,636,No,2018-09-10,2025-09-11,https://fonts.google.com/specimen/K2D
-Kablammo,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese multilingual international,400,MORF: -,cyrillic | cyrillic-ext | emoji | latin | latin-ext | vietnamese,Vectro Type Foundry | Travis Kochel | Lizy Gershenzon | Daria Cohen | Ethan Cohen,1037,2070,No,2023-06-06,2025-09-11,https://fonts.google.com/specimen/Kablammo
-Kadwa,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european,400 | 700,,devanagari | latin,Sol Matas,749,220,No,2015-06-17,2025-09-10,https://fonts.google.com/specimen/Kadwa
-Kaisei Decol,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400 | 500 | 700,,cyrillic | japanese | latin | latin-ext,Font-Kai,504,1185,No,2021-05-21,2025-09-16,https://fonts.google.com/specimen/Kaisei+Decol
-Kaisei HarunoUmi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400 | 500 | 700,,cyrillic | japanese | latin | latin-ext,Font-Kai,1326,379,No,2021-05-21,2025-09-16,https://fonts.google.com/specimen/Kaisei+HarunoUmi
-Kaisei Opti,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400 | 500 | 700,,cyrillic | japanese | latin | latin-ext,Font-Kai,852,819,No,2021-05-21,2025-09-11,https://fonts.google.com/specimen/Kaisei+Opti
-Kaisei Tokumin,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400 | 500 | 700 | 800,,cyrillic | japanese | latin | latin-ext,Font-Kai,1120,2222,No,2021-05-21,2025-09-04,https://fonts.google.com/specimen/Kaisei+Tokumin
-Kalam,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal hindi devanagari indian english western european extended-latin european well-known common,300 | 400 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,167,1250,No,2014-10-17,2025-09-11,https://fonts.google.com/specimen/Kalam
-Kalnia,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,wdth: - | wght: -,latin | latin-ext | math,Frida Medrano,1002,1428,No,2023-12-05,2025-09-16,https://fonts.google.com/specimen/Kalnia
-Kalnia Glaze,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,wdth: - | wght: -,latin | latin-ext,Frida Medrano,1785,2188,No,2024-03-26,2025-09-10,https://fonts.google.com/specimen/Kalnia+Glaze
-Kameron,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Vernon Adams,633,1881,No,2011-06-08,2025-09-04,https://fonts.google.com/specimen/Kameron
-Kanchenjunga,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400 | 500 | 600 | 700,,kirat-rai | latin,Becca Hirsbrunner Spalinger,1976,1418,No,2025-04-17,2025-04-23,https://fonts.google.com/specimen/Kanchenjunga
-Kanit,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | thai | vietnamese,Cadson Demak,41,1141,No,2015-12-07,2025-09-11,https://fonts.google.com/specimen/Kanit
-Kantumruy Pro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight khmer cambodian english western european extended-latin european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,khmer | latin | latin-ext,Tep Sovichet | Wei Huang,738,857,No,2022-05-12,2025-09-04,https://fonts.google.com/specimen/Kantumruy+Pro
-Kapakana,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal variable variable-font responsive variable-weight japanese kanji hiragana katakana english western european extended-latin european,300 | 400,wght: -,japanese | latin | latin-ext,Kousuke Nagai,1275,863,No,2025-05-20,2025-09-11,https://fonts.google.com/specimen/Kapakana
-Karantina,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention hebrew RTL israeli english western european extended-latin european,300 | 400 | 700,,hebrew | latin | latin-ext,Rony Koch,1231,1266,No,2021-03-11,2025-09-16,https://fonts.google.com/specimen/Karantina
-Karla,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext,Jonny Pinhorn,59,789,No,2012-03-14,2025-09-11,https://fonts.google.com/specimen/Karla
-Karla Tamil Inclined,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque tamil indian,400 | 700,,tamil,Jonathan Pinhorn,1984,635,No,2024-10-28,2024-10-29,https://fonts.google.com/specimen/Karla+Tamil+Inclined
-Karla Tamil Upright,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque tamil indian,400 | 700,,tamil,Jonathan Pinhorn,1927,2178,No,2024-10-28,2024-10-29,https://fonts.google.com/specimen/Karla+Tamil+Upright
-Karma,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,580,1506,No,2014-06-25,2025-09-08,https://fonts.google.com/specimen/Karma
-Katibeh,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,KB Studio,1208,1409,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Katibeh
-Kaushan Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european well-known common,400,,latin | latin-ext,Impallari Type,269,846,No,2012-01-25,2025-09-10,https://fonts.google.com/specimen/Kaushan+Script
-Kavivanar,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european tamil indian,400,,latin | latin-ext | tamil,Tharique Azeez,1200,2030,No,2016-06-20,2025-09-08,https://fonts.google.com/specimen/Kavivanar
-Kavoon,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Viktoriya Grabowska,1140,1247,No,2013-01-23,2025-09-04,https://fonts.google.com/specimen/Kavoon
-Kay Pho Du,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong english western european extended-latin european,400 | 500 | 600 | 700,,kayah-li | latin | latin-ext,SIL International,1971,1903,No,2023-10-23,2025-05-30,https://fonts.google.com/specimen/Kay+Pho+Du
-Kdam Thmor Pro,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention khmer cambodian english western european extended-latin european,400,,khmer | latin | latin-ext,Tep Sovichet | Hak Longdey,1157,660,No,2022-05-11,2025-09-02,https://fonts.google.com/specimen/Kdam+Thmor+Pro
-Keania One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Julia Petretta,1281,1919,No,2012-10-31,2025-09-11,https://fonts.google.com/specimen/Keania+One
-Kedebideri,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european,400 | 500 | 600 | 700 | 800 | 900,,beria-erfe | latin,SIL International,1938,2160,No,2025-09-10,2026-01-29,https://fonts.google.com/specimen/Kedebideri
-Kelly Slab,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Denis Masharov,800,840,No,2011-07-27,2025-06-02,https://fonts.google.com/specimen/Kelly+Slab
-Kenia,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Julia Petretta,1211,1003,No,2010-12-15,2025-09-11,https://fonts.google.com/specimen/Kenia
-Khand,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european well-known common,300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,242,93,No,2014-07-14,2025-09-04,https://fonts.google.com/specimen/Khand
-Khmer,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque khmer cambodian,400,,khmer,Danh Hong,1195,2032,No,2011-03-02,2025-09-17,https://fonts.google.com/specimen/Khmer
-Khula,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european,300 | 400 | 600 | 700 | 800,,devanagari | latin | latin-ext,Erin McLaughlin,516,1748,No,2015-01-28,2025-09-08,https://fonts.google.com/specimen/Khula
-Kings,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1643,502,No,2021-10-21,2025-09-11,https://fonts.google.com/specimen/Kings
-Kirang Haerang,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,Woowahan Brothers,1605,2253,No,2018-02-24,2025-09-10,https://fonts.google.com/specimen/Kirang+Haerang
-Kite One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1406,1456,No,2012-10-26,2025-09-10,https://fonts.google.com/specimen/Kite+One
-Kiwi Maru,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,300 | 400 | 500,,cyrillic | japanese | latin | latin-ext,Hiroki-Chan,596,1505,No,2020-12-14,2025-09-11,https://fonts.google.com/specimen/Kiwi+Maru
-Klee One,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal russian cyrillic slavic greek extended japanese kanji hiragana katakana english western european extended-latin european,400 | 600,,cyrillic | greek-ext | japanese | latin | latin-ext,Fontworks Inc.,687,2023,No,2021-06-08,2025-09-08,https://fonts.google.com/specimen/Klee+One
-Knewave,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Tyler Finck,693,1617,No,2011-11-23,2025-09-16,https://fonts.google.com/specimen/Knewave
-KoHo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,847,485,No,2018-09-10,2025-09-11,https://fonts.google.com/specimen/KoHo
-Kodchasan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,907,800,No,2018-09-10,2025-09-08,https://fonts.google.com/specimen/Kodchasan
-Kode Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700,wght: -,latin | latin-ext,Isa Ozler,1317,2075,No,2024-02-14,2025-09-10,https://fonts.google.com/specimen/Kode+Mono
-Koh Santepheap,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone khmer cambodian english western european,100 | 300 | 400 | 700 | 900,,khmer | latin,Danh Hong,1483,1599,No,2021-06-10,2025-09-10,https://fonts.google.com/specimen/Koh+Santepheap
-Kolker Brush,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1719,1914,No,2021-11-26,2025-09-16,https://fonts.google.com/specimen/Kolker+Brush
-Konkhmer Sleokchher,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention khmer cambodian english western european extended-latin european,400,,khmer | latin | latin-ext,Suon May Sophanith,1526,424,No,2023-04-26,2025-09-02,https://fonts.google.com/specimen/Konkhmer+Sleokchher
-Kosugi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,MOTOYA,626,376,No,2016-01-21,2025-09-08,https://fonts.google.com/specimen/Kosugi
-Kosugi Maru,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,MOTOYA,355,1539,No,2016-01-21,2025-09-08,https://fonts.google.com/specimen/Kosugi+Maru
-Kotta One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Ania Kruk,1431,1480,No,2012-01-25,2025-09-04,https://fonts.google.com/specimen/Kotta+One
-Koulen,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,649,823,No,2011-03-02,2025-09-16,https://fonts.google.com/specimen/Koulen
-Kranky,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Sideshow,990,1224,No,2011-01-06,2025-06-02,https://fonts.google.com/specimen/Kranky
-Kreon,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Julia Petretta,545,1424,No,2011-02-02,2025-09-11,https://fonts.google.com/specimen/Kreon
-Kristi,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Birgit Pulk,682,1474,No,2010-12-20,2025-09-10,https://fonts.google.com/specimen/Kristi
-Krona One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Yvonne Schüttler,610,1556,No,2012-02-22,2025-09-04,https://fonts.google.com/specimen/Krona+One
-Krub,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,337,446,No,2018-09-10,2025-09-16,https://fonts.google.com/specimen/Krub
-Kufam,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,arabic | latin | latin-ext | vietnamese,Original Type | Wael Morcos | Artur Schmal,601,2012,No,2020-07-14,2025-09-02,https://fonts.google.com/specimen/Kufam
-Kulim Park,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 600 | 600i | 700 | 700i,,latin | latin-ext,Dale Sattler,1279,901,No,2019-09-25,2025-09-11,https://fonts.google.com/specimen/Kulim+Park
-Kumar One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention gujarati indian english western european extended-latin european,400,,gujarati | latin | latin-ext,Indian Type Foundry,1410,369,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Kumar+One
-Kumar One Outline,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention gujarati indian english western european extended-latin european,400,,gujarati | latin | latin-ext,Indian Type Foundry,1606,1671,No,2016-06-15,2025-06-25,https://fonts.google.com/specimen/Kumar+One+Outline
-Kumbh Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,YOPQ: - | wght: -,latin | latin-ext | math | symbols,Saurabh Sharma,264,1605,No,2020-07-22,2025-09-16,https://fonts.google.com/specimen/Kumbh+Sans
-Kurale,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic cyrillic extended hindi devanagari indian english western european extended-latin european,400,,cyrillic | cyrillic-ext | devanagari | latin | latin-ext,Eduardo Tunni,879,2154,No,2015-05-14,2025-09-11,https://fonts.google.com/specimen/Kurale
-LINE Seed JP,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic greek extended japanese kanji hiragana katakana english western european extended-latin european,100 | 400 | 700 | 800,,cyrillic | greek-ext | japanese | latin | latin-ext,LY Corporation | Fontrix | Fontworks,315,2,No,2026-01-21,2026-01-22,https://fonts.google.com/specimen/LINE+Seed+JP
-LXGW Marker Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese traditional russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,400,,chinese-traditional | cyrillic | cyrillic-ext | greek | latin | latin-ext | symbols2 | vietnamese,LXGW,1702,100,No,2025-06-11,2025-06-12,https://fonts.google.com/specimen/LXGW+Marker+Gothic
-LXGW WenKai Mono TC,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code chinese traditional russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,300 | 400 | 700,,chinese-traditional | cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | lisu | vietnamese,LXGW,1597,2267,No,2024-05-23,2025-06-09,https://fonts.google.com/specimen/LXGW+WenKai+Mono+TC
-LXGW WenKai TC,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal chinese traditional russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,300 | 400 | 700,,chinese-traditional | cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | lisu | vietnamese,LXGW,1411,2079,No,2024-05-23,2025-06-09,https://fonts.google.com/specimen/LXGW+WenKai+TC
-La Belle Aurore,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,515,977,No,2011-06-08,2025-09-04,https://fonts.google.com/specimen/La+Belle+Aurore
-Labrada,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Mercedes Jáuregui | Omnibus-Type,1707,650,No,2023-01-18,2025-09-02,https://fonts.google.com/specimen/Labrada
-Lacquer,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Niki Polyocan | Eli Block,927,1300,No,2019-07-03,2025-09-11,https://fonts.google.com/specimen/Lacquer
-Laila,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,604,821,No,2014-08-27,2025-06-25,https://fonts.google.com/specimen/Laila
-Lakki Reddy,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1561,1516,No,2015-01-12,2025-09-10,https://fonts.google.com/specimen/Lakki+Reddy
-Lalezar,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque arabic RTL middle-east english western european extended-latin european vietnamese,400,,arabic | latin | latin-ext | vietnamese,Borna Izadpanah,459,289,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Lalezar
-Lancelot,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Marion Kadi,1508,1759,No,2011-11-02,2025-09-02,https://fonts.google.com/specimen/Lancelot
-Langar,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention punjabi gurmukhi indian english western european extended-latin european,400,,gurmukhi | latin | latin-ext,Typeland | Alessia Mazzarella,1676,2269,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Langar
-Lateef,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible arabic RTL middle-east english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700 | 800,,arabic | latin | latin-ext,SIL International,361,43,No,2015-03-03,2025-09-16,https://fonts.google.com/specimen/Lateef
-Lato,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european top-popular trending most-used,100 | 100i | 300 | 300i | 400 | 400i | 700 | 700i | 900 | 900i,,latin | latin-ext,Łukasz Dziedzic,10,1338,No,2010-12-15,2025-09-16,https://fonts.google.com/specimen/Lato
-Lavishly Yours,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1133,328,No,2022-03-11,2025-09-04,https://fonts.google.com/specimen/Lavishly+Yours
-League Gothic,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-width english western european extended-latin european vietnamese well-known common,400,wdth: -,latin | latin-ext | vietnamese,Tyler Finck | Caroline Hadilaksono | Micah Rich,295,1344,No,2021-12-09,2025-09-10,https://fonts.google.com/specimen/League+Gothic
-League Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Haley Fiege,983,1598,No,2011-03-09,2025-09-10,https://fonts.google.com/specimen/League+Script
-League Spartan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Matt Bailey | Tyler Finck,186,1672,No,2021-12-17,2025-09-08,https://fonts.google.com/specimen/League+Spartan
-Leckerli One,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Gesine Todt,507,1562,No,2011-07-20,2025-09-11,https://fonts.google.com/specimen/Leckerli+One
-Ledger,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Denis Masharov,1112,600,No,2012-02-22,2025-09-10,https://fonts.google.com/specimen/Ledger
-Lekton,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code italic english western european extended-latin european,400 | 400i | 700,,latin | latin-ext,ISIA Urbino,780,1156,No,2010-12-20,2025-09-10,https://fonts.google.com/specimen/Lekton
-Lemon,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1081,2200,No,2011-11-30,2025-09-04,https://fonts.google.com/specimen/Lemon
-Lemonada,Display,Sans Serif,Handwriting,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque script cursive hand-drawn artistic informal variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext | vietnamese,Mohamed Gaber | Eduardo Tunni,542,885,No,2016-06-15,2025-09-02,https://fonts.google.com/specimen/Lemonada
-Lexend,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,110,843,No,2021-03-08,2025-09-08,https://fonts.google.com/specimen/Lexend
-Lexend Deca,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,142,1479,No,2019-08-01,2025-09-16,https://fonts.google.com/specimen/Lexend+Deca
-Lexend Exa,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,615,1438,No,2019-08-01,2025-09-08,https://fonts.google.com/specimen/Lexend+Exa
-Lexend Giga,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,304,63,No,2019-08-01,2025-09-10,https://fonts.google.com/specimen/Lexend+Giga
-Lexend Mega,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,1327,2151,No,2019-08-01,2025-09-08,https://fonts.google.com/specimen/Lexend+Mega
-Lexend Peta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,799,623,No,2019-08-01,2025-09-11,https://fonts.google.com/specimen/Lexend+Peta
-Lexend Tera,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,1468,1926,No,2019-08-01,2025-09-04,https://fonts.google.com/specimen/Lexend+Tera
-Lexend Zetta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Bonnie Shaver-Troup | Thomas Jockin | Santiago Orozco | Héctor Gómez | Superunion,902,243,No,2019-08-01,2025-09-11,https://fonts.google.com/specimen/Lexend+Zetta
-Libertinus Keyboard,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Philipp H. Poll,1996,672,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Libertinus+Keyboard
-Libertinus Math,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | math | vietnamese,Philipp H. Poll,1626,1524,No,2025-06-23,2025-06-25,https://fonts.google.com/specimen/Libertinus+Math
-Libertinus Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code english western european extended-latin european,400,,latin | latin-ext,Philipp H. Poll,1747,1744,No,2025-06-23,2025-06-25,https://fonts.google.com/specimen/Libertinus+Mono
-Libertinus Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400 | 400i | 700,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Philipp H. Poll,1633,533,No,2025-07-28,2025-07-30,https://fonts.google.com/specimen/Libertinus+Sans
-Libertinus Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,400 | 400i | 600 | 600i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | latin | latin-ext | vietnamese,Philipp H. Poll,1651,217,No,2025-07-28,2025-07-30,https://fonts.google.com/specimen/Libertinus+Serif
-Libertinus Serif Display,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,400,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Philipp H. Poll,1887,2224,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Libertinus+Serif+Display
-Libre Barcode 128,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin,Lasse Fister,673,1534,No,2017-07-31,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+128
-Libre Barcode 128 Text,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin,Lasse Fister,1051,1946,No,2017-07-31,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+128+Text
-Libre Barcode 39,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european well-known common,400,,latin,Lasse Fister,270,392,No,2017-07-31,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+39
-Libre Barcode 39 Extended,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin,Lasse Fister,1345,1712,No,2017-08-21,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+39+Extended
-Libre Barcode 39 Extended Text,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin,Lasse Fister,892,1880,No,2017-08-21,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+39+Extended+Text
-Libre Barcode 39 Text,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin,Lasse Fister,688,1663,No,2017-07-31,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+39+Text
-Libre Barcode EAN13 Text,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin,Lasse Fister,1541,1594,No,2020-10-25,2025-09-17,https://fonts.google.com/specimen/Libre+Barcode+EAN13+Text
-Libre Baskerville,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Impallari Type,72,596,No,2012-11-30,2025-11-20,https://fonts.google.com/specimen/Libre+Baskerville
-Libre Bodoni,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Pablo Impallari | Rodrigo Fuenzalida,353,1694,No,2022-04-13,2025-09-16,https://fonts.google.com/specimen/Libre+Bodoni
-Libre Caslon Display,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Impallari Type,640,112,No,2017-11-29,2025-09-16,https://fonts.google.com/specimen/Libre+Caslon+Display
-Libre Caslon Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european well-known common,400 | 400i | 700,,latin | latin-ext,Impallari Type,257,1420,No,2013-03-14,2025-05-30,https://fonts.google.com/specimen/Libre+Caslon+Text
-Libre Franklin,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Impallari Type,82,876,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Libre+Franklin
-Licorice,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1021,2286,No,2021-11-18,2025-09-11,https://fonts.google.com/specimen/Licorice
-Life Savers,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700 | 800,,latin | latin-ext,Impallari Type,1024,394,No,2012-08-13,2025-09-08,https://fonts.google.com/specimen/Life+Savers
-Lilex,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | symbols2 | vietnamese,Mike Abbink | Paul van der Laan | Pieter van Rosmalen | Mikhael Khrustik,1787,1967,No,2025-12-08,2025-12-10,https://fonts.google.com/specimen/Lilex
-Lilita One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,Juan Montoreano,155,1390,No,2012-01-11,2025-09-10,https://fonts.google.com/specimen/Lilita+One
-Lily Script One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Julia Petretta,970,537,No,2013-06-05,2025-09-08,https://fonts.google.com/specimen/Lily+Script+One
-Limelight,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Nicole Fally | Sorkin Type,543,229,No,2011-05-25,2025-09-16,https://fonts.google.com/specimen/Limelight
-Linden Hill,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Barry Schwartz,1472,1734,No,2011-10-19,2025-09-10,https://fonts.google.com/specimen/Linden+Hill
-Linefont,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-width,100 | 1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,,Dmitry Ivanov,1826,1242,No,2023-09-26,2025-09-17,https://fonts.google.com/specimen/Linefont
-Lisu Bosa,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | lisu,SIL International,1867,1962,No,2023-07-20,2025-05-30,https://fonts.google.com/specimen/Lisu+Bosa
-Liter,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Anton Skugarov | Alexandr Ivanin,1421,565,No,2025-01-08,2025-06-25,https://fonts.google.com/specimen/Liter
-Literata,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international well-known common,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,TypeTogether,265,1649,No,2018-12-06,2025-09-11,https://fonts.google.com/specimen/Literata
-Liu Jian Mao Cao,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention chinese simplified mandarin english western european,400,,chinese-simplified | latin,Liu Zhengjiang | Kimberly Geswein | ZhongQi,1293,682,No,2019-03-17,2025-09-04,https://fonts.google.com/specimen/Liu+Jian+Mao+Cao
-Livvic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 900 | 900i,,latin | latin-ext | vietnamese,LV= | Jacques Le Bailly,556,1006,No,2019-06-21,2025-09-16,https://fonts.google.com/specimen/Livvic
-Lobster,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Impallari Type,115,1303,No,2010-05-17,2025-09-08,https://fonts.google.com/specimen/Lobster
-Lobster Two,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic english western european popular widely-used,400 | 400i | 700 | 700i,,latin,Impallari Type,51,90,No,2011-06-21,2025-09-11,https://fonts.google.com/specimen/Lobster+Two
-Londrina Outline,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Marcelo Magalhães,1323,1724,No,2012-03-14,2025-09-08,https://fonts.google.com/specimen/Londrina+Outline
-Londrina Shadow,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Marcelo Magalhães,1462,2048,No,2012-03-14,2025-09-16,https://fonts.google.com/specimen/Londrina+Shadow
-Londrina Sketch,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Marcelo Magalhães,1459,143,No,2012-03-14,2025-09-08,https://fonts.google.com/specimen/Londrina+Sketch
-Londrina Solid,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,100 | 300 | 400 | 900,,latin,Marcelo Magalhães,532,1982,No,2012-03-14,2025-09-16,https://fonts.google.com/specimen/Londrina+Solid
-Long Cang,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal chinese simplified mandarin english western european,400,,chinese-simplified | latin,Chen Xiaomin,1187,275,No,2019-03-17,2025-09-08,https://fonts.google.com/specimen/Long+Cang
-Lora,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese multilingual international top-popular trending most-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | math | symbols | vietnamese,Cyreal,39,1592,No,2011-07-06,2025-09-11,https://fonts.google.com/specimen/Lora
-Love Light,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1638,1841,No,2021-12-02,2025-09-04,https://fonts.google.com/specimen/Love+Light
-Love Ya Like A Sister,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,747,1782,No,2011-07-06,2025-09-04,https://fonts.google.com/specimen/Love+Ya+Like+A+Sister
-Loved by the King,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,1087,2173,No,2011-07-06,2025-09-04,https://fonts.google.com/specimen/Loved+by+the+King
-Lovers Quarrel,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1292,2248,No,2012-03-29,2025-09-08,https://fonts.google.com/specimen/Lovers+Quarrel
-Luckiest Guy,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,Astigmatic,195,612,No,2011-01-06,2025-09-08,https://fonts.google.com/specimen/Luckiest+Guy
-Lugrasimo,Handwriting,Serif,Handwriting,personal casual friendly warm handwritten script organic transitional oldstyle didone script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,The DocRepair Project | Astigmatic,1384,1950,No,2023-04-12,2025-06-02,https://fonts.google.com/specimen/Lugrasimo
-Lumanosimo,Handwriting,Serif,Handwriting,personal casual friendly warm handwritten script organic transitional oldstyle didone script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,The DocRepair Project | Eduardo Tunni,1017,995,No,2023-04-12,2025-06-02,https://fonts.google.com/specimen/Lumanosimo
-Lunasima,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli english western european extended-latin european vietnamese multilingual international,400 | 700,,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | latin | latin-ext | vietnamese,The DocRepair Project | Google,1659,1707,No,2023-07-10,2025-05-30,https://fonts.google.com/specimen/Lunasima
-Lusitana,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400 | 700,,latin,Ana Paula Megda,357,441,No,2012-01-11,2025-09-08,https://fonts.google.com/specimen/Lusitana
-Lustria,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,MADType,416,1736,No,2012-01-18,2025-09-11,https://fonts.google.com/specimen/Lustria
-Luxurious Roman,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1502,1855,No,2021-11-18,2025-09-08,https://fonts.google.com/specimen/Luxurious+Roman
-Luxurious Script,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1335,2096,No,2021-11-02,2025-09-08,https://fonts.google.com/specimen/Luxurious+Script
-M PLUS 1,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight japanese kanji hiragana katakana english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,japanese | latin | latin-ext | vietnamese,Coji Morishita,372,1248,No,2021-08-25,2025-09-10,https://fonts.google.com/specimen/M+PLUS+1
-M PLUS 1 Code,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight japanese kanji hiragana katakana english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700,wght: -,japanese | latin | latin-ext | vietnamese,Coji Morishita,390,19,No,2021-09-21,2025-09-04,https://fonts.google.com/specimen/M+PLUS+1+Code
-M PLUS 1p,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli japanese kanji hiragana katakana english western european extended-latin european vietnamese multilingual international popular widely-used,100 | 300 | 400 | 500 | 700 | 800 | 900,,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | japanese | latin | latin-ext | vietnamese,Coji Morishita | M+ Fonts Project,148,346,No,2017-06-12,2026-01-06,https://fonts.google.com/specimen/M+PLUS+1p
-M PLUS 2,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight japanese kanji hiragana katakana english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,japanese | latin | latin-ext | vietnamese,Coji Morishita,551,605,No,2021-08-25,2025-09-08,https://fonts.google.com/specimen/M+PLUS+2
-M PLUS Code Latin,Sans Serif,Sans Serif,Monospace,clean modern minimal professional readable neutral geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700,wdth: - | wght: -,latin | latin-ext | vietnamese,Coji Morishita,1683,64,No,2021-09-21,2025-09-16,https://fonts.google.com/specimen/M+PLUS+Code+Latin
-M PLUS Rounded 1c,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli japanese kanji hiragana katakana english western european extended-latin european vietnamese multilingual international popular widely-used,100 | 300 | 400 | 500 | 700 | 800 | 900,,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | japanese | latin | latin-ext | vietnamese,Coji Morishita | M+ Fonts Project,116,1620,No,2018-05-17,2026-01-06,https://fonts.google.com/specimen/M+PLUS+Rounded+1c
-Ma Shan Zheng,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal chinese simplified mandarin english western european,400,,chinese-simplified | latin,Ma ShanZheng,609,457,No,2019-03-17,2026-02-17,https://fonts.google.com/specimen/Ma+Shan+Zheng
-Macondo,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,John Vargas Beltrán,368,1585,No,2012-01-18,2025-09-11,https://fonts.google.com/specimen/Macondo
-Macondo Swash Caps,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,John Vargas Beltrán,1198,1676,No,2012-01-18,2025-09-08,https://fonts.google.com/specimen/Macondo+Swash+Caps
-Mada,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,arabic | latin | latin-ext,Khaled Hosny | Paul D. Hunt,432,1673,No,2017-07-26,2025-09-04,https://fonts.google.com/specimen/Mada
-Madimi One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Taurai Valerie Mtake | Mirko Velimirović,992,828,No,2024-02-26,2025-05-30,https://fonts.google.com/specimen/Madimi+One
-Magra,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400 | 700,,latin | latin-ext,FontFuror,851,1814,No,2012-01-11,2025-09-08,https://fonts.google.com/specimen/Magra
-Maiden Orange,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1125,997,No,2010-12-20,2025-09-08,https://fonts.google.com/specimen/Maiden+Orange
-Maitree,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible english western european extended-latin european thai southeast-asia vietnamese,200 | 300 | 400 | 500 | 600 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,726,531,No,2016-06-15,2025-09-11,https://fonts.google.com/specimen/Maitree
-Major Mono Display,Monospace,Sans Serif,Monospace | Display,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Emre Parlak,612,544,No,2018-12-11,2025-09-02,https://fonts.google.com/specimen/Major+Mono+Display
-Mako,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,975,930,No,2011-05-11,2025-05-30,https://fonts.google.com/specimen/Mako
-Mali,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,573,1465,No,2018-09-10,2025-09-08,https://fonts.google.com/specimen/Mali
-Mallanna,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,810,368,No,2014-12-10,2025-09-10,https://fonts.google.com/specimen/Mallanna
-Maname,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european sinhala sri-lankan vietnamese,400,,latin | latin-ext | sinhala | vietnamese,Pathum Egodawatta | Mooniak,1897,508,No,2024-07-04,2025-05-30,https://fonts.google.com/specimen/Maname
-Mandali,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,583,569,No,2014-12-10,2025-09-10,https://fonts.google.com/specimen/Mandali
-Manjari,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european malayalam indian,100 | 400 | 700,,latin | latin-ext | malayalam,Santhosh Thottingal,845,1490,No,2018-11-21,2025-09-11,https://fonts.google.com/specimen/Manjari
-Manrope,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international top-popular trending most-used,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Mikhail Sharanda,38,871,No,2019-10-02,2025-09-04,https://fonts.google.com/specimen/Manrope
-Mansalva,Handwriting,Sans Serif,Display,personal casual friendly warm handwritten script organic geometric humanist grotesque headline hero decorative large-text attention greek english western european extended-latin european vietnamese,400,,greek | latin | latin-ext | vietnamese,Carolina Short,880,1647,No,2019-08-29,2025-09-16,https://fonts.google.com/specimen/Mansalva
-Manuale,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,1129,104,No,2017-07-31,2025-09-10,https://fonts.google.com/specimen/Manuale
-Manufacturing Consent,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Fredrick Brennan,1554,1575,No,2025-06-23,2025-06-25,https://fonts.google.com/specimen/Manufacturing+Consent
-Marcellus,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european well-known common,400,,latin | latin-ext,Astigmatic,176,1596,No,2012-05-09,2025-09-11,https://fonts.google.com/specimen/Marcellus
-Marcellus SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Astigmatic,587,1768,No,2012-05-09,2025-09-02,https://fonts.google.com/specimen/Marcellus+SC
-Marck Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Denis Masharov,464,872,No,2011-10-12,2025-09-10,https://fonts.google.com/specimen/Marck+Script
-Margarine,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1303,1381,No,2012-11-16,2025-09-16,https://fonts.google.com/specimen/Margarine
-Marhey,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european,300 | 400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext,Nur Syamsi | Bustanul Arifin,1347,1321,No,2022-10-06,2025-09-08,https://fonts.google.com/specimen/Marhey
-Markazi Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext | vietnamese,Borna Izadpanah | Florian Runge | Fiona Ross,759,1227,No,2018-06-05,2025-09-04,https://fonts.google.com/specimen/Markazi+Text
-Marko One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Cyreal,1478,1687,No,2011-12-13,2025-09-16,https://fonts.google.com/specimen/Marko+One
-Marmelad,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Cyreal | Manvel Shmavonyan,744,984,No,2011-12-07,2025-09-11,https://fonts.google.com/specimen/Marmelad
-Martel,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible hindi devanagari indian english western european extended-latin european well-known common,200 | 300 | 400 | 600 | 700 | 800 | 900,,devanagari | latin | latin-ext,Dan Reynolds,284,1930,No,2015-04-20,2025-09-04,https://fonts.google.com/specimen/Martel
-Martel Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible hindi devanagari indian english western european extended-latin european,200 | 300 | 400 | 600 | 700 | 800 | 900,,devanagari | latin | latin-ext,Dan Reynolds | Mathieu Réguer,482,1405,No,2015-03-04,2025-09-04,https://fonts.google.com/specimen/Martel+Sans
-Martian Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext,Roman Shamin | Evil Martians,1011,1508,No,2022-11-25,2025-09-16,https://fonts.google.com/specimen/Martian+Mono
-Marvel,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic english western european,400 | 400i | 700 | 700i,,latin,Carolina Trebol,795,599,No,2011-08-03,2025-06-02,https://fonts.google.com/specimen/Marvel
-Matangi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight hindi devanagari indian english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,devanagari | latin | latin-ext,The Graphic Ant,1899,1791,No,2025-04-28,2025-08-26,https://fonts.google.com/specimen/Matangi
-Mate,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Eduardo Tunni,653,1462,No,2011-11-02,2025-09-10,https://fonts.google.com/specimen/Mate
-Mate SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1260,575,No,2011-11-02,2025-09-04,https://fonts.google.com/specimen/Mate+SC
-Matemasie,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Adam Yeo,1663,562,No,2024-08-06,2025-05-30,https://fonts.google.com/specimen/Matemasie
-Maven Pro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Joe Prince,160,865,No,2011-05-25,2025-09-02,https://fonts.google.com/specimen/Maven+Pro
-McLaren,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,678,172,No,2012-08-13,2025-09-10,https://fonts.google.com/specimen/McLaren
-Mea Culpa,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1357,779,No,2021-12-02,2025-09-10,https://fonts.google.com/specimen/Mea+Culpa
-Meddon,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,794,815,No,2011-02-02,2025-09-04,https://fonts.google.com/specimen/Meddon
-MedievalSharp,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,862,644,No,2011-03-02,2025-09-10,https://fonts.google.com/specimen/MedievalSharp
-Medula One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,LatinoType,1199,2039,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Medula+One
-Meera Inimai,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european tamil indian,400,,latin | tamil,SMC,1444,1500,No,2016-05-31,2025-09-04,https://fonts.google.com/specimen/Meera+Inimai
-Megrim,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Daniel Johnson,768,358,No,2011-05-04,2025-09-10,https://fonts.google.com/specimen/Megrim
-Meie Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Johan Kallas | Mihkel Virkus,935,2022,No,2012-08-21,2025-09-11,https://fonts.google.com/specimen/Meie+Script
-Menbere,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight ethiopic amharic english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700,wght: -,ethiopic | latin | latin-ext | vietnamese,Aleme Tadesse | Sorkin Type | Eben Sorkin,1782,67,No,2025-06-23,2025-06-25,https://fonts.google.com/specimen/Menbere
-Meow Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,893,343,No,2021-11-02,2025-09-11,https://fonts.google.com/specimen/Meow+Script
-Merienda,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Eduardo Tunni,362,676,No,2012-10-31,2025-09-16,https://fonts.google.com/specimen/Merienda
-Merriweather,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wdth: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Sorkin Type,32,1184,No,2011-05-11,2025-09-02,https://fonts.google.com/specimen/Merriweather
-Merriweather Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight cyrillic extended english western european extended-latin european vietnamese popular widely-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,cyrillic-ext | latin | latin-ext | vietnamese,Sorkin Type,135,471,No,2013-03-06,2025-09-16,https://fonts.google.com/specimen/Merriweather+Sans
-Metal,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1481,2272,No,2011-03-02,2025-09-11,https://fonts.google.com/specimen/Metal
-Metal Mania,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Open Window,1070,450,No,2012-07-11,2025-09-16,https://fonts.google.com/specimen/Metal+Mania
-Metamorphous,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,James Grieshaber,855,1471,No,2011-12-07,2025-09-08,https://fonts.google.com/specimen/Metamorphous
-Metrophobic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Vernon Adams,575,439,No,2011-05-11,2025-09-11,https://fonts.google.com/specimen/Metrophobic
-Michroma,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,487,1721,No,2011-03-30,2025-09-04,https://fonts.google.com/specimen/Michroma
-Micro 5,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sarah Cadigan-Fried,1441,2102,No,2024-02-14,2025-05-30,https://fonts.google.com/specimen/Micro+5
-Micro 5 Charted,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext | math | symbols,Sarah Cadigan-Fried,1943,295,No,2024-04-10,2025-05-30,https://fonts.google.com/specimen/Micro+5+Charted
-Milonga,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Impallari Type,1015,1688,No,2012-11-30,2025-09-10,https://fonts.google.com/specimen/Milonga
-Miltonian,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Impallari Type,1235,1311,No,2011-04-06,2025-09-16,https://fonts.google.com/specimen/Miltonian
-Miltonian Tattoo,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Impallari Type,1177,674,No,2011-04-06,2025-09-10,https://fonts.google.com/specimen/Miltonian+Tattoo
-Mina,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque bengali bangladeshi indian english western european extended-latin european,400 | 700,,bengali | latin | latin-ext,Suman Bhandary | Natanael Gama | Mooniak,971,2014,No,2018-02-28,2025-09-08,https://fonts.google.com/specimen/Mina
-Mingzat,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext | lepcha,SIL International,1770,1246,No,2022-05-25,2025-09-04,https://fonts.google.com/specimen/Mingzat
-Miniver,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Open Window,1205,2040,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Miniver
-Miriam Libre,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight hebrew RTL israeli english western european extended-latin european,400 | 500 | 600 | 700,wght: -,hebrew | latin | latin-ext,Michal Sahar,825,549,No,2016-06-20,2025-09-04,https://fonts.google.com/specimen/Miriam+Libre
-Mirza,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone arabic RTL middle-east english western european extended-latin european,400 | 500 | 600 | 700,,arabic | latin | latin-ext,KB Studio,876,150,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Mirza
-Miss Fajardose,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1518,1295,No,2011-11-30,2025-09-04,https://fonts.google.com/specimen/Miss+Fajardose
-Mitr,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european thai southeast-asia vietnamese well-known common,200 | 300 | 400 | 500 | 600 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,288,152,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Mitr
-Mochiy Pop One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention japanese kanji hiragana katakana english western european,400,,japanese | latin,FONTDASU,760,1955,No,2021-04-14,2025-09-08,https://fonts.google.com/specimen/Mochiy+Pop+One
-Mochiy Pop P One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention japanese kanji hiragana katakana english western european,400,,japanese | latin,FONTDASU,1090,1760,No,2021-04-14,2025-09-02,https://fonts.google.com/specimen/Mochiy+Pop+P+One
-Modak,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Ek Type,912,225,No,2015-02-18,2025-09-11,https://fonts.google.com/specimen/Modak
-Modern Antiqua,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1039,383,No,2011-07-13,2025-09-08,https://fonts.google.com/specimen/Modern+Antiqua
-Moderustic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext,Tural Alisoy,1558,1678,No,2024-08-06,2025-09-10,https://fonts.google.com/specimen/Moderustic
-Mogra,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention gujarati indian english western european extended-latin european,400,,gujarati | latin | latin-ext,Lipi Raval,1401,303,No,2016-06-15,2025-09-11,https://fonts.google.com/specimen/Mogra
-Mohave,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Gumpita Rahayu,1117,832,No,2020-01-23,2025-09-04,https://fonts.google.com/specimen/Mohave
-Moirai One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european extended-latin european,400,,korean | latin | latin-ext,Jiyeon Park | JAMO,1793,1978,No,2023-06-05,2026-03-03,https://fonts.google.com/specimen/Moirai+One
-Molengo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Denis Jacquerye,914,796,No,2010-04-19,2025-09-16,https://fonts.google.com/specimen/Molengo
-Molle,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention italic english western european extended-latin european,400i,,latin | latin-ext,Elena Albertoni,1581,1367,No,2012-09-18,2025-09-04,https://fonts.google.com/specimen/Molle
-Momo Signature,Sans Serif,Sans Serif,Handwriting,clean modern minimal professional readable neutral geometric humanist grotesque script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Type Associates,1312,403,No,2025-10-28,2025-10-29,https://fonts.google.com/specimen/Momo+Signature
-Momo Trust Display,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Type Associates,1557,283,No,2025-10-28,2025-10-29,https://fonts.google.com/specimen/Momo+Trust+Display
-Momo Trust Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | vietnamese,Type Associates,1614,244,No,2025-10-28,2025-11-20,https://fonts.google.com/specimen/Momo+Trust+Sans
-Mona Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Tobias Bjerrome Ahlin | Github | Degarism Studio | Sebastian Carewe,448,452,No,2024-11-04,2025-09-04,https://fonts.google.com/specimen/Mona+Sans
-Monda,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Vernon Adams,370,108,No,2012-11-30,2025-09-11,https://fonts.google.com/specimen/Monda
-Monofett,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,1077,1761,No,2011-05-04,2025-09-08,https://fonts.google.com/specimen/Monofett
-Monomakh,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,Aleksandr Andreev | Nikita Simmons,1509,420,No,2025-02-11,2025-05-30,https://fonts.google.com/specimen/Monomakh
-Monomaniac One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Maniackers Design,848,2114,No,2020-12-08,2025-09-16,https://fonts.google.com/specimen/Monomaniac+One
-Monoton,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,383,2087,No,2011-08-24,2025-09-16,https://fonts.google.com/specimen/Monoton
-Monsieur La Doulaise,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,694,1856,No,2011-11-30,2025-09-08,https://fonts.google.com/specimen/Monsieur+La+Doulaise
-Montaga,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Alejandra Rodriguez,1141,1666,No,2012-01-18,2025-09-04,https://fonts.google.com/specimen/Montaga
-Montagu Slab,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700,opsz: - | wght: -,latin | latin-ext | vietnamese,Florian Karsten,659,1793,No,2021-09-20,2025-09-04,https://fonts.google.com/specimen/Montagu+Slab
-MonteCarlo,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1005,1366,No,2021-05-14,2025-09-11,https://fonts.google.com/specimen/MonteCarlo
-Montez,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,965,1716,No,2011-08-17,2025-09-08,https://fonts.google.com/specimen/Montez
-Montserrat,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Julieta Ulanovsky | Sol Matas | Juan Pablo del Peral | Jacques Le Bailly,8,1194,No,2011-12-13,2025-09-04,https://fonts.google.com/specimen/Montserrat
-Montserrat Alternates,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Julieta Ulanovsky | Sol Matas | Juan Pablo del Peral | Jacques Le Bailly,221,1439,No,2012-10-01,2025-09-04,https://fonts.google.com/specimen/Montserrat+Alternates
-Montserrat Underline,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Julieta Ulanovsky | Sol Matas | Juan Pablo del Peral | Jacques Le Bailly,1389,2166,No,2024-12-02,2025-09-04,https://fonts.google.com/specimen/Montserrat+Underline
-Moo Lah Lah,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1760,594,No,2021-11-26,2025-09-10,https://fonts.google.com/specimen/Moo+Lah+Lah
-Mooli,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,1223,280,No,2023-09-12,2025-05-30,https://fonts.google.com/specimen/Mooli
-Moon Dance,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1082,850,No,2021-11-18,2025-09-16,https://fonts.google.com/specimen/Moon+Dance
-Moul,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1042,1859,No,2011-03-02,2025-09-16,https://fonts.google.com/specimen/Moul
-Moulpali,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque khmer cambodian english western european,400,,khmer | latin,Danh Hong,1729,1541,No,2011-03-02,2025-09-10,https://fonts.google.com/specimen/Moulpali
-Mountains of Christmas,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european,400 | 700,,latin,Tart Workshop,752,771,No,2010-12-14,2025-09-08,https://fonts.google.com/specimen/Mountains+of+Christmas
-Mouse Memoirs,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,785,856,No,2012-11-02,2025-09-16,https://fonts.google.com/specimen/Mouse+Memoirs
-Mozilla Headline,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700,wdth: - | wght: -,latin | latin-ext,Studio DRAMA,1568,1407,No,2025-07-28,2025-07-30,https://fonts.google.com/specimen/Mozilla+Headline
-Mozilla Text,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Studio DRAMA,1144,2126,No,2025-07-28,2025-07-30,https://fonts.google.com/specimen/Mozilla+Text
-Mr Bedfort,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1540,735,No,2012-01-11,2025-09-08,https://fonts.google.com/specimen/Mr+Bedfort
-Mr Dafoe,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sudtipos,433,1007,No,2011-11-30,2025-09-02,https://fonts.google.com/specimen/Mr+Dafoe
-Mr De Haviland,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sudtipos,899,1008,No,2011-11-30,2025-09-16,https://fonts.google.com/specimen/Mr+De+Haviland
-Mrs Saint Delafield,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Sudtipos,520,1798,No,2012-01-11,2025-09-16,https://fonts.google.com/specimen/Mrs+Saint+Delafield
-Mrs Sheppards,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1598,1278,No,2011-11-30,2025-09-08,https://fonts.google.com/specimen/Mrs+Sheppards
-Ms Madi,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,450,589,No,2022-03-23,2025-05-30,https://fonts.google.com/specimen/Ms+Madi
-Mukta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible hindi devanagari indian english western european extended-latin european popular widely-used,200 | 300 | 400 | 500 | 600 | 700 | 800,,devanagari | latin | latin-ext,Ek Type,104,1895,No,2017-01-26,2025-09-08,https://fonts.google.com/specimen/Mukta
-Mukta Mahee,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible punjabi gurmukhi indian english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700 | 800,,gurmukhi | latin | latin-ext,Ek Type,937,486,No,2017-05-19,2025-09-04,https://fonts.google.com/specimen/Mukta+Mahee
-Mukta Malar,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european tamil indian,200 | 300 | 400 | 500 | 600 | 700 | 800,,latin | latin-ext | tamil,Ek Type,402,733,No,2017-02-13,2025-09-16,https://fonts.google.com/specimen/Mukta+Malar
-Mukta Vaani,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible gujarati indian english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700 | 800,,gujarati | latin | latin-ext,Ek Type,739,34,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Mukta+Vaani
-Mulish,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,1000 | 1000i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Vernon Adams | Cyreal | Jacques Le Bailly,40,1298,No,2011-05-25,2025-09-08,https://fonts.google.com/specimen/Mulish
-Murecho,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek japanese kanji hiragana katakana english western european extended-latin european multilingual international,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | greek | japanese | latin | latin-ext,Neil Summerour,570,2155,No,2021-10-27,2025-09-08,https://fonts.google.com/specimen/Murecho
-MuseoModerno,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,502,784,No,2020-05-17,2025-09-08,https://fonts.google.com/specimen/MuseoModerno
-My Soul,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1316,114,No,2022-03-23,2025-09-04,https://fonts.google.com/specimen/My+Soul
-Mynerve,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention greek english western european extended-latin european vietnamese,400,,greek | latin | latin-ext | vietnamese,Carolina Short,1318,134,No,2023-01-03,2025-09-04,https://fonts.google.com/specimen/Mynerve
-Mystery Quest,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sideshow,1249,1865,No,2012-02-29,2025-09-16,https://fonts.google.com/specimen/Mystery+Quest
-NTR,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,1064,2028,No,2014-12-10,2025-09-11,https://fonts.google.com/specimen/NTR
-Nabla,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention variable variable-font responsive cyrillic extended english western european extended-latin european vietnamese,400,EDPT: - | EHLT: -,cyrillic-ext | latin | latin-ext | math | vietnamese,Arthur Reinders Folmer | Just van Rossum,1511,1971,No,2022-08-15,2025-09-16,https://fonts.google.com/specimen/Nabla
-Namdhinggo,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400 | 500 | 600 | 700 | 800,,latin | latin-ext | limbu,SIL International,1903,2298,No,2024-02-14,2025-05-30,https://fonts.google.com/specimen/Namdhinggo
-Nanum Brush Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal korean hangul english western european,400,,korean | latin,Sandoll Communication,531,250,No,2018-02-05,2025-09-08,https://fonts.google.com/specimen/Nanum+Brush+Script
-Nanum Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque korean hangul english western european popular widely-used,400 | 700 | 800,,korean | latin,Sandoll Communication,86,688,No,2018-02-05,2025-05-30,https://fonts.google.com/specimen/Nanum+Gothic
-Nanum Gothic Coding,Handwriting,Sans Serif,Monospace,personal casual friendly warm handwritten script organic geometric humanist grotesque mono fixed-width tabular data code korean hangul english western european well-known common,400 | 700,,korean | latin,Sandoll Communication,236,163,No,2018-02-05,2025-09-10,https://fonts.google.com/specimen/Nanum+Gothic+Coding
-Nanum Myeongjo,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone korean hangul english western european well-known common,400 | 700 | 800,,korean | latin,Sandoll Communication,175,691,No,2018-02-05,2025-09-10,https://fonts.google.com/specimen/Nanum+Myeongjo
-Nanum Pen Script,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal korean hangul english western european,400,,korean | latin,Sandoll Communication,408,361,No,2018-02-05,2025-05-30,https://fonts.google.com/specimen/Nanum+Pen+Script
-Narnoor,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400 | 500 | 600 | 700 | 800,,gunjala-gondi | latin | latin-ext | math | symbols,SIL International,1902,1878,No,2023-03-02,2025-06-25,https://fonts.google.com/specimen/Narnoor
-Nata Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Daniel Uzquiano,1185,1645,No,2025-07-28,2025-07-30,https://fonts.google.com/specimen/Nata+Sans
-National Park,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | vietnamese,Andrea Herstowski | Ben Hoepner | Jeremy Shellhorn,1485,80,No,2025-04-07,2025-09-11,https://fonts.google.com/specimen/National+Park
-Neonderthaw,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1499,396,No,2021-11-18,2025-09-11,https://fonts.google.com/specimen/Neonderthaw
-Nerko One,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Nermin Kahrimanovic,1118,2025,No,2020-11-06,2025-09-16,https://fonts.google.com/specimen/Nerko+One
-Neucha,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal russian cyrillic slavic english western european,400,,cyrillic | latin,Jovanny Lemonad,513,293,No,2010-09-21,2025-09-11,https://fonts.google.com/specimen/Neucha
-Neuton,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,200 | 300 | 400 | 400i | 700 | 800,,latin | latin-ext,Brian Zick,364,1160,No,2011-02-09,2025-09-16,https://fonts.google.com/specimen/Neuton
-New Amsterdam,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Vladimir Nikolic,1370,867,No,2024-08-09,2025-05-30,https://fonts.google.com/specimen/New+Amsterdam
-New Rocker,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Impallari Type,1085,2150,No,2012-11-30,2025-09-16,https://fonts.google.com/specimen/New+Rocker
-New Tegomin,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Kousuke Nagai,1455,1448,No,2020-12-13,2025-09-16,https://fonts.google.com/specimen/New+Tegomin
-News Cycle,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international well-known common,400 | 700,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Nathan Willis,216,158,No,2011-04-27,2025-09-16,https://fonts.google.com/specimen/News+Cycle
-Newsreader,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,opsz: - | wght: -,latin | latin-ext | vietnamese,Production Type,210,797,No,2020-07-01,2025-09-08,https://fonts.google.com/specimen/Newsreader
-Niconne,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,657,750,No,2011-11-23,2025-09-10,https://fonts.google.com/specimen/Niconne
-Niramit,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,506,874,No,2018-09-10,2025-09-04,https://fonts.google.com/specimen/Niramit
-Nixie One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Jovanny Lemonad,519,1219,No,2011-06-21,2025-09-10,https://fonts.google.com/specimen/Nixie+One
-Nobile,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic english western european extended-latin european,400 | 400i | 500 | 500i | 700 | 700i,,cyrillic | latin | latin-ext,Vernon Adams,557,401,No,2010-05-10,2025-09-08,https://fonts.google.com/specimen/Nobile
-Nokora,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight khmer cambodian english western european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,khmer | latin,Danh Hong,773,263,No,2011-11-09,2025-09-16,https://fonts.google.com/specimen/Nokora
-Norican,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,595,609,No,2012-02-08,2025-09-16,https://fonts.google.com/specimen/Norican
-Nosifer,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Typomondo,1000,1519,No,2011-12-19,2025-06-02,https://fonts.google.com/specimen/Nosifer
-Notable,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Eli Block | Hana Tanimura | Noemie Le Coz,1151,78,No,2018-08-02,2025-09-02,https://fonts.google.com/specimen/Notable
-Nothing You Could Do,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Kimberly Geswein,417,1170,No,2011-05-11,2025-09-16,https://fonts.google.com/specimen/Nothing+You+Could+Do
-Noticia Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european vietnamese well-known common,400 | 400i | 700 | 700i,,latin | latin-ext | vietnamese,JM Solé,249,171,No,2012-02-08,2025-09-10,https://fonts.google.com/specimen/Noticia+Text
-Noto Color Emoji,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque noto google international comprehensive popular widely-used,400,,emoji,Google,73,754,Yes,2021-02-16,2026-02-17,https://fonts.google.com/specimen/Noto+Color+Emoji
-Noto Emoji,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight noto google international comprehensive,300 | 400 | 500 | 600 | 700,wght: -,emoji,Google,757,291,Yes,2022-04-29,2025-11-26,https://fonts.google.com/specimen/Noto+Emoji
-Noto Kufi Arabic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european noto google international comprehensive well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,arabic | latin | latin-ext | math | symbols,Google,168,222,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Kufi+Arabic
-Noto Music,Sans Serif,Sans Serif,Symbols,clean modern minimal professional readable neutral geometric humanist grotesque icon symbol emoji pictograph english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | music,Google,1266,2117,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Music
-Noto Naskh Arabic,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european noto google international comprehensive well-known common,400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext | math | symbols,Google,214,135,Yes,2020-11-19,2026-01-28,https://fonts.google.com/specimen/Noto+Naskh+Arabic
-Noto Nastaliq Urdu,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european noto google international comprehensive well-known common,400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext,Google,277,50,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Nastaliq+Urdu
-Noto Rashi Hebrew,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight greek extended hebrew RTL israeli english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,greek-ext | hebrew | latin | latin-ext,Google,396,1,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Rashi+Hebrew
-Noto Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended hindi devanagari indian greek greek extended english western european extended-latin european vietnamese multilingual international noto google international comprehensive top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,cyrillic | cyrillic-ext | devanagari | greek | greek-ext | latin | latin-ext | vietnamese,Google,19,1233,Yes,2013-02-27,2025-09-11,https://fonts.google.com/specimen/Noto+Sans
-Noto Sans Adlam,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,adlam | latin | latin-ext,Google,1644,246,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Adlam
-Noto Sans Adlam Unjoined,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,adlam | latin | latin-ext,Google,1790,409,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Adlam+Unjoined
-Noto Sans Anatolian Hieroglyphs,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,anatolian-hieroglyphs | latin | latin-ext,Google,1628,1877,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Anatolian+Hieroglyphs
-Noto Sans Arabic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width arabic RTL middle-east english western european extended-latin european noto google international comprehensive popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,arabic | latin | latin-ext | math | symbols,Google,126,129,Yes,2020-11-19,2025-09-17,https://fonts.google.com/specimen/Noto+Sans+Arabic
-Noto Sans Armenian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width armenian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,armenian | latin | latin-ext,Google,1060,259,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Armenian
-Noto Sans Avestan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,avestan | latin | latin-ext,Google,1845,2196,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Avestan
-Noto Sans Balinese,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,balinese | latin | latin-ext,Google,1773,1801,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Balinese
-Noto Sans Bamum,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,bamum | latin | latin-ext,Google,1829,834,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Bamum
-Noto Sans Bassa Vah,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,bassa-vah | latin | latin-ext,Google,2001,306,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Bassa+Vah
-Noto Sans Batak,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,batak | latin | latin-ext,Google,1717,273,Yes,2020-11-19,2025-08-26,https://fonts.google.com/specimen/Noto+Sans+Batak
-Noto Sans Bengali,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width bengali bangladeshi indian english western european extended-latin european noto google international comprehensive well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,bengali | latin | latin-ext,Google,246,77,Yes,2020-11-19,2026-01-28,https://fonts.google.com/specimen/Noto+Sans+Bengali
-Noto Sans Bhaiksuki,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,bhaiksuki | latin | latin-ext,Google,1967,1328,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Bhaiksuki
-Noto Sans Brahmi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,brahmi | latin | latin-ext | math | symbols,Google,1881,2291,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Brahmi
-Noto Sans Buginese,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,buginese | latin | latin-ext,Google,1959,620,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Buginese
-Noto Sans Buhid,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,buhid | latin | latin-ext,Google,1390,2042,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Buhid
-Noto Sans Canadian Aboriginal,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,canadian-aboriginal | latin | latin-ext | math | symbols,Google,1458,2174,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Canadian+Aboriginal
-Noto Sans Carian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,carian | latin | latin-ext,Google,1708,1281,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Carian
-Noto Sans Caucasian Albanian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,caucasian-albanian | latin | latin-ext,Google,1983,1514,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Caucasian+Albanian
-Noto Sans Chakma,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,chakma | latin | latin-ext,Google,1952,530,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Chakma
-Noto Sans Cham,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cham | latin | latin-ext,Google,1882,1183,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Cham
-Noto Sans Cherokee,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cherokee | latin | latin-ext,Google,1846,1795,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Cherokee
-Noto Sans Chorasmian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,chorasmian | latin | latin-ext | math | symbols,Google,2028,2321,Yes,2023-05-23,2024-01-25,https://fonts.google.com/specimen/Noto+Sans+Chorasmian
-Noto Sans Coptic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,coptic | latin | latin-ext,Google,1678,173,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Coptic
-Noto Sans Cuneiform,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,cuneiform | latin | latin-ext,Google,1958,2148,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Cuneiform
-Noto Sans Cypriot,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,cypriot | latin | latin-ext,Google,1990,581,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Cypriot
-Noto Sans Cypro Minoan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,cypro-minoan | latin | latin-ext,Google,1733,1917,Yes,2023-07-10,2025-05-30,https://fonts.google.com/specimen/Noto+Sans+Cypro+Minoan
-Noto Sans Deseret,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,deseret | latin | latin-ext,Google,2000,226,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Deseret
-Noto Sans Devanagari,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width hindi devanagari indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,devanagari | latin | latin-ext,Google,310,1607,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Devanagari
-Noto Sans Display,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international noto google international comprehensive well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Google,206,354,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Display
-Noto Sans Duployan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400 | 700,,duployan | latin | latin-ext,Google,1751,1907,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Duployan
-Noto Sans Egyptian Hieroglyphs,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,egyptian-hieroglyphs | latin | latin-ext,Google,1884,751,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Egyptian+Hieroglyphs
-Noto Sans Elbasan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,elbasan | latin | latin-ext,Google,1792,1823,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Elbasan
-Noto Sans Elymaic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,elymaic | latin | latin-ext,Google,1939,188,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Elymaic
-Noto Sans Ethiopic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width ethiopic amharic english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,ethiopic | latin | latin-ext,Google,1190,54,Yes,2016-04-15,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Ethiopic
-Noto Sans Georgian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width cyrillic extended georgian greek extended english western european extended-latin european multilingual international noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,cyrillic-ext | georgian | greek-ext | latin | latin-ext | math | symbols,Google,737,62,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Georgian
-Noto Sans Glagolitic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque cyrillic extended english western european extended-latin european multilingual international noto google international comprehensive,400,,cyrillic-ext | glagolitic | latin | latin-ext | math | symbols,Google,1720,433,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Glagolitic
-Noto Sans Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,gothic | latin | latin-ext,Google,1287,61,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Gothic
-Noto Sans Grantha,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,grantha | latin | latin-ext,Google,1989,2170,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Grantha
-Noto Sans Gujarati,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width gujarati indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,gujarati | latin | latin-ext | math | symbols,Google,1032,1533,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Gujarati
-Noto Sans Gunjala Gondi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,gunjala-gondi | latin | latin-ext,Google,1191,2277,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Gunjala+Gondi
-Noto Sans Gurmukhi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width punjabi gurmukhi indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,gurmukhi | latin | latin-ext,Google,1305,1163,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Gurmukhi
-Noto Sans HK,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european vietnamese noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-hongkong | cyrillic | latin | latin-ext | vietnamese,Google,400,458,Yes,2019-03-12,2026-01-06,https://fonts.google.com/specimen/Noto+Sans+HK
-Noto Sans Hanifi Rohingya,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,hanifi-rohingya | latin | latin-ext,Google,1999,395,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Hanifi+Rohingya
-Noto Sans Hanunoo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,hanunoo | latin | latin-ext,Google,1611,2083,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Hanunoo
-Noto Sans Hatran,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,hatran | latin | latin-ext,Google,1993,1714,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Hatran
-Noto Sans Hebrew,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width cyrillic extended greek extended hebrew RTL israeli english western european extended-latin european noto google international comprehensive well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,cyrillic-ext | greek-ext | hebrew | latin | latin-ext,Google,251,59,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Hebrew
-Noto Sans Imperial Aramaic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,imperial-aramaic | latin | latin-ext,Google,1924,919,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Imperial+Aramaic
-Noto Sans Indic Siyaq Numbers,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,indic-siyaq-numbers | latin | latin-ext,Google,1853,855,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Indic+Siyaq+Numbers
-Noto Sans Inscriptional Pahlavi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,inscriptional-pahlavi | latin | latin-ext,Google,1915,712,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Inscriptional+Pahlavi
-Noto Sans Inscriptional Parthian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,inscriptional-parthian | latin | latin-ext,Google,1975,617,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Inscriptional+Parthian
-Noto Sans JP,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european vietnamese noto google international comprehensive top-popular trending most-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | japanese | latin | latin-ext | vietnamese,Google,5,1192,Yes,2015-01-29,2026-01-06,https://fonts.google.com/specimen/Noto+Sans+JP
-Noto Sans Javanese,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,javanese | latin | latin-ext,Google,1642,1654,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Javanese
-Noto Sans KR,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic korean hangul english western european extended-latin european vietnamese noto google international comprehensive top-popular trending most-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | korean | latin | latin-ext | vietnamese,Google,31,330,Yes,2018-02-05,2026-01-06,https://fonts.google.com/specimen/Noto+Sans+KR
-Noto Sans Kaithi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,kaithi | latin | latin-ext,Google,1131,4,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Kaithi
-Noto Sans Kannada,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width kannada indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,kannada | latin | latin-ext,Google,786,630,Yes,2020-11-19,2026-03-03,https://fonts.google.com/specimen/Noto+Sans+Kannada
-Noto Sans Kawi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,kawi | latin | latin-ext,Google,1968,1799,Yes,2023-06-27,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Kawi
-Noto Sans Kayah Li,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,kayah-li | latin | latin-ext,Google,2015,647,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Kayah+Li
-Noto Sans Kharoshthi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,kharoshthi | latin | latin-ext,Google,2045,416,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Kharoshthi
-Noto Sans Khmer,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width khmer cambodian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,khmer | latin | latin-ext,Google,921,302,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Khmer
-Noto Sans Khojki,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,khojki | latin | latin-ext,Google,1874,2292,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Khojki
-Noto Sans Khudawadi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,khudawadi | latin | latin-ext,Google,2010,1995,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Khudawadi
-Noto Sans Lao,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width lao laotian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,lao | latin | latin-ext,Google,1273,962,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Lao
-Noto Sans Lao Looped,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width lao laotian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,lao | latin | latin-ext,Google,1163,2255,Yes,2022-09-05,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Lao+Looped
-Noto Sans Lepcha,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | lepcha,Google,2029,811,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Lepcha
-Noto Sans Limbu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | limbu,Google,1998,1730,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Limbu
-Noto Sans Linear A,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | linear-a,Google,1823,1938,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Linear+A
-Noto Sans Linear B,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | linear-b,Google,1978,999,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Linear+B
-Noto Sans Lisu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | lisu,Google,1858,1905,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Lisu
-Noto Sans Lycian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque noto google international comprehensive,400,,lycian,Google,2050,608,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Lycian
-Noto Sans Lydian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | lydian,Google,1872,109,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Lydian
-Noto Sans Mahajani,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | mahajani,Google,1859,687,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Mahajani
-Noto Sans Malayalam,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european malayalam indian noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | malayalam,Google,500,721,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Malayalam
-Noto Sans Mandaic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | mandaic,Google,1986,1702,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Mandaic
-Noto Sans Manichaean,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | manichaean,Google,2033,849,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Manichaean
-Noto Sans Marchen,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | marchen,Google,1804,60,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Marchen
-Noto Sans Masaram Gondi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | masaram-gondi,Google,2036,436,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Masaram+Gondi
-Noto Sans Math,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic english western european noto google international comprehensive,400,,cyrillic | latin | math,Google,804,1806,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Math
-Noto Sans Mayan Numerals,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | mayan-numerals,Google,1951,318,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Mayan+Numerals
-Noto Sans Medefaidrin,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | medefaidrin,Google,1828,357,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Medefaidrin
-Noto Sans Meetei Mayek,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | meetei-mayek,Google,1001,2026,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Meetei+Mayek
-Noto Sans Mende Kikakui,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | mende-kikakui,Google,2020,1385,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Mende+Kikakui
-Noto Sans Meroitic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | meroitic | meroitic-cursive | meroitic-hieroglyphs,Google,2042,540,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Meroitic
-Noto Sans Miao,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | miao,Google,1905,1389,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Miao
-Noto Sans Modi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | modi,Google,1991,2118,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Modi
-Noto Sans Mongolian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | math | mongolian | symbols,Google,1744,2268,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Mongolian
-Noto Sans Mono,Sans Serif,Sans Serif,Monospace,clean modern minimal professional readable neutral geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international noto google international comprehensive well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Google,299,1568,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Mono
-Noto Sans Mro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | mro,Google,1982,2210,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Mro
-Noto Sans Multani,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | multani,Google,1765,324,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Multani
-Noto Sans Myanmar,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european myanmar burmese noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | myanmar,Google,930,629,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Myanmar
-Noto Sans NKo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | nko,Google,1745,33,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+NKo
-Noto Sans NKo Unjoined,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | nko,Google,1963,298,Yes,2023-09-26,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+NKo+Unjoined
-Noto Sans Nabataean,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | nabataean,Google,2023,543,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Nabataean
-Noto Sans Nag Mundari,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | nag-mundari,Google,1769,1606,Yes,2023-05-08,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Nag+Mundari
-Noto Sans Nandinagari,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | nandinagari,Google,1596,69,Yes,2023-05-08,2023-10-25,https://fonts.google.com/specimen/Noto+Sans+Nandinagari
-Noto Sans New Tai Lue,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | new-tai-lue,Google,1947,2090,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+New+Tai+Lue
-Noto Sans Newa,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | newa,Google,1835,1398,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Newa
-Noto Sans Nushu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | nushu,Google,2012,1512,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Nushu
-Noto Sans Ogham,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | ogham,Google,2026,593,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Ogham
-Noto Sans Ol Chiki,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | ol-chiki,Google,1913,2217,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Ol+Chiki
-Noto Sans Old Hungarian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-hungarian,Google,1807,1998,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Old+Hungarian
-Noto Sans Old Italic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-italic,Google,1815,988,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Old+Italic
-Noto Sans Old North Arabian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-north-arabian,Google,1755,133,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Old+North+Arabian
-Noto Sans Old Permic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque cyrillic extended english western european extended-latin european noto google international comprehensive,400,,cyrillic-ext | latin | latin-ext | old-permic,Google,1866,46,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Old+Permic
-Noto Sans Old Persian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-persian,Google,1810,1547,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Old+Persian
-Noto Sans Old Sogdian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-sogdian,Google,2009,524,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Old+Sogdian
-Noto Sans Old South Arabian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-south-arabian,Google,1937,741,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Old+South+Arabian
-Noto Sans Old Turkic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-turkic,Google,1936,126,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Old+Turkic
-Noto Sans Oriya,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european odia oriya indian noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | oriya,Google,919,36,Yes,2020-11-19,2026-02-19,https://fonts.google.com/specimen/Noto+Sans+Oriya
-Noto Sans Osage,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | osage,Google,1868,659,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Osage
-Noto Sans Osmanya,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | osmanya,Google,1348,745,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Osmanya
-Noto Sans Pahawh Hmong,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | pahawh-hmong,Google,1969,240,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Pahawh+Hmong
-Noto Sans Palmyrene,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | palmyrene,Google,1734,145,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Palmyrene
-Noto Sans Pau Cin Hau,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | pau-cin-hau,Google,2005,736,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Pau+Cin+Hau
-Noto Sans PhagsPa,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | math | phags-pa | symbols,Google,2025,1815,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+PhagsPa
-Noto Sans Phoenician,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | phoenician,Google,1997,260,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Phoenician
-Noto Sans Psalter Pahlavi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | psalter-pahlavi,Google,1970,556,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Psalter+Pahlavi
-Noto Sans Rejang,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | rejang,Google,1966,1331,Yes,2020-11-19,2025-12-10,https://fonts.google.com/specimen/Noto+Sans+Rejang
-Noto Sans Runic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | runic,Google,1920,470,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Runic
-Noto Sans SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight chinese simplified mandarin russian cyrillic slavic english western european extended-latin european vietnamese noto google international comprehensive popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-simplified | cyrillic | latin | latin-ext | vietnamese,Google,77,382,Yes,2018-10-22,2026-01-06,https://fonts.google.com/specimen/Noto+Sans+SC
-Noto Sans Samaritan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | samaritan,Google,1432,2273,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Samaritan
-Noto Sans Saurashtra,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | saurashtra,Google,1979,474,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Saurashtra
-Noto Sans Sharada,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | sharada,Google,1948,1486,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Sharada
-Noto Sans Shavian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | shavian,Google,1692,42,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Shavian
-Noto Sans Siddham,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | siddham,Google,2031,739,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Siddham
-Noto Sans SignWriting,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | signwriting,Google,1935,799,Yes,2022-10-30,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+SignWriting
-Noto Sans Sinhala,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european sinhala sri-lankan noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | sinhala,Google,796,1406,Yes,2020-11-19,2025-09-17,https://fonts.google.com/specimen/Noto+Sans+Sinhala
-Noto Sans Sogdian,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | sogdian,Google,1833,181,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Sogdian
-Noto Sans Sora Sompeng,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | sora-sompeng,Google,1496,448,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Sora+Sompeng
-Noto Sans Soyombo,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | soyombo,Google,2024,1952,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Soyombo
-Noto Sans Sundanese,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | sundanese,Google,1918,1301,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Sans+Sundanese
-Noto Sans Sunuwar,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | sunuwar,Google,1848,38,Yes,2025-06-26,2025-06-26,https://fonts.google.com/specimen/Noto+Sans+Sunuwar
-Noto Sans Syloti Nagri,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | syloti-nagri,Google,1627,2130,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Syloti+Nagri
-Noto Sans Symbols,Sans Serif,Sans Serif,Symbols,clean modern minimal professional readable neutral geometric humanist grotesque icon symbol emoji pictograph versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | symbols,Google,445,2220,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Symbols
-Noto Sans Symbols 2,Sans Serif,Sans Serif,Symbols,clean modern minimal professional readable neutral geometric humanist grotesque icon symbol emoji pictograph english western european extended-latin european multilingual international noto google international comprehensive,400,,braille | latin | latin-ext | math | mayan-numerals | symbols,Google,1161,423,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Symbols+2
-Noto Sans Syriac,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | syriac,Google,1736,881,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Syriac
-Noto Sans Syriac Eastern,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | syriac,Google,1762,179,Yes,2023-07-10,2025-09-02,https://fonts.google.com/specimen/Noto+Sans+Syriac+Eastern
-Noto Sans Syriac Western,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | syriac,Google,1977,1252,Yes,2025-10-28,2025-10-29,https://fonts.google.com/specimen/Noto+Sans+Syriac+Western
-Noto Sans TC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight chinese traditional russian cyrillic slavic english western european extended-latin european vietnamese noto google international comprehensive top-popular trending most-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-traditional | cyrillic | latin | latin-ext | vietnamese,Google,42,404,Yes,2018-10-22,2026-01-06,https://fonts.google.com/specimen/Noto+Sans+TC
-Noto Sans Tagalog,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tagalog,Google,1408,1864,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Tagalog
-Noto Sans Tagbanwa,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tagbanwa,Google,1916,1020,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Tagbanwa
-Noto Sans Tai Le,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tai-le,Google,1900,341,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Tai+Le
-Noto Sans Tai Tham,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | tai-tham,Google,1934,877,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Tai+Tham
-Noto Sans Tai Viet,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tai-viet,Google,1470,1391,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Tai+Viet
-Noto Sans Takri,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | takri,Google,1764,84,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Takri
-Noto Sans Tamil,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european tamil indian noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | tamil,Google,314,614,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Tamil
-Noto Sans Tamil Supplement,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tamil-supplement,Google,1953,640,Yes,2020-11-19,2025-09-17,https://fonts.google.com/specimen/Noto+Sans+Tamil+Supplement
-Noto Sans Tangsa,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | tangsa,Google,1753,228,Yes,2022-09-11,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Tangsa
-Noto Sans Telugu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european telugu indian noto google international comprehensive popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | telugu,Google,101,986,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Sans+Telugu
-Noto Sans Thaana,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | thaana,Google,1368,2261,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Thaana
-Noto Sans Thai,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european thai southeast-asia noto google international comprehensive popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | thai,Google,144,349,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Thai
-Noto Sans Thai Looped,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european thai southeast-asia noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | thai,Google,1010,582,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Thai+Looped
-Noto Sans Tifinagh,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tifinagh,Google,1816,774,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Sans+Tifinagh
-Noto Sans Tirhuta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tirhuta,Google,1965,117,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Sans+Tirhuta
-Noto Sans Ugaritic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | ugaritic,Google,2002,798,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Ugaritic
-Noto Sans Vai,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | vai,Google,1926,265,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Vai
-Noto Sans Vithkuqi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | vithkuqi,Google,1809,113,Yes,2022-10-10,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Vithkuqi
-Noto Sans Wancho,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | wancho,Google,1932,1197,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Wancho
-Noto Sans Warang Citi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | warang-citi,Google,1383,2271,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Warang+Citi
-Noto Sans Yi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | yi,Google,1788,313,Yes,2020-11-19,2026-01-20,https://fonts.google.com/specimen/Noto+Sans+Yi
-Noto Sans Zanabazar Square,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | zanabazar-square,Google,1925,311,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Sans+Zanabazar+Square
-Noto Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international noto google international comprehensive popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | math | vietnamese,Google,58,574,Yes,2013-02-27,2025-09-05,https://fonts.google.com/specimen/Noto+Serif
-Noto Serif Ahom,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,ahom | latin | latin-ext,Google,1422,489,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Serif+Ahom
-Noto Serif Armenian,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width armenian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,armenian | latin | latin-ext,Google,1548,390,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Serif+Armenian
-Noto Serif Balinese,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,balinese | latin | latin-ext,Google,1756,2024,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Balinese
-Noto Serif Bengali,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width bengali bangladeshi indian english western european extended-latin european noto google international comprehensive well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,bengali | latin | latin-ext,Google,290,70,Yes,2020-11-19,2025-09-17,https://fonts.google.com/specimen/Noto+Serif+Bengali
-Noto Serif Devanagari,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width hindi devanagari indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,devanagari | latin | latin-ext,Google,386,27,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Devanagari
-Noto Serif Display,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international noto google international comprehensive,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Google,472,1209,Yes,2020-11-19,2025-09-05,https://fonts.google.com/specimen/Noto+Serif+Display
-Noto Serif Dives Akuru,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,dives-akuru | latin | latin-ext,Google,1949,102,No,2025-02-05,2025-08-26,https://fonts.google.com/specimen/Noto+Serif+Dives+Akuru
-Noto Serif Dogra,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,dogra | latin | latin-ext,Google,1855,1469,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Serif+Dogra
-Noto Serif Ethiopic,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width ethiopic amharic english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,ethiopic | latin | latin-ext,Google,1625,159,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Ethiopic
-Noto Serif Georgian,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width georgian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,georgian | latin | latin-ext,Google,997,79,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Serif+Georgian
-Noto Serif Grantha,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,grantha | latin | latin-ext,Google,1894,201,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Grantha
-Noto Serif Gujarati,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight gujarati indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,gujarati | latin | latin-ext | math | symbols,Google,1559,1425,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Gujarati
-Noto Serif Gurmukhi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight punjabi gurmukhi indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,gurmukhi | latin | latin-ext,Google,1863,597,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Gurmukhi
-Noto Serif HK,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european vietnamese noto google international comprehensive,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-hongkong | cyrillic | latin | latin-ext | vietnamese,Google,1095,1287,Yes,2022-05-11,2026-01-06,https://fonts.google.com/specimen/Noto+Serif+HK
-Noto Serif Hebrew,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width hebrew RTL israeli english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,hebrew | latin | latin-ext,Google,381,30,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Serif+Hebrew
-Noto Serif Hentaigana,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,kana-extended | latin | latin-ext,Google,1906,1507,Yes,2025-01-27,2025-09-04,https://fonts.google.com/specimen/Noto+Serif+Hentaigana
-Noto Serif JP,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european vietnamese noto google international comprehensive popular widely-used,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | japanese | latin | latin-ext | vietnamese,Google,80,652,Yes,2018-08-22,2026-01-06,https://fonts.google.com/specimen/Noto+Serif+JP
-Noto Serif KR,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic korean hangul english western european extended-latin european vietnamese noto google international comprehensive well-known common,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | korean | latin | latin-ext | vietnamese,Google,166,167,Yes,2018-08-22,2026-01-06,https://fonts.google.com/specimen/Noto+Serif+KR
-Noto Serif Kannada,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight kannada indian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,kannada | latin | latin-ext,Google,1387,2005,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Kannada
-Noto Serif Khitan Small Script,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,khitan-small-script | latin | latin-ext,Google,1840,428,Yes,2023-07-10,2025-05-30,https://fonts.google.com/specimen/Noto+Serif+Khitan+Small+Script
-Noto Serif Khmer,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width khmer cambodian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,khmer | latin | latin-ext,Google,1579,2046,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Khmer
-Noto Serif Khojki,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,khojki | latin | latin-ext,Google,771,110,Yes,2022-08-29,2025-09-08,https://fonts.google.com/specimen/Noto+Serif+Khojki
-Noto Serif Lao,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width lao laotian english western european extended-latin european noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,lao | latin | latin-ext,Google,1428,389,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Serif+Lao
-Noto Serif Makasar,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | makasar,Google,1802,212,Yes,2023-06-27,2023-06-29,https://fonts.google.com/specimen/Noto+Serif+Makasar
-Noto Serif Malayalam,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european malayalam indian noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | malayalam,Google,1209,520,Yes,2020-11-19,2025-09-10,https://fonts.google.com/specimen/Noto+Serif+Malayalam
-Noto Serif Myanmar,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible myanmar burmese noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,myanmar,Google,1838,1767,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Myanmar
-Noto Serif NP Hmong,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | nyiakeng-puachue-hmong,Google,1824,493,Yes,2020-11-19,2025-09-08,https://fonts.google.com/specimen/Noto+Serif+NP+Hmong
-Noto Serif Old Uyghur,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | old-uyghur,Google,1942,2259,Yes,2023-09-25,2024-09-23,https://fonts.google.com/specimen/Noto+Serif+Old+Uyghur
-Noto Serif Oriya,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european odia oriya indian noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | oriya,Google,1798,890,Yes,2022-07-04,2025-09-08,https://fonts.google.com/specimen/Noto+Serif+Oriya
-Noto Serif Ottoman Siyaq,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | ottoman-siyaq-numbers,Google,1904,1573,Yes,2023-06-21,2025-05-30,https://fonts.google.com/specimen/Noto+Serif+Ottoman+Siyaq
-Noto Serif SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight chinese simplified mandarin russian cyrillic slavic english western european extended-latin european vietnamese noto google international comprehensive well-known common,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-simplified | cyrillic | latin | latin-ext | vietnamese,Google,180,160,Yes,2018-12-03,2026-01-06,https://fonts.google.com/specimen/Noto+Serif+SC
-Noto Serif Sinhala,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european sinhala sri-lankan noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | sinhala,Google,1475,356,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Sinhala
-Noto Serif TC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight chinese traditional russian cyrillic slavic english western european extended-latin european vietnamese noto google international comprehensive well-known common,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,chinese-traditional | cyrillic | latin | latin-ext | vietnamese,Google,177,139,Yes,2018-12-03,2025-12-10,https://fonts.google.com/specimen/Noto+Serif+TC
-Noto Serif Tamil,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european tamil indian noto google international comprehensive,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | tamil,Google,1556,415,Yes,2020-11-19,2025-09-02,https://fonts.google.com/specimen/Noto+Serif+Tamil
-Noto Serif Tangut,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | tangut,Google,1623,321,Yes,2020-11-19,2025-08-26,https://fonts.google.com/specimen/Noto+Serif+Tangut
-Noto Serif Telugu,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european telugu indian noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | telugu,Google,1488,2115,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Serif+Telugu
-Noto Serif Thai,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european thai southeast-asia noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,latin | latin-ext | thai,Google,399,18,Yes,2020-11-19,2025-09-16,https://fonts.google.com/specimen/Noto+Serif+Thai
-Noto Serif Tibetan,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european tibetan noto google international comprehensive,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | tibetan,Google,1725,2262,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Serif+Tibetan
-Noto Serif Todhri,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | todhri,Google,1873,952,Yes,2025-01-21,2025-01-22,https://fonts.google.com/specimen/Noto+Serif+Todhri
-Noto Serif Toto,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | toto,Google,1761,296,Yes,2022-09-04,2025-09-16,https://fonts.google.com/specimen/Noto+Serif+Toto
-Noto Serif Vithkuqi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | vithkuqi,Google,1681,1294,Yes,2022-10-10,2025-09-16,https://fonts.google.com/specimen/Noto+Serif+Vithkuqi
-Noto Serif Yezidi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,400 | 500 | 600 | 700,wght: -,latin | latin-ext | yezidi,Google,1789,2061,Yes,2020-11-19,2025-09-04,https://fonts.google.com/specimen/Noto+Serif+Yezidi
-Noto Traditional Nushu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european noto google international comprehensive,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | nushu,Google,1795,194,Yes,2020-11-19,2025-09-11,https://fonts.google.com/specimen/Noto+Traditional+Nushu
-Noto Znamenny Musical Notation,Sans Serif,Sans Serif,Symbols,clean modern minimal professional readable neutral geometric humanist grotesque icon symbol emoji pictograph english western european extended-latin european noto google international comprehensive,400,,latin | latin-ext | math | symbols | znamenny,Google,1891,2191,Yes,2023-12-10,2025-06-09,https://fonts.google.com/specimen/Noto+Znamenny+Musical+Notation
-Nova Cut,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1234,954,No,2011-03-23,2025-09-08,https://fonts.google.com/specimen/Nova+Cut
-Nova Flat,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1113,1416,No,2011-03-23,2025-09-04,https://fonts.google.com/specimen/Nova+Flat
-Nova Mono,Monospace,,Monospace | Display,code developer technical fixed-width terminal programming mono fixed-width tabular data code headline hero decorative large-text attention greek english western european extended-latin european,400,,greek | latin | latin-ext,Wojciech Kalinowski,830,862,No,2011-03-23,2025-09-10,https://fonts.google.com/specimen/Nova+Mono
-Nova Oval,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1242,921,No,2011-03-23,2025-09-02,https://fonts.google.com/specimen/Nova+Oval
-Nova Round,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1062,1208,No,2011-03-23,2025-09-16,https://fonts.google.com/specimen/Nova+Round
-Nova Script,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1237,1191,No,2011-03-23,2025-09-02,https://fonts.google.com/specimen/Nova+Script
-Nova Slim,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,1172,1476,No,2011-03-23,2025-09-10,https://fonts.google.com/specimen/Nova+Slim
-Nova Square,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Wojciech Kalinowski,569,1778,No,2011-04-14,2025-09-10,https://fonts.google.com/specimen/Nova+Square
-Numans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Jovanny Lemonad,1006,1332,No,2011-08-17,2025-09-10,https://fonts.google.com/specimen/Numans
-Nunito,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,1000 | 1000i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Vernon Adams | Cyreal | Jacques Le Bailly,23,1327,No,2012-08-12,2025-09-16,https://fonts.google.com/specimen/Nunito
-Nunito Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,1000 | 1000i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,YTLC: - | opsz: - | wdth: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Vernon Adams | Jacques Le Bailly | Manvel Shmavonyan | Alexei Vanyashin,24,1589,No,2016-12-07,2025-09-16,https://fonts.google.com/specimen/Nunito+Sans
-Nuosu SIL,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext | yi,SIL International,1388,190,No,2022-04-28,2025-09-04,https://fonts.google.com/specimen/Nuosu+SIL
-Odibee Sans,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,James Barnard,1126,2050,No,2019-11-08,2025-09-16,https://fonts.google.com/specimen/Odibee+Sans
-Odor Mean Chey,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone khmer cambodian english western european,400,,khmer | latin,Danh Hong,1201,963,No,2011-03-02,2025-09-08,https://fonts.google.com/specimen/Odor+Mean+Chey
-Offside,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1420,1543,No,2012-10-26,2025-09-04,https://fonts.google.com/specimen/Offside
-Oi,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention arabic RTL middle-east russian cyrillic slavic cyrillic extended greek english western european extended-latin european tamil indian vietnamese multilingual international,400,,arabic | cyrillic | cyrillic-ext | greek | latin | latin-ext | tamil | vietnamese,Kostas Bartsokas,1513,624,No,2021-02-03,2025-09-04,https://fonts.google.com/specimen/Oi
-Ojuju,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | math | symbols | vietnamese,Ụdị Foundry | Chisaokwu Joboson | Mirko Velimirović,1534,2103,No,2024-02-26,2025-09-08,https://fonts.google.com/specimen/Ojuju
-Old Standard TT,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,400 | 400i | 700,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Alexey Kryukov,289,1436,No,2010-05-18,2025-09-11,https://fonts.google.com/specimen/Old+Standard+TT
-Oldenburg,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Nicole Fally,1580,622,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Oldenburg
-Ole,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1739,772,No,2021-12-02,2025-05-30,https://fonts.google.com/specimen/Ole
-Oleo Script,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european well-known common,400 | 700,,latin | latin-ext,soytutype fonts,219,950,No,2012-03-29,2025-09-16,https://fonts.google.com/specimen/Oleo+Script
-Oleo Script Swash Caps,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,soytutype fonts,999,552,No,2012-11-12,2025-09-08,https://fonts.google.com/specimen/Oleo+Script+Swash+Caps
-Onest,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | latin | latin-ext,Dmitri Voloshin | Andrey Kudryavtsev,198,1934,No,2023-09-05,2025-09-10,https://fonts.google.com/specimen/Onest
-Oooh Baby,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,651,1411,No,2021-11-26,2025-05-30,https://fonts.google.com/specimen/Oooh+Baby
-Open Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli english western european extended-latin european vietnamese multilingual international top-popular trending most-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | latin | latin-ext | math | symbols | vietnamese,Steve Matteson,3,1336,No,2011-02-02,2025-09-16,https://fonts.google.com/specimen/Open+Sans
-Oranienbaum,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,Oleg Pospelov | Jovanny Lemonad,605,308,No,2012-08-20,2025-09-10,https://fonts.google.com/specimen/Oranienbaum
-Orbit,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque korean hangul english western european extended-latin european,400,,korean | latin | latin-ext,Sooun Cho | JAMO,1404,2189,No,2023-06-05,2026-03-03,https://fonts.google.com/specimen/Orbit
-Orbitron,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european popular widely-used,400 | 500 | 600 | 700 | 800 | 900,wght: -,latin,Matt McInerney,143,532,No,2010-12-15,2025-09-04,https://fonts.google.com/specimen/Orbitron
-Oregano,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Astigmatic,874,174,No,2012-08-13,2025-09-16,https://fonts.google.com/specimen/Oregano
-Orelega One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,Haruki Wakamatsu,964,866,No,2021-03-11,2025-09-16,https://fonts.google.com/specimen/Orelega+One
-Orienta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1108,1911,No,2012-09-07,2025-09-10,https://fonts.google.com/specimen/Orienta
-Original Surfer,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,863,539,No,2011-12-07,2025-09-04,https://fonts.google.com/specimen/Original+Surfer
-Oswald,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,200 | 300 | 400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Vernon Adams | Kalapi Gajjar | Cyreal,18,1373,No,2012-02-29,2025-09-11,https://fonts.google.com/specimen/Oswald
-Outfit,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european top-popular trending most-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext,Smartsheet Inc | Rodrigo Fuenzalida,44,904,No,2021-09-27,2025-09-04,https://fonts.google.com/specimen/Outfit
-Over the Rainbow,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,809,1576,No,2011-04-27,2025-09-02,https://fonts.google.com/specimen/Over+the+Rainbow
-Overlock,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i | 700 | 700i | 900 | 900i,,latin | latin-ext,Dario Manuel Muhafara,725,1690,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Overlock
-Overlock SC,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Dario Manuel Muhafara,1203,1704,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Overlock+SC
-Overpass,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Delve Withrington | Dave Bailey | Thomas Jockin,118,1473,No,2016-12-02,2025-09-02,https://fonts.google.com/specimen/Overpass
-Overpass Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Delve Withrington | Dave Bailey | Thomas Jockin,524,299,No,2016-12-02,2025-09-08,https://fonts.google.com/specimen/Overpass+Mono
-Ovo,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Nicole Fally,483,1445,No,2011-07-20,2025-09-08,https://fonts.google.com/specimen/Ovo
-Oxanium,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european well-known common,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,Severin Meyer,291,606,No,2020-01-30,2025-09-10,https://fonts.google.com/specimen/Oxanium
-Oxygen,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european popular widely-used,300 | 400 | 700,,latin | latin-ext,Vernon Adams,111,1360,No,2012-03-29,2025-09-04,https://fonts.google.com/specimen/Oxygen
-Oxygen Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,722,276,No,2012-09-08,2025-09-02,https://fonts.google.com/specimen/Oxygen+Mono
-PT Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | latin | latin-ext,ParaType,302,576,No,2012-02-29,2025-09-08,https://fonts.google.com/specimen/PT+Mono
-PT Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended english western european extended-latin european top-popular trending most-used,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext,ParaType,36,1431,No,2010-09-21,2025-09-04,https://fonts.google.com/specimen/PT+Sans
-PT Sans Caption,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended english western european extended-latin european well-known common,400 | 700,,cyrillic | cyrillic-ext | latin | latin-ext,ParaType,281,1313,No,2010-09-21,2025-09-04,https://fonts.google.com/specimen/PT+Sans+Caption
-PT Sans Narrow,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended english western european extended-latin european popular widely-used,400 | 700,,cyrillic | cyrillic-ext | latin | latin-ext,ParaType,129,770,No,2010-09-21,2025-09-04,https://fonts.google.com/specimen/PT+Sans+Narrow
-PT Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended english western european extended-latin european popular widely-used,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext,ParaType,63,1600,No,2011-02-09,2025-09-04,https://fonts.google.com/specimen/PT+Serif
-PT Serif Caption,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended english western european extended-latin european,400 | 400i,,cyrillic | cyrillic-ext | latin | latin-ext,ParaType,632,1180,No,2011-02-09,2025-09-10,https://fonts.google.com/specimen/PT+Serif+Caption
-Pacifico,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese popular widely-used,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Vernon Adams | Jacques Le Bailly | Botjo Nikoltchev | Ani Petrova,108,1631,No,2011-03-09,2025-09-16,https://fonts.google.com/specimen/Pacifico
-Padauk,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european myanmar burmese,400 | 700,,latin | latin-ext | myanmar,SIL International,974,1530,No,2016-11-08,2025-09-11,https://fonts.google.com/specimen/Padauk
-Padyakke Expanded One,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention kannada indian english western european extended-latin european,400,,kannada | latin | latin-ext,James Puckett,1844,127,No,2022-12-05,2025-09-11,https://fonts.google.com/specimen/Padyakke+Expanded+One
-Palanquin,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible hindi devanagari indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Pria Ravichandran,555,1636,No,2015-01-28,2025-09-11,https://fonts.google.com/specimen/Palanquin
-Palanquin Dark,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Pria Ravichandran,594,1957,No,2015-01-28,2025-09-10,https://fonts.google.com/specimen/Palanquin+Dark
-Palette Mosaic,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention japanese kanji hiragana katakana english western european,400,,japanese | latin,Shibuya Font,1373,20,No,2021-04-13,2025-09-10,https://fonts.google.com/specimen/Palette+Mosaic
-Pangolin,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Kevin Burke,436,1675,No,2017-01-11,2025-09-04,https://fonts.google.com/specimen/Pangolin
-Paprika,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1393,1874,No,2012-10-26,2025-09-11,https://fonts.google.com/specimen/Paprika
-Parastoo,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext | vietnamese,Saber Rastikerdar,1812,2226,No,2025-05-21,2025-10-29,https://fonts.google.com/specimen/Parastoo
-Parisienne,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,325,858,No,2012-01-25,2025-09-04,https://fonts.google.com/specimen/Parisienne
-Parkinsans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,Red Stone,639,300,No,2024-11-18,2025-09-16,https://fonts.google.com/specimen/Parkinsans
-Passero One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Viktoriya Grabowska,1533,1779,No,2011-08-31,2025-09-10,https://fonts.google.com/specimen/Passero+One
-Passion One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400 | 700 | 900,,latin | latin-ext,Fontstage,303,1661,No,2011-12-13,2025-09-10,https://fonts.google.com/specimen/Passion+One
-Passions Conflict,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1300,697,No,2021-10-07,2025-09-04,https://fonts.google.com/specimen/Passions+Conflict
-Pathway Extreme,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wdth: - | wght: -,latin | latin-ext | vietnamese,Eduardo Tunni,887,1826,No,2023-04-19,2025-09-10,https://fonts.google.com/specimen/Pathway+Extreme
-Pathway Gothic One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,367,1570,No,2013-06-05,2025-09-16,https://fonts.google.com/specimen/Pathway+Gothic+One
-Patrick Hand,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Patrick Wagesreiter,275,675,No,2011-07-06,2025-09-02,https://fonts.google.com/specimen/Patrick+Hand
-Patrick Hand SC,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Patrick Wagesreiter,1065,931,No,2013-02-27,2025-09-10,https://fonts.google.com/specimen/Patrick+Hand+SC
-Pattaya,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european thai southeast-asia vietnamese,400,,cyrillic | latin | latin-ext | thai | vietnamese,Cadson Demak,627,956,No,2016-05-31,2025-09-08,https://fonts.google.com/specimen/Pattaya
-Patua One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european well-known common,400,,latin,LatinoType,260,1695,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Patua+One
-Pavanam,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european tamil indian,400,,latin | latin-ext | tamil,Tharique Azeez,1101,718,No,2016-06-15,2025-09-11,https://fonts.google.com/specimen/Pavanam
-Paytone One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Vernon Adams,255,737,No,2011-05-04,2025-09-11,https://fonts.google.com/specimen/Paytone+One
-Peddana,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1575,2149,No,2014-12-10,2025-09-08,https://fonts.google.com/specimen/Peddana
-Peralta,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1072,499,No,2012-07-11,2025-09-10,https://fonts.google.com/specimen/Peralta
-Permanent Marker,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european well-known common,400,,latin,Font Diner,190,1297,No,2011-01-06,2025-05-30,https://fonts.google.com/specimen/Permanent+Marker
-Petemoss,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1728,1557,No,2021-10-07,2025-09-04,https://fonts.google.com/specimen/Petemoss
-Petit Formal Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Impallari Type,716,1715,No,2012-09-07,2025-09-10,https://fonts.google.com/specimen/Petit+Formal+Script
-Petrona,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Ringo R. Seeber,449,1943,No,2020-07-14,2025-09-11,https://fonts.google.com/specimen/Petrona
-Phetsarath,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque lao laotian,400 | 700,,lao,Danh Hong,1772,853,No,2024-11-18,2025-09-17,https://fonts.google.com/specimen/Phetsarath
-Philosopher,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Jovanny Lemonad,305,1437,No,2011-08-31,2025-09-10,https://fonts.google.com/specimen/Philosopher
-Phudu,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight cyrillic extended english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic-ext | latin | latin-ext | vietnamese,Dương Trần,1148,268,No,2023-01-30,2025-09-08,https://fonts.google.com/specimen/Phudu
-Piazzolla,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Juan Pablo del Peral | Huerta Tipográfica,939,888,No,2020-08-27,2025-09-11,https://fonts.google.com/specimen/Piazzolla
-Piedra,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sudtipos,1482,604,No,2011-11-30,2025-09-04,https://fonts.google.com/specimen/Piedra
-Pinyon Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Nicole Fally,403,717,No,2011-10-12,2025-09-10,https://fonts.google.com/specimen/Pinyon+Script
-Pirata One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Rodrigo Fuenzalida | Nicolas Massi,523,1221,No,2012-10-31,2025-09-11,https://fonts.google.com/specimen/Pirata+One
-Pixelify Sans,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european,400 | 500 | 600 | 700,wght: -,cyrillic | latin | latin-ext,Stefie Justprince,740,1932,No,2023-09-26,2025-09-16,https://fonts.google.com/specimen/Pixelify+Sans
-Plaster,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sorkin Type,1451,2056,No,2011-12-13,2025-09-16,https://fonts.google.com/specimen/Plaster
-Platypi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext | vietnamese,David Sargent,896,1136,No,2024-04-10,2025-09-04,https://fonts.google.com/specimen/Platypi
-Play,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international well-known common,400 | 700,,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Jonas Hecksher,158,1380,No,2011-05-04,2025-09-10,https://fonts.google.com/specimen/Play
-Playball,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,365,1623,No,2011-12-19,2025-09-02,https://fonts.google.com/specimen/Playball
-Playfair,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wdth: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Claus Eggers Sørensen,352,1235,No,2023-04-12,2025-09-10,https://fonts.google.com/specimen/Playfair
-Playfair Display,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european vietnamese top-popular trending most-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | latin | latin-ext | vietnamese,Claus Eggers Sørensen,25,824,No,2011-11-16,2025-09-11,https://fonts.google.com/specimen/Playfair+Display
-Playfair Display SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic english western european extended-latin european vietnamese,400 | 400i | 700 | 700i | 900 | 900i,,cyrillic | latin | latin-ext | vietnamese,Claus Eggers Sørensen,345,1198,No,2012-10-26,2025-09-11,https://fonts.google.com/specimen/Playfair+Display+SC
-Playpen Sans,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,cyrillic | cyrillic-ext | emoji | greek | latin | latin-ext | math | vietnamese,TypeTogether | Laura Meseguer | Veronika Burian | José Scaglione | Kostas Bartsokas | Vera Evstafieva | Tom Grace | Yorlmar Campos,377,21,No,2023-09-06,2025-09-16,https://fonts.google.com/specimen/Playpen+Sans
-Playpen Sans Arabic,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,arabic | emoji | latin | latin-ext | math,TypeTogether | Azza Alameddine | Laura Meseguer | Veronika Burian | José Scaglione,421,14,No,2025-05-12,2025-09-10,https://fonts.google.com/specimen/Playpen+Sans+Arabic
-Playpen Sans Deva,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight hindi devanagari indian english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,devanagari | emoji | latin | latin-ext,TypeTogether | Pooja Saxena | Gunjan Panchal | Laura Meseguer | Veronika Burian | José Scaglione,426,10,No,2025-05-12,2025-09-10,https://fonts.google.com/specimen/Playpen+Sans+Deva
-Playpen Sans Hebrew,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight hebrew RTL israeli english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,emoji | hebrew | latin | latin-ext | math,TypeTogether | Tom Grace | Laura Meseguer | Veronika Burian | José Scaglione,427,11,No,2025-05-12,2025-09-11,https://fonts.google.com/specimen/Playpen+Sans+Hebrew
-Playpen Sans Thai,Handwriting,Sans Serif,Handwriting,personal casual friendly warm handwritten script organic geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european thai southeast-asia,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,emoji | latin | latin-ext | math | thai,TypeTogether | Sirin Gunkloy | Laura Meseguer | Veronika Burian | José Scaglione,424,8,No,2025-05-12,2025-09-10,https://fonts.google.com/specimen/Playpen+Sans+Thai
-Playwrite AR,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1911,1809,No,2024-05-15,2025-09-11,https://fonts.google.com/specimen/Playwrite+AR
-Playwrite AR Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2073,434,No,2024-11-26,2025-05-30,https://fonts.google.com/specimen/Playwrite+AR+Guides
-Playwrite AT,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic variable variable-font responsive variable-weight,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1515,2204,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+AT
-Playwrite AT Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic,400 | 400i,,,TypeTogether | Veronika Burian | José Scaglione,2081,497,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+AT+Guides
-Playwrite AU NSW,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1566,710,No,2024-05-15,2025-09-08,https://fonts.google.com/specimen/Playwrite+AU+NSW
-Playwrite AU NSW Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2075,412,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+AU+NSW+Guides
-Playwrite AU QLD,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1594,1164,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+AU+QLD
-Playwrite AU QLD Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2087,427,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+AU+QLD+Guides
-Playwrite AU SA,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1631,1758,No,2024-05-15,2025-09-08,https://fonts.google.com/specimen/Playwrite+AU+SA
-Playwrite AU SA Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2079,580,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+AU+SA+Guides
-Playwrite AU TAS,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1871,2293,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+AU+TAS
-Playwrite AU TAS Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2088,492,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+AU+TAS+Guides
-Playwrite AU VIC,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1921,978,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+AU+VIC
-Playwrite AU VIC Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2052,578,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+AU+VIC+Guides
-Playwrite BE VLG,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1805,1935,No,2024-05-15,2025-09-10,https://fonts.google.com/specimen/Playwrite+BE+VLG
-Playwrite BE VLG Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2071,465,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+BE+VLG+Guides
-Playwrite BE WAL,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1806,252,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+BE+WAL
-Playwrite BE WAL Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2053,513,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+BE+WAL+Guides
-Playwrite BR,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,2011,704,No,2024-05-29,2025-09-02,https://fonts.google.com/specimen/Playwrite+BR
-Playwrite BR Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2060,467,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+BR+Guides
-Playwrite CA,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1706,2106,No,2024-05-29,2025-09-16,https://fonts.google.com/specimen/Playwrite+CA
-Playwrite CA Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2072,577,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+CA+Guides
-Playwrite CL,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1928,878,No,2024-05-15,2025-09-02,https://fonts.google.com/specimen/Playwrite+CL
-Playwrite CL Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2066,476,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+CL+Guides
-Playwrite CO,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1901,1872,No,2023-12-12,2025-09-08,https://fonts.google.com/specimen/Playwrite+CO
-Playwrite CO Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,1909,198,No,2024-11-26,2025-05-30,https://fonts.google.com/specimen/Playwrite+CO+Guides
-Playwrite CU,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1500,2041,No,2024-05-15,2025-09-08,https://fonts.google.com/specimen/Playwrite+CU
-Playwrite CU Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2022,2323,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+CU+Guides
-Playwrite CZ,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1919,791,No,2024-05-15,2025-09-04,https://fonts.google.com/specimen/Playwrite+CZ
-Playwrite CZ Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2083,555,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+CZ+Guides
-Playwrite DE Grund,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1395,1402,No,2024-05-29,2025-09-16,https://fonts.google.com/specimen/Playwrite+DE+Grund
-Playwrite DE Grund Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2034,1766,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+DE+Grund+Guides
-Playwrite DE LA,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1836,1906,No,2024-05-29,2025-09-04,https://fonts.google.com/specimen/Playwrite+DE+LA
-Playwrite DE LA Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2067,408,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+DE+LA+Guides
-Playwrite DE SAS,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1774,1762,No,2024-05-29,2025-09-16,https://fonts.google.com/specimen/Playwrite+DE+SAS
-Playwrite DE SAS Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2077,464,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+DE+SAS+Guides
-Playwrite DE VA,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,2003,1628,No,2024-05-29,2025-09-04,https://fonts.google.com/specimen/Playwrite+DE+VA
-Playwrite DE VA Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2058,898,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+DE+VA+Guides
-Playwrite DK Loopet,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1701,844,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+DK+Loopet
-Playwrite DK Loopet Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2068,449,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+DK+Loopet+Guides
-Playwrite DK Uloopet,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1864,936,No,2024-05-15,2025-09-11,https://fonts.google.com/specimen/Playwrite+DK+Uloopet
-Playwrite DK Uloopet Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,1912,29,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+DK+Uloopet+Guides
-Playwrite ES,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1819,1953,No,2024-05-29,2025-09-11,https://fonts.google.com/specimen/Playwrite+ES
-Playwrite ES Deco,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1950,685,No,2024-05-29,2025-09-16,https://fonts.google.com/specimen/Playwrite+ES+Deco
-Playwrite ES Deco Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2054,526,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+ES+Deco+Guides
-Playwrite ES Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2086,490,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+ES+Guides
-Playwrite FR Moderne,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1827,759,No,2024-05-15,2025-09-11,https://fonts.google.com/specimen/Playwrite+FR+Moderne
-Playwrite FR Moderne Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2059,758,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+FR+Moderne+Guides
-Playwrite FR Trad,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,2027,859,No,2023-12-11,2025-09-11,https://fonts.google.com/specimen/Playwrite+FR+Trad
-Playwrite FR Trad Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2062,560,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+FR+Trad+Guides
-Playwrite GB J,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic variable variable-font responsive variable-weight,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1898,1488,No,2024-05-29,2025-09-11,https://fonts.google.com/specimen/Playwrite+GB+J
-Playwrite GB J Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic,400 | 400i,,,TypeTogether | Veronika Burian | José Scaglione,2046,2239,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+GB+J+Guides
-Playwrite GB S,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic variable variable-font responsive variable-weight,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1679,1212,No,2024-05-29,2025-09-08,https://fonts.google.com/specimen/Playwrite+GB+S
-Playwrite GB S Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal italic,400 | 400i,,,TypeTogether | Veronika Burian | José Scaglione,2085,417,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+GB+S+Guides
-Playwrite HR,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1555,638,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+HR
-Playwrite HR Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2089,506,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+HR+Guides
-Playwrite HR Lijeva,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1843,2153,No,2024-05-15,2025-09-11,https://fonts.google.com/specimen/Playwrite+HR+Lijeva
-Playwrite HR Lijeva Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2069,432,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+HR+Lijeva+Guides
-Playwrite HU,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1456,22,No,2024-05-15,2025-09-04,https://fonts.google.com/specimen/Playwrite+HU
-Playwrite HU Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2084,478,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+HU+Guides
-Playwrite ID,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1944,1729,No,2024-05-29,2025-09-04,https://fonts.google.com/specimen/Playwrite+ID
-Playwrite ID Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2080,345,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+ID+Guides
-Playwrite IE,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1954,2228,No,2024-05-29,2025-09-16,https://fonts.google.com/specimen/Playwrite+IE
-Playwrite IE Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2044,625,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+IE+Guides
-Playwrite IN,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1492,1942,No,2024-05-29,2025-09-08,https://fonts.google.com/specimen/Playwrite+IN
-Playwrite IN Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2021,2312,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+IN+Guides
-Playwrite IS,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1437,387,No,2024-05-15,2025-09-11,https://fonts.google.com/specimen/Playwrite+IS
-Playwrite IS Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2090,481,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+IS+Guides
-Playwrite IT Moderna,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1775,633,No,2024-05-29,2025-09-08,https://fonts.google.com/specimen/Playwrite+IT+Moderna
-Playwrite IT Moderna Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2061,769,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+IT+Moderna+Guides
-Playwrite IT Trad,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1995,151,No,2024-05-29,2025-09-11,https://fonts.google.com/specimen/Playwrite+IT+Trad
-Playwrite IT Trad Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2065,658,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+IT+Trad+Guides
-Playwrite MX,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1797,670,No,2024-05-29,2025-09-10,https://fonts.google.com/specimen/Playwrite+MX
-Playwrite MX Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,1691,175,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+MX+Guides
-Playwrite NG Modern,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1883,1218,No,2024-05-29,2025-09-11,https://fonts.google.com/specimen/Playwrite+NG+Modern
-Playwrite NG Modern Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2063,399,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+NG+Modern+Guides
-Playwrite NL,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1750,1239,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+NL
-Playwrite NL Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2051,1740,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+NL+Guides
-Playwrite NO,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1766,613,No,2024-05-15,2025-09-04,https://fonts.google.com/specimen/Playwrite+NO
-Playwrite NO Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2082,431,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+NO+Guides
-Playwrite NZ,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1865,1358,No,2024-05-29,2026-01-28,https://fonts.google.com/specimen/Playwrite+NZ
-Playwrite NZ Basic,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1768,2315,No,2026-01-27,2026-01-28,https://fonts.google.com/specimen/Playwrite+NZ+Basic
-Playwrite NZ Basic Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,1917,2324,No,2026-01-27,2026-01-28,https://fonts.google.com/specimen/Playwrite+NZ+Basic+Guides
-Playwrite NZ Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2055,662,No,2024-11-26,2026-01-28,https://fonts.google.com/specimen/Playwrite+NZ+Guides
-Playwrite PE,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1896,683,No,2024-05-15,2025-09-04,https://fonts.google.com/specimen/Playwrite+PE
-Playwrite PE Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2017,926,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+PE+Guides
-Playwrite PL,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1587,641,No,2024-05-15,2025-09-04,https://fonts.google.com/specimen/Playwrite+PL
-Playwrite PL Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2004,929,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+PL+Guides
-Playwrite PT,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1849,440,No,2024-05-15,2025-09-16,https://fonts.google.com/specimen/Playwrite+PT
-Playwrite PT Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2008,914,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+PT+Guides
-Playwrite RO,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1749,219,No,2024-05-15,2025-09-10,https://fonts.google.com/specimen/Playwrite+RO
-Playwrite RO Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2074,523,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+RO+Guides
-Playwrite SK,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1929,1870,No,2024-05-15,2025-09-02,https://fonts.google.com/specimen/Playwrite+SK
-Playwrite SK Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2076,437,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+SK+Guides
-Playwrite TZ,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1964,602,No,2024-05-29,2025-09-10,https://fonts.google.com/specimen/Playwrite+TZ
-Playwrite TZ Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2047,826,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+TZ+Guides
-Playwrite US Modern,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1560,1464,No,2024-05-29,2025-09-16,https://fonts.google.com/specimen/Playwrite+US+Modern
-Playwrite US Modern Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2064,711,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+US+Modern+Guides
-Playwrite US Trad,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1295,1918,No,2024-05-29,2025-09-04,https://fonts.google.com/specimen/Playwrite+US+Trad
-Playwrite US Trad Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2006,778,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+US+Trad+Guides
-Playwrite VN,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1860,1764,No,2024-04-02,2025-09-16,https://fonts.google.com/specimen/Playwrite+VN
-Playwrite VN Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,1620,2236,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+VN+Guides
-Playwrite ZA,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal variable variable-font responsive variable-weight,100 | 200 | 300 | 400,wght: -,,TypeTogether | Veronika Burian | José Scaglione,1783,2110,No,2024-05-29,2025-09-08,https://fonts.google.com/specimen/Playwrite+ZA
-Playwrite ZA Guides,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal,400,,,TypeTogether | Veronika Burian | José Scaglione,2070,1251,No,2024-12-09,2025-05-30,https://fonts.google.com/specimen/Playwrite+ZA+Guides
-Plus Jakarta Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight cyrillic extended english western european extended-latin european vietnamese popular widely-used,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,cyrillic-ext | latin | latin-ext | vietnamese,Tokotype,69,591,No,2022-03-23,2025-09-10,https://fonts.google.com/specimen/Plus+Jakarta+Sans
-Pochaevsk,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european,400,,cyrillic | cyrillic-ext | latin,Aleksandr Andreev,1961,699,No,2024-12-05,2025-05-30,https://fonts.google.com/specimen/Pochaevsk
-Podkova,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Cyreal,618,958,No,2011-05-18,2025-09-08,https://fonts.google.com/specimen/Podkova
-Poetsen One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Rodrigo Fuenzalida | Pablo Impallari,910,1143,No,2024-05-01,2025-05-30,https://fonts.google.com/specimen/Poetsen+One
-Poiret One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Denis Masharov,384,1904,No,2012-02-29,2025-09-11,https://fonts.google.com/specimen/Poiret+One
-Poller One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Yvonne Schüttler,1036,1293,No,2011-09-28,2025-06-25,https://fonts.google.com/specimen/Poller+One
-Poltawski Nowy,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Adam Półtawski | Mateusz Machalski | Borys Kosmynka | Ania Wieluńska,1216,232,No,2023-04-19,2025-09-10,https://fonts.google.com/specimen/Poltawski+Nowy
-Poly,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Nicolás Silva,1023,1588,No,2011-11-02,2025-09-08,https://fonts.google.com/specimen/Poly
-Pompiere,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Karolina Lach,859,1383,No,2011-07-20,2025-09-04,https://fonts.google.com/specimen/Pompiere
-Ponnala,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1946,2256,No,2024-11-18,2025-09-17,https://fonts.google.com/specimen/Ponnala
-Ponomar,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european,400,,cyrillic | cyrillic-ext | latin,Aleksandr Andreev,1551,775,No,2025-02-26,2025-05-30,https://fonts.google.com/specimen/Ponomar
-Pontano Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Vernon Adams,473,1644,No,2012-03-14,2025-09-08,https://fonts.google.com/specimen/Pontano+Sans
-Poor Story,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,Yoon Design,1364,248,No,2018-02-23,2025-09-08,https://fonts.google.com/specimen/Poor+Story
-Poppins,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic hindi devanagari indian english western european extended-latin european top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,devanagari | latin | latin-ext,Indian Type Foundry | Jonny Pinhorn | Ninad Kale,9,1146,No,2015-06-03,2025-09-16,https://fonts.google.com/specimen/Poppins
-Port Lligat Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Tipo,1464,551,No,2012-01-18,2025-09-04,https://fonts.google.com/specimen/Port+Lligat+Sans
-Port Lligat Slab,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Tipo,1346,1780,No,2012-01-18,2025-09-08,https://fonts.google.com/specimen/Port+Lligat+Slab
-Potta One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention japanese kanji hiragana katakana english western european extended-latin european vietnamese,400,,japanese | latin | latin-ext | vietnamese,Font Zone 108,548,1565,No,2020-12-14,2025-09-02,https://fonts.google.com/specimen/Potta+One
-Pragati Narrow,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Omnibus-Type,466,400,No,2015-04-22,2025-09-11,https://fonts.google.com/specimen/Pragati+Narrow
-Praise,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1552,1314,No,2021-10-12,2025-09-16,https://fonts.google.com/specimen/Praise
-Prata,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european vietnamese well-known common,400,,cyrillic | cyrillic-ext | latin | vietnamese,Cyreal,241,972,No,2011-09-07,2025-09-16,https://fonts.google.com/specimen/Prata
-Preahvihear,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong,1495,2263,No,2011-03-02,2025-09-16,https://fonts.google.com/specimen/Preahvihear
-Press Start 2P,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended greek english western european extended-latin european well-known common,400,,cyrillic | cyrillic-ext | greek | latin | latin-ext,CodeMan38,272,1166,No,2012-04-04,2025-09-16,https://fonts.google.com/specimen/Press+Start+2P
-Pridi,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible english western european extended-latin european thai southeast-asia vietnamese,200 | 300 | 400 | 500 | 600 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,510,2223,No,2016-06-15,2025-09-11,https://fonts.google.com/specimen/Pridi
-Princess Sofia,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Tart Workshop,1574,1710,No,2012-02-15,2025-09-16,https://fonts.google.com/specimen/Princess+Sofia
-Prociono,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european,400,,latin,Barry Schwartz,1089,1893,No,2011-08-31,2025-09-08,https://fonts.google.com/specimen/Prociono
-Prompt,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | thai | vietnamese,Cadson Demak,50,564,No,2016-06-15,2025-09-02,https://fonts.google.com/specimen/Prompt
-Prosto One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Jovanny Lemonad | Pavel Emelyanov,920,2124,No,2012-02-29,2025-09-10,https://fonts.google.com/specimen/Prosto+One
-Protest Guerrilla,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | math | symbols | vietnamese,Octavio Pardo,1685,1472,No,2024-01-30,2025-05-30,https://fonts.google.com/specimen/Protest+Guerrilla
-Protest Revolution,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | math | symbols | vietnamese,Octavio Pardo,641,1733,No,2024-01-30,2025-05-30,https://fonts.google.com/specimen/Protest+Revolution
-Protest Riot,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | math | symbols | vietnamese,Octavio Pardo,1194,1863,No,2024-01-30,2025-05-30,https://fonts.google.com/specimen/Protest+Riot
-Protest Strike,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | math | symbols | vietnamese,Octavio Pardo,1111,1811,No,2024-01-30,2025-05-30,https://fonts.google.com/specimen/Protest+Strike
-Proza Libre,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,,latin | latin-ext,Jasper de Waard,586,1963,No,2016-06-15,2025-05-30,https://fonts.google.com/specimen/Proza+Libre
-Public Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,USWDS | Dan Williams | Pablo Impallari | Rodrigo Fuenzalida,85,729,No,2019-06-07,2025-09-16,https://fonts.google.com/specimen/Public+Sans
-Puppies Play,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1791,2001,No,2021-10-12,2025-09-11,https://fonts.google.com/specimen/Puppies+Play
-Puritan,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european,400 | 400i | 700 | 700i,,latin,Ben Weiner,1029,2037,No,2010-11-30,2025-09-10,https://fonts.google.com/specimen/Puritan
-Purple Purse,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1647,1765,No,2012-11-16,2025-09-10,https://fonts.google.com/specimen/Purple+Purse
-Qahiri,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque arabic RTL middle-east english western european,400,,arabic | latin,Khaled Hosny,860,284,No,2021-04-03,2025-09-10,https://fonts.google.com/specimen/Qahiri
-Quando,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Joana Correia,838,1467,No,2012-07-10,2025-09-11,https://fonts.google.com/specimen/Quando
-Quantico,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic english western european,400 | 400i | 700 | 700i,,latin,MADType,380,1144,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Quantico
-Quattrocento,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Impallari Type,311,1746,No,2012-03-20,2025-09-04,https://fonts.google.com/specimen/Quattrocento
-Quattrocento Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i | 700 | 700i,,latin | latin-ext,Impallari Type,346,2071,No,2012-02-15,2025-09-08,https://fonts.google.com/specimen/Quattrocento+Sans
-Questrial,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese well-known common,400,,latin | latin-ext | vietnamese,Joe Prince | Laura Meseguer,159,1483,No,2011-08-10,2025-09-11,https://fonts.google.com/specimen/Questrial
-Quicksand,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese top-popular trending most-used,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Andrew Paglinawan,37,598,No,2011-10-19,2025-09-02,https://fonts.google.com/specimen/Quicksand
-Quintessential,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,828,1754,No,2012-11-02,2025-09-11,https://fonts.google.com/specimen/Quintessential
-Qwigley,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,779,251,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Qwigley
-Qwitcher Grypen,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | vietnamese,Robert Leuschke,824,2152,No,2021-11-26,2025-09-08,https://fonts.google.com/specimen/Qwitcher+Grypen
-REM,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Octavio Pardo,611,98,No,2023-07-20,2025-09-16,https://fonts.google.com/specimen/REM
-Racing Sans One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Impallari Type,508,1927,No,2012-08-13,2025-09-16,https://fonts.google.com/specimen/Racing+Sans+One
-Radio Canada,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wdth: - | wght: -,canadian-aboriginal | latin | latin-ext | vietnamese,Charles Daoud | Coppers and Brasses | Alexandre Saumier Demers | Jacques Le Bailly,338,2198,No,2022-04-25,2025-09-04,https://fonts.google.com/specimen/Radio+Canada
-Radio Canada Big,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Étienne Aubert Bonn,790,2221,No,2024-05-01,2025-09-16,https://fonts.google.com/specimen/Radio+Canada+Big
-Radley,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Vernon Adams,554,365,No,2011-12-13,2025-09-10,https://fonts.google.com/specimen/Radley
-Rajdhani,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hindi devanagari indian english western european extended-latin european popular widely-used,300 | 400 | 500 | 600 | 700,,devanagari | latin | latin-ext,Indian Type Foundry,128,558,No,2014-07-09,2025-09-16,https://fonts.google.com/specimen/Rajdhani
-Rakkas,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention arabic RTL middle-east english western european extended-latin european,400,,arabic | latin | latin-ext,Zeynep Akay,537,385,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Rakkas
-Raleway,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Matt McInerney | Pablo Impallari | Rodrigo Fuenzalida,22,1408,No,2012-09-07,2025-09-10,https://fonts.google.com/specimen/Raleway
-Raleway Dots,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Matt McInerney | Pablo Impallari | Rodrigo Fuenzalida | Brenda Gallo,1086,1922,No,2012-09-07,2025-09-11,https://fonts.google.com/specimen/Raleway+Dots
-Ramabhadra,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian popular widely-used,400,,latin | telugu,Purushoth Kumar Guttula,100,973,No,2014-12-10,2025-09-16,https://fonts.google.com/specimen/Ramabhadra
-Ramaraja,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1367,766,No,2015-01-08,2025-09-10,https://fonts.google.com/specimen/Ramaraja
-Rambla,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i | 700 | 700i,,latin | latin-ext,Martin Sommaruga,856,1333,No,2012-10-31,2025-09-10,https://fonts.google.com/specimen/Rambla
-Rammetto One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,312,1285,No,2011-11-02,2025-09-16,https://fonts.google.com/specimen/Rammetto+One
-Rampart One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Fontworks Inc.,723,852,No,2021-06-08,2025-09-04,https://fonts.google.com/specimen/Rampart+One
-Ramsina,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin | syriac,SIL International,1875,2257,No,2026-02-12,2026-02-17,https://fonts.google.com/specimen/Ramsina
-Ranchers,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Impallari Type,1310,1887,No,2012-09-07,2025-09-11,https://fonts.google.com/specimen/Ranchers
-Rancho,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Sideshow,655,1395,No,2011-10-12,2025-06-02,https://fonts.google.com/specimen/Rancho
-Ranga,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,TipTopTyp,1539,451,No,2015-01-28,2025-04-23,https://fonts.google.com/specimen/Ranga
-Rasa,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic variable variable-font responsive variable-weight gujarati indian english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,gujarati | latin | latin-ext | vietnamese,Rosetta | Anna Giedryś | David Březina,877,1603,No,2016-06-15,2025-09-04,https://fonts.google.com/specimen/Rasa
-Rationale,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Cyreal,1256,1853,No,2011-08-03,2025-09-11,https://fonts.google.com/specimen/Rationale
-Ravi Prakash,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1452,119,No,2015-01-12,2025-09-16,https://fonts.google.com/specimen/Ravi+Prakash
-Readex Pro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese well-known common,200 | 300 | 400 | 500 | 600 | 700,HEXP: - | wght: -,arabic | latin | latin-ext | vietnamese,Thomas Jockin | Nadine Chahine | Bonnie Shaver-Troup | Santiago Orozco | Héctor Gómez,268,961,No,2021-09-16,2025-09-10,https://fonts.google.com/specimen/Readex+Pro
-Recursive,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-slant cyrillic extended english western european extended-latin european vietnamese,1000 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CASL: - | CRSV: - | MONO: - | slnt: - | wght: -,cyrillic-ext | latin | latin-ext | vietnamese,Arrow Type | Stephen Nixon,807,1830,No,2019-06-28,2025-09-04,https://fonts.google.com/specimen/Recursive
-Red Hat Display,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,MCKL,109,391,No,2019-04-09,2025-09-10,https://fonts.google.com/specimen/Red+Hat+Display
-Red Hat Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,MCKL,897,664,No,2021-06-10,2025-09-10,https://fonts.google.com/specimen/Red+Hat+Mono
-Red Hat Text,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european well-known common,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,MCKL,252,548,No,2019-04-09,2025-09-04,https://fonts.google.com/specimen/Red+Hat+Text
-Red Rose,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Jaikishan Patel,547,2270,No,2020-07-02,2025-09-16,https://fonts.google.com/specimen/Red+Rose
-Redacted,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Christian Naths,1247,763,No,2013-09-18,2025-09-17,https://fonts.google.com/specimen/Redacted
-Redacted Script,Display,,Symbols | Handwriting,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph script cursive hand-drawn artistic informal english western european extended-latin european,300 | 400 | 700,,latin | latin-ext,Christian Naths,1684,1771,No,2013-09-18,2025-09-17,https://fonts.google.com/specimen/Redacted+Script
-Reddit Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Stephen Hutchings | OrangeRed,1489,1382,No,2024-03-20,2025-09-04,https://fonts.google.com/specimen/Reddit+Mono
-Reddit Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Stephen Hutchings | OrangeRed,477,527,No,2023-10-10,2025-09-16,https://fonts.google.com/specimen/Reddit+Sans
-Reddit Sans Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Stephen Hutchings | OrangeRed,822,83,No,2024-02-21,2025-09-16,https://fonts.google.com/specimen/Reddit+Sans+Condensed
-Redressed,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1014,1648,No,2011-06-21,2025-09-08,https://fonts.google.com/specimen/Redressed
-Reem Kufi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext | vietnamese,Khaled Hosny | Santiago Orozco,356,65,No,2016-05-31,2025-09-04,https://fonts.google.com/specimen/Reem+Kufi
-Reem Kufi Fun,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european vietnamese,400 | 500 | 600 | 700,wght: -,arabic | latin | latin-ext | vietnamese,Khaled Hosny | Santiago Orozco,1491,1618,No,2021-11-01,2025-09-02,https://fonts.google.com/specimen/Reem+Kufi+Fun
-Reem Kufi Ink,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque arabic RTL middle-east english western european extended-latin european vietnamese,400,,arabic | latin | latin-ext | vietnamese,Khaled Hosny | Santiago Orozco,1512,1203,No,2021-11-01,2025-06-25,https://fonts.google.com/specimen/Reem+Kufi+Ink
-Reenie Beanie,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,James Grieshaber,389,748,No,2010-05-10,2025-09-08,https://fonts.google.com/specimen/Reenie+Beanie
-Reggae One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Fontworks Inc.,1102,2074,No,2020-12-15,2025-09-10,https://fonts.google.com/specimen/Reggae+One
-Rethink Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext,Hans Thiessen,250,1205,No,2023-09-05,2025-09-04,https://fonts.google.com/specimen/Rethink+Sans
-Revalia,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Johan Kallas | Mihkel Virkus,1545,216,No,2012-03-14,2025-09-08,https://fonts.google.com/specimen/Revalia
-Rhodium Libre,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,James Puckett,1339,2283,No,2015-06-03,2025-09-02,https://fonts.google.com/specimen/Rhodium+Libre
-Ribeye,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1059,1879,No,2011-11-23,2025-09-10,https://fonts.google.com/specimen/Ribeye
-Ribeye Marrow,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1527,2132,No,2011-11-23,2025-09-08,https://fonts.google.com/specimen/Ribeye+Marrow
-Righteous,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,Astigmatic,243,646,No,2011-11-23,2025-06-02,https://fonts.google.com/specimen/Righteous
-Risque,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1476,1894,No,2012-11-11,2025-09-08,https://fonts.google.com/specimen/Risque
-Road Rage,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1057,386,No,2021-10-21,2025-09-04,https://fonts.google.com/specimen/Road+Rage
-Roboto,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | math | symbols | vietnamese,Christian Robertson | ParaType | Font Bureau,2,1399,No,2013-01-08,2026-02-19,https://fonts.google.com/specimen/Roboto
-Roboto Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Christian Robertson,15,911,No,2012-06-26,2025-09-11,https://fonts.google.com/specimen/Roboto+Condensed
-Roboto Flex,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width variable-slant russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international popular widely-used,100 | 1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,GRAD: - | XOPQ: - | XTRA: - | YOPQ: - | YTAS: - | YTDE: - | YTFI: - | YTLC: - | YTUC: - | opsz: - | slnt: - | wdth: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Font Bureau | David Berlow | Santiago Orozco | Irene Vlachou | Ilya Ruderman | Yury Ostromentsky | Mikhail Strukov,94,1460,No,2022-05-02,2025-09-04,https://fonts.google.com/specimen/Roboto+Flex
-Roboto Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Christian Robertson,16,842,No,2025-05-12,2025-09-11,https://fonts.google.com/specimen/Roboto+Mono
-Roboto Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,GRAD: - | opsz: - | wdth: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Commercial Type | Greg Gazdowicz,203,388,No,2022-02-10,2025-09-10,https://fonts.google.com/specimen/Roboto+Serif
-Roboto Slab,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international top-popular trending most-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Christian Robertson,29,1279,No,2013-04-10,2025-09-08,https://fonts.google.com/specimen/Roboto+Slab
-Rochester,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,Sideshow,797,2304,No,2011-08-03,2025-09-08,https://fonts.google.com/specimen/Rochester
-Rock 3D,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention japanese kanji hiragana katakana english western european,400,,japanese | latin,Shibuya Font,1746,2108,No,2020-12-14,2025-09-02,https://fonts.google.com/specimen/Rock+3D
-Rock Salt,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,Sideshow,369,2063,No,2011-01-06,2025-09-08,https://fonts.google.com/specimen/Rock+Salt
-RocknRoll One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Fontworks Inc.,665,461,No,2020-12-15,2025-09-10,https://fonts.google.com/specimen/RocknRoll+One
-Rokkitt,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Vernon Adams,283,810,No,2011-07-27,2025-09-11,https://fonts.google.com/specimen/Rokkitt
-Romanesco,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1424,2031,No,2012-08-13,2025-09-16,https://fonts.google.com/specimen/Romanesco
-Ropa Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Botjo Nikoltchev,373,1306,No,2012-01-25,2025-09-04,https://fonts.google.com/specimen/Ropa+Sans
-Rosario,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,732,1272,No,2011-09-07,2025-09-11,https://fonts.google.com/specimen/Rosario
-Rosarivo,Serif,Serif,Handwriting,elegant traditional classic refined literary editorial transitional oldstyle didone script cursive hand-drawn artistic informal italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Pablo Ugerman,1139,2073,No,2012-03-29,2025-09-11,https://fonts.google.com/specimen/Rosarivo
-Rouge Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Sabrina Mariela Lopez,898,1884,No,2012-01-11,2025-09-16,https://fonts.google.com/specimen/Rouge+Script
-Rowdies,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese well-known common,300 | 400 | 700,,latin | latin-ext | vietnamese,Jaikishan Patel,199,816,No,2019-10-10,2025-09-04,https://fonts.google.com/specimen/Rowdies
-Rozha One,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Indian Type Foundry,606,1808,No,2014-08-13,2025-09-16,https://fonts.google.com/specimen/Rozha+One
-Rubik,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight arabic RTL middle-east russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international top-popular trending most-used,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,arabic | cyrillic | cyrillic-ext | hebrew | latin | latin-ext,Hubert and Fischer | Meir Sadan | Cyreal | Daniel Grumer | Omaima Dajani,27,1283,No,2015-07-22,2025-09-10,https://fonts.google.com/specimen/Rubik
-Rubik 80s Fade,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1680,121,No,2022-11-24,2025-05-30,https://fonts.google.com/specimen/Rubik+80s+Fade
-Rubik Beastly,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1669,884,No,2021-09-02,2025-09-04,https://fonts.google.com/specimen/Rubik+Beastly
-Rubik Broken Fax,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1784,665,No,2023-12-13,2025-05-30,https://fonts.google.com/specimen/Rubik+Broken+Fax
-Rubik Bubbles,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,858,245,No,2022-02-17,2025-05-30,https://fonts.google.com/specimen/Rubik+Bubbles
-Rubik Burned,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1640,267,No,2022-06-15,2025-05-30,https://fonts.google.com/specimen/Rubik+Burned
-Rubik Dirt,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,931,730,No,2022-06-15,2025-05-30,https://fonts.google.com/specimen/Rubik+Dirt
-Rubik Distressed,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1538,2168,No,2022-06-15,2025-05-30,https://fonts.google.com/specimen/Rubik+Distressed
-Rubik Doodle Shadow,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1227,588,No,2023-12-13,2025-05-30,https://fonts.google.com/specimen/Rubik+Doodle+Shadow
-Rubik Doodle Triangles,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1794,501,No,2023-12-13,2025-05-30,https://fonts.google.com/specimen/Rubik+Doodle+Triangles
-Rubik Gemstones,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1622,2184,No,2022-11-24,2025-05-30,https://fonts.google.com/specimen/Rubik+Gemstones
-Rubik Glitch,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1080,2072,No,2022-02-17,2025-05-30,https://fonts.google.com/specimen/Rubik+Glitch
-Rubik Glitch Pop,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1662,1876,No,2024-01-23,2025-05-30,https://fonts.google.com/specimen/Rubik+Glitch+Pop
-Rubik Iso,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1487,435,No,2022-06-15,2025-05-30,https://fonts.google.com/specimen/Rubik+Iso
-Rubik Lines,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1808,353,No,2023-12-13,2025-05-30,https://fonts.google.com/specimen/Rubik+Lines
-Rubik Maps,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1799,579,No,2023-12-13,2025-05-30,https://fonts.google.com/specimen/Rubik+Maps
-Rubik Marker Hatch,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1767,1337,No,2022-06-15,2025-05-30,https://fonts.google.com/specimen/Rubik+Marker+Hatch
-Rubik Maze,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1907,1497,No,2022-06-15,2025-05-30,https://fonts.google.com/specimen/Rubik+Maze
-Rubik Microbe,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1752,131,No,2022-02-17,2025-05-30,https://fonts.google.com/specimen/Rubik+Microbe
-Rubik Mono One,Sans Serif,Sans Serif,Monospace,clean modern minimal professional readable neutral geometric humanist grotesque mono fixed-width tabular data code russian cyrillic slavic english western european extended-latin european well-known common,400,,cyrillic | latin | latin-ext,Hubert and Fischer,223,317,No,2014-05-05,2025-09-11,https://fonts.google.com/specimen/Rubik+Mono+One
-Rubik Moonrocks,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1442,1739,No,2022-02-17,2025-09-10,https://fonts.google.com/specimen/Rubik+Moonrocks
-Rubik Pixels,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1507,31,No,2023-03-31,2025-09-08,https://fonts.google.com/specimen/Rubik+Pixels
-Rubik Puddles,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1727,1691,No,2022-02-17,2025-05-30,https://fonts.google.com/specimen/Rubik+Puddles
-Rubik Scribble,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext | math | symbols,NaN | Luke Prowse,1363,621,No,2023-12-13,2025-05-30,https://fonts.google.com/specimen/Rubik+Scribble
-Rubik Spray Paint,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1655,1346,No,2022-11-24,2025-05-30,https://fonts.google.com/specimen/Rubik+Spray+Paint
-Rubik Storm,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1852,2241,No,2022-11-24,2025-05-30,https://fonts.google.com/specimen/Rubik+Storm
-Rubik Vinyl,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1613,563,No,2022-11-24,2025-05-30,https://fonts.google.com/specimen/Rubik+Vinyl
-Rubik Wet Paint,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended hebrew RTL israeli english western european extended-latin european,400,,cyrillic | cyrillic-ext | hebrew | latin | latin-ext,NaN | Luke Prowse,1153,74,No,2022-02-17,2025-05-30,https://fonts.google.com/specimen/Rubik+Wet+Paint
-Ruda,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | latin | latin-ext | vietnamese,Mariela Monsalve | Angelina Sanchez,457,1521,No,2012-01-11,2025-09-04,https://fonts.google.com/specimen/Ruda
-Rufina,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Martin Sommaruga,539,968,No,2012-10-31,2025-09-16,https://fonts.google.com/specimen/Rufina
-Ruge Boogie,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1732,1591,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Ruge+Boogie
-Ruluko,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Ana Sanfelippo | Angélica Díaz | Meme Hernández,1417,2258,No,2012-01-11,2025-09-16,https://fonts.google.com/specimen/Ruluko
-Rum Raisin,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1331,1231,No,2012-11-02,2025-09-10,https://fonts.google.com/specimen/Rum+Raisin
-Ruslan Display,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext | math | symbols,Oleg Snarsky | Denis Masharov | Vladimir Rabdu,772,906,No,2011-05-18,2025-06-02,https://fonts.google.com/specimen/Ruslan+Display
-Russo One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european well-known common,400,,cyrillic | latin | latin-ext,Jovanny Lemonad,237,1284,No,2012-04-04,2025-09-16,https://fonts.google.com/specimen/Russo+One
-Ruthie,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1284,679,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Ruthie
-Ruwudu,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone arabic RTL middle-east english western european extended-latin european,400 | 500 | 600 | 700,,arabic | latin | latin-ext,SIL International,1498,2213,No,2023-08-07,2025-05-30,https://fonts.google.com/specimen/Ruwudu
-Rye,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Nicole Fally,584,2018,No,2012-08-21,2025-09-16,https://fonts.google.com/specimen/Rye
-SN Pro,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Tobias Whetton | Supernotes,1448,2296,No,2026-01-27,2026-01-28,https://fonts.google.com/specimen/SN+Pro
-STIX Two Text,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Tiro Typeworks | Ross Mills | John Hudson | Paul Hanslow,306,841,No,2021-04-15,2025-09-04,https://fonts.google.com/specimen/STIX+Two+Text
-SUSE,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,René Bieder,686,1417,No,2024-08-13,2025-09-18,https://fonts.google.com/specimen/SUSE
-SUSE Mono,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,latin | latin-ext | vietnamese,René Bieder,1801,2085,No,2025-09-17,2025-09-18,https://fonts.google.com/specimen/SUSE+Mono
-Sacramento,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european well-known common,400,,latin | latin-ext,Astigmatic,278,912,No,2012-11-01,2025-09-11,https://fonts.google.com/specimen/Sacramento
-Sahitya,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european,400 | 700,,devanagari | latin,Juan Pablo del Peral,1466,2059,No,2015-06-17,2025-09-04,https://fonts.google.com/specimen/Sahitya
-Sail,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Miguel Hernandez,1180,1145,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Sail
-Saira,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Omnibus-Type,56,479,No,2017-07-31,2025-11-18,https://fonts.google.com/specimen/Saira
-Saira Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible english western european extended-latin european vietnamese well-known common,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Omnibus-Type,196,398,No,2017-07-31,2025-09-11,https://fonts.google.com/specimen/Saira+Condensed
-Saira Extra Condensed,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Omnibus-Type,379,223,No,2017-07-31,2025-09-16,https://fonts.google.com/specimen/Saira+Extra+Condensed
-Saira Semi Condensed,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | vietnamese,Omnibus-Type,419,453,No,2017-07-31,2025-09-16,https://fonts.google.com/specimen/Saira+Semi+Condensed
-Saira Stencil One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Hector Gatti | Omnibus-Type,961,2232,No,2019-06-18,2025-09-10,https://fonts.google.com/specimen/Saira+Stencil+One
-Salsa,Display,Sans Serif,Handwriting,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque script cursive hand-drawn artistic informal english western european,400,,latin,John Vargas Beltrán,982,1207,No,2011-10-12,2025-09-16,https://fonts.google.com/specimen/Salsa
-Sanchez,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong italic english western european extended-latin european well-known common,400 | 400i,,latin | latin-ext,Daniel Hernandez,211,1902,No,2012-10-31,2025-09-08,https://fonts.google.com/specimen/Sanchez
-Sancreek,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,1091,2066,No,2011-10-12,2025-09-16,https://fonts.google.com/specimen/Sancreek
-Sankofa Display,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Batsirai Madzonga,1893,155,No,2024-07-29,2025-05-30,https://fonts.google.com/specimen/Sankofa+Display
-Sansation,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic greek english western european extended-latin european,300 | 300i | 400 | 400i | 700 | 700i,,cyrillic | greek | latin | latin-ext,Bernd Montag,1189,1832,No,2025-04-17,2025-04-23,https://fonts.google.com/specimen/Sansation
-Sansita,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext,Omnibus-Type,512,1342,No,2016-12-04,2025-09-08,https://fonts.google.com/specimen/Sansita
-Sansita Swashed,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Omnibus-Type,849,2081,No,2020-08-31,2025-09-04,https://fonts.google.com/specimen/Sansita+Swashed
-Sarabun,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese well-known common,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,,latin | latin-ext | thai | vietnamese,Suppakit Chalermlarp,205,1442,No,2013-10-28,2025-09-11,https://fonts.google.com/specimen/Sarabun
-Sarala,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Andres Torresi,481,1857,No,2015-06-17,2025-09-04,https://fonts.google.com/specimen/Sarala
-Sarina,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,James Grieshaber,871,371,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Sarina
-Sarpanch,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible hindi devanagari indian english western european extended-latin european,400 | 500 | 600 | 700 | 800 | 900,,devanagari | latin | latin-ext,Indian Type Foundry,954,257,No,2014-09-03,2025-09-16,https://fonts.google.com/specimen/Sarpanch
-Sassy Frass,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1666,943,No,2021-10-12,2025-09-16,https://fonts.google.com/specimen/Sassy+Frass
-Satisfy,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european popular widely-used,400,,latin,Sideshow,145,1720,No,2011-10-12,2025-06-02,https://fonts.google.com/specimen/Satisfy
-Savate,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Plomb Type | Max Esnée,1763,668,No,2025-06-04,2025-09-10,https://fonts.google.com/specimen/Savate
-Sawarabi Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european vietnamese well-known common,400,,cyrillic | japanese | latin | latin-ext | vietnamese,mshio,293,1421,No,2018-05-17,2025-06-25,https://fonts.google.com/specimen/Sawarabi+Gothic
-Sawarabi Mincho,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone japanese kanji hiragana katakana english western european extended-latin european well-known common,400,,braille | japanese | latin | latin-ext,mshio,263,804,No,2018-05-17,2025-09-10,https://fonts.google.com/specimen/Sawarabi+Mincho
-Scada,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended english western european extended-latin european,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | latin | latin-ext,Jovanny Lemonad,861,1642,No,2012-07-30,2025-09-08,https://fonts.google.com/specimen/Scada
-Scheherazade New,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone arabic RTL middle-east english western european extended-latin european,400 | 500 | 600 | 700,,arabic | latin | latin-ext,SIL International,783,103,No,2021-05-12,2025-09-16,https://fonts.google.com/specimen/Scheherazade+New
-Schibsted Grotesk,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Bakken & Bæck | Henrik Kongsvoll,88,1504,No,2023-03-02,2025-09-04,https://fonts.google.com/specimen/Schibsted+Grotesk
-Schoolbell,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Font Diner,662,1466,No,2011-01-06,2025-05-30,https://fonts.google.com/specimen/Schoolbell
-Science Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width variable-slant russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,CTRS: - | slnt: - | wdth: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Thomas Phinney | Vassil Kateliev | Brandon Buerkle,1504,1686,No,2025-11-19,2025-11-20,https://fonts.google.com/specimen/Science+Gothic
-Scope One,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Dalton Maag,1173,1700,No,2016-06-15,2025-09-10,https://fonts.google.com/specimen/Scope+One
-Seaweed Script,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Neapolitan,846,1987,No,2012-02-29,2025-09-11,https://fonts.google.com/specimen/Seaweed+Script
-Secular One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hebrew RTL israeli english western european extended-latin european,400,,hebrew | latin | latin-ext,Michal Sahar,505,2165,No,2016-03-31,2025-09-08,https://fonts.google.com/specimen/Secular+One
-Sedan,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Sebastián Salazar,1577,165,No,2024-04-10,2025-05-30,https://fonts.google.com/specimen/Sedan
-Sedan SC,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Sebastián Salazar,1328,73,No,2024-05-01,2025-05-30,https://fonts.google.com/specimen/Sedan+SC
-Sedgwick Ave,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Pedro Vergani | Kevin Burke,1071,922,No,2017-08-01,2025-09-08,https://fonts.google.com/specimen/Sedgwick+Ave
-Sedgwick Ave Display,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Pedro Vergani | Kevin Burke,839,53,No,2017-08-01,2025-09-11,https://fonts.google.com/specimen/Sedgwick+Ave+Display
-Sekuya,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,SEKUYA,1941,2297,No,2025-12-08,2025-12-10,https://fonts.google.com/specimen/Sekuya
-Sen,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,Kosal Sen,331,1882,No,2020-01-17,2025-09-10,https://fonts.google.com/specimen/Sen
-Send Flowers,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1569,1658,No,2022-03-11,2025-09-11,https://fonts.google.com/specimen/Send+Flowers
-Sevillana,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Brownfox,956,2279,No,2012-02-22,2025-09-16,https://fonts.google.com/specimen/Sevillana
-Seymour One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Vernon Adams,1336,851,No,2012-10-24,2025-09-16,https://fonts.google.com/specimen/Seymour+One
-Shadows Into Light,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european popular widely-used,400,,latin | latin-ext,Kimberly Geswein,146,1532,No,2011-06-08,2025-09-10,https://fonts.google.com/specimen/Shadows+Into+Light
-Shadows Into Light Two,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,574,1804,No,2012-02-22,2025-09-16,https://fonts.google.com/specimen/Shadows+Into+Light+Two
-Shafarik,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european,400,,cyrillic | cyrillic-ext | glagolitic | latin | latin-ext,Aleksandr Andreev,1861,2218,No,2025-02-11,2025-05-30,https://fonts.google.com/specimen/Shafarik
-Shalimar,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1285,957,No,2021-10-14,2025-09-08,https://fonts.google.com/specimen/Shalimar
-Shantell Sans,Display,Sans Serif,Handwriting,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,BNCE: - | INFM: - | SPAC: - | wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Shantell Martin | Arrow Type | Anya Danilova,778,164,No,2023-01-16,2025-09-16,https://fonts.google.com/specimen/Shantell+Sans
-Shanti,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,1038,792,No,2011-05-11,2025-05-30,https://fonts.google.com/specimen/Shanti
-Share,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic english western european extended-latin european,400 | 400i | 700 | 700i,,latin | latin-ext,Carrois Apostrophe,679,1896,No,2012-02-08,2025-09-08,https://fonts.google.com/specimen/Share
-Share Tech,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european popular widely-used,400,,latin,Carrois Apostrophe,65,466,No,2012-10-31,2025-09-11,https://fonts.google.com/specimen/Share+Tech
-Share Tech Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code english western european,400,,latin,Carrois Apostrophe,342,199,No,2012-10-31,2025-09-16,https://fonts.google.com/specimen/Share+Tech+Mono
-Shippori Antique,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,FONTDASU,1114,2007,No,2021-04-14,2025-09-04,https://fonts.google.com/specimen/Shippori+Antique
-Shippori Antique B1,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,FONTDASU,1220,81,No,2021-04-14,2025-09-04,https://fonts.google.com/specimen/Shippori+Antique+B1
-Shippori Mincho,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone japanese kanji hiragana katakana english western european extended-latin european well-known common,400 | 500 | 600 | 700 | 800,,japanese | latin | latin-ext,FONTDASU,280,1245,No,2021-01-04,2025-09-04,https://fonts.google.com/specimen/Shippori+Mincho
-Shippori Mincho B1,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone japanese kanji hiragana katakana english western european extended-latin european,400 | 500 | 600 | 700 | 800,,japanese | latin | latin-ext,FONTDASU,544,1446,No,2021-01-04,2025-09-11,https://fonts.google.com/specimen/Shippori+Mincho+B1
-Shizuru,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention japanese kanji hiragana katakana english western european,400,,japanese | latin,Shibuya Font,1781,2187,No,2020-12-08,2025-09-10,https://fonts.google.com/specimen/Shizuru
-Shojumaru,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,979,1849,No,2012-01-25,2025-09-11,https://fonts.google.com/specimen/Shojumaru
-Short Stack,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,James Grieshaber,905,808,No,2011-08-17,2025-09-10,https://fonts.google.com/specimen/Short+Stack
-Shrikhand,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention gujarati indian english western european extended-latin european,400,,gujarati | latin | latin-ext,Jonny Pinhorn,526,484,No,2016-06-15,2025-09-08,https://fonts.google.com/specimen/Shrikhand
-Siemreap,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque khmer cambodian,400,,khmer,Danh Hong,1433,2197,No,2011-04-20,2025-09-17,https://fonts.google.com/specimen/Siemreap
-Sigmar,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Vernon Adams,1265,2185,No,2023-02-23,2025-09-16,https://fonts.google.com/specimen/Sigmar
-Sigmar One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Vernon Adams,692,768,No,2011-05-04,2025-09-04,https://fonts.google.com/specimen/Sigmar+One
-Signika,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,300 | 400 | 500 | 600 | 700,GRAD: - | wght: -,latin | latin-ext | vietnamese,Anna Giedryś,189,1449,No,2011-11-23,2025-09-10,https://fonts.google.com/specimen/Signika
-Signika Negative,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese well-known common,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Anna Giedryś,229,760,No,2011-11-23,2025-09-02,https://fonts.google.com/specimen/Signika+Negative
-Silkscreen,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Jason Kottke,558,57,No,2022-06-22,2025-09-08,https://fonts.google.com/specimen/Silkscreen
-Simonetta,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european,400 | 400i | 900 | 900i,,latin | latin-ext,Brownfox,1402,714,No,2012-04-04,2025-09-11,https://fonts.google.com/specimen/Simonetta
-Single Day,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention korean hangul,400,,korean,DXKorea Inc,1244,180,No,2018-02-22,2025-09-08,https://fonts.google.com/specimen/Single+Day
-Sintony,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Eduardo Rodriguez Tunni,585,1640,No,2013-01-30,2025-09-16,https://fonts.google.com/specimen/Sintony
-Sirin Stencil,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Cyreal,1629,1827,No,2012-01-18,2025-09-04,https://fonts.google.com/specimen/Sirin+Stencil
-Sirivennela,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1834,2128,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Sirivennela
-Six Caps,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,636,2244,No,2011-02-16,2025-09-08,https://fonts.google.com/specimen/Six+Caps
-Sixtyfour,Monospace,Sans Serif,Display,code developer technical fixed-width terminal programming geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european,400,BLED: - | SCAN: -,latin | latin-ext | math | symbols,Jens Kutílek,1521,2141,No,2024-01-23,2025-09-04,https://fonts.google.com/specimen/Sixtyfour
-Sixtyfour Convergence,Monospace,Sans Serif,Display,code developer technical fixed-width terminal programming geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european,400,BLED: - | SCAN: - | XELA: - | YELA: -,latin | latin-ext | math | symbols,Simon Cozens | Jens Kutílek,1695,287,No,2024-07-02,2025-09-08,https://fonts.google.com/specimen/Sixtyfour+Convergence
-Skranji,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Neapolitan,685,334,No,2012-08-21,2025-09-16,https://fonts.google.com/specimen/Skranji
-Slabo 13px,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong english western european extended-latin european,400,,latin | latin-ext,John Hudson,1033,2252,No,2014-05-30,2025-09-11,https://fonts.google.com/specimen/Slabo+13px
-Slabo 27px,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong english western european extended-latin european popular widely-used,400,,latin | latin-ext,John Hudson,127,868,No,2014-05-30,2025-09-16,https://fonts.google.com/specimen/Slabo+27px
-Slackey,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Sideshow,888,422,No,2011-01-06,2025-06-02,https://fonts.google.com/specimen/Slackey
-Slackside One,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Maniackers Design,1771,1440,No,2020-12-14,2025-09-10,https://fonts.google.com/specimen/Slackside+One
-Smokum,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1255,95,No,2011-08-03,2025-06-02,https://fonts.google.com/specimen/Smokum
-Smooch,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1418,1871,No,2021-11-02,2025-09-16,https://fonts.google.com/specimen/Smooch
-Smooch Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,latin | latin-ext | vietnamese,Robert Leuschke,67,456,No,2021-12-17,2025-09-10,https://fonts.google.com/specimen/Smooch+Sans
-Smythe,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Vernon Adams,1175,806,No,2011-04-20,2025-09-16,https://fonts.google.com/specimen/Smythe
-Sniglet,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400 | 800,,latin | latin-ext,Haley Fiege,648,503,No,2010-12-15,2025-09-10,https://fonts.google.com/specimen/Sniglet
-Snippet,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european,400,,latin,Gesine Todt,1617,1900,No,2011-07-20,2025-05-30,https://fonts.google.com/specimen/Snippet
-Snowburst One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Annet Stirling,1687,655,No,2012-11-26,2025-09-02,https://fonts.google.com/specimen/Snowburst+One
-Sofadi One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Botjo Nikoltchev,1506,528,No,2012-09-30,2025-09-11,https://fonts.google.com/specimen/Sofadi+One
-Sofia,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,LatinoType,439,1839,No,2011-12-19,2025-09-04,https://fonts.google.com/specimen/Sofia
-Sofia Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european well-known common,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext,Lettersoup | Botio Nikoltchev | Ani Petrova,207,1889,No,2021-01-13,2025-09-04,https://fonts.google.com/specimen/Sofia+Sans
-Sofia Sans Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext,Lettersoup | Botio Nikoltchev | Ani Petrova,322,1609,No,2022-11-16,2025-09-10,https://fonts.google.com/specimen/Sofia+Sans+Condensed
-Sofia Sans Extra Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext,Lettersoup | Botio Nikoltchev | Ani Petrova,422,339,No,2022-11-16,2025-09-11,https://fonts.google.com/specimen/Sofia+Sans+Extra+Condensed
-Sofia Sans Semi Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext,Lettersoup | Botio Nikoltchev | Ani Petrova,708,1941,No,2022-11-16,2025-09-10,https://fonts.google.com/specimen/Sofia+Sans+Semi+Condensed
-Solitreo,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal hebrew RTL israeli english western european extended-latin european,400,,hebrew | latin | latin-ext,Nathan Gross | Bryan Kirschen,1019,347,No,2022-12-14,2025-05-30,https://fonts.google.com/specimen/Solitreo
-Solway,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,300 | 400 | 500 | 700 | 800,,latin,Mariya Lish | The Northern Block,865,1517,No,2018-08-06,2025-09-08,https://fonts.google.com/specimen/Solway
-Sometype Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Ryoichi Tsunekawa,703,323,No,2023-10-17,2025-09-16,https://fonts.google.com/specimen/Sometype+Mono
-Song Myung,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone korean hangul,400,,korean,JIKJI,1026,447,No,2018-02-23,2025-09-08,https://fonts.google.com/specimen/Song+Myung
-Sono,Sans Serif,Sans Serif,Monospace,clean modern minimal professional readable neutral geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european vietnamese,200 | 300 | 400 | 500 | 600 | 700 | 800,MONO: - | wght: -,latin | latin-ext | vietnamese,Tyler Finck,1349,2207,No,2022-07-29,2025-09-11,https://fonts.google.com/specimen/Sono
-Sonsie One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Riccardo De Franceschi,1333,2206,No,2012-01-18,2025-09-16,https://fonts.google.com/specimen/Sonsie+One
-Sora,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,Jonathan Barnbrook | Julián Moncada,120,836,No,2020-06-10,2025-09-08,https://fonts.google.com/specimen/Sora
-Sorts Mill Goudy,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Barry Schwartz,334,830,No,2011-09-07,2025-09-04,https://fonts.google.com/specimen/Sorts+Mill+Goudy
-Sour Gummy,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext,Stefie Justprince,1045,202,No,2024-11-05,2025-09-10,https://fonts.google.com/specimen/Sour+Gummy
-Source Code Pro,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international popular widely-used,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Paul D. Hunt,66,585,No,2012-09-20,2025-09-08,https://fonts.google.com/specimen/Source+Code+Pro
-Source Sans 3,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european vietnamese multilingual international popular widely-used,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | vietnamese,Paul D. Hunt,61,2116,No,2021-09-17,2025-09-04,https://fonts.google.com/specimen/Source+Sans+3
-Source Serif 4,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international popular widely-used,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Frank Grießhammer,139,460,No,2021-11-16,2025-09-11,https://fonts.google.com/specimen/Source+Serif+4
-Space Grotesk,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese popular widely-used,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Florian Karsten,93,285,No,2020-10-06,2025-09-04,https://fonts.google.com/specimen/Space+Grotesk
-Space Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code italic english western european extended-latin european vietnamese well-known common,400 | 400i | 700 | 700i,,latin | latin-ext | vietnamese,Colophon Foundry,194,367,No,2016-06-15,2025-06-25,https://fonts.google.com/specimen/Space+Mono
-Special Elite,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,327,1611,No,2011-04-20,2025-09-08,https://fonts.google.com/specimen/Special+Elite
-Special Gothic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight variable-width english western european extended-latin european,400 | 500 | 600 | 700,wdth: - | wght: -,latin | latin-ext,Alistair McCready,1170,1349,No,2025-04-07,2025-07-30,https://fonts.google.com/specimen/Special+Gothic
-Special Gothic Condensed One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Alistair McCready,1046,740,No,2025-04-07,2025-04-23,https://fonts.google.com/specimen/Special+Gothic+Condensed+One
-Special Gothic Expanded One,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Alistair McCready,1034,105,No,2025-04-07,2025-04-23,https://fonts.google.com/specimen/Special+Gothic+Expanded+One
-Spectral,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Production Type,188,1238,No,2017-06-12,2025-09-11,https://fonts.google.com/specimen/Spectral
-Spectral SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Production Type,869,2010,No,2017-10-10,2025-09-02,https://fonts.google.com/specimen/Spectral+SC
-Spicy Rice,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1055,495,No,2011-12-13,2025-09-10,https://fonts.google.com/specimen/Spicy+Rice
-Spinnaker,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Elena Albertoni,568,442,No,2011-09-28,2025-09-04,https://fonts.google.com/specimen/Spinnaker
-Spirax,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Brenda Gallo,1337,1546,No,2011-11-23,2025-09-10,https://fonts.google.com/specimen/Spirax
-Splash,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1696,1709,No,2022-05-18,2025-09-16,https://fonts.google.com/specimen/Splash
-Spline Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Eben Sorkin | Mirko Velimirović,511,2017,No,2021-11-22,2025-09-10,https://fonts.google.com/specimen/Spline+Sans
-Spline Sans Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Eben Sorkin | Mirko Velimirović,1230,1650,No,2022-03-27,2025-09-10,https://fonts.google.com/specimen/Spline+Sans+Mono
-Squada One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Joe Prince,463,1584,No,2011-12-15,2025-09-10,https://fonts.google.com/specimen/Squada+One
-Square Peg,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,947,310,No,2022-03-23,2025-09-04,https://fonts.google.com/specimen/Square+Peg
-Sree Krushnadevaraya,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,1274,2127,No,2015-01-12,2025-09-11,https://fonts.google.com/specimen/Sree+Krushnadevaraya
-Sriracha,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european thai southeast-asia vietnamese,400,,latin | latin-ext | thai | vietnamese,Cadson Demak,468,421,No,2015-07-01,2025-09-11,https://fonts.google.com/specimen/Sriracha
-Srisakdi,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european thai southeast-asia vietnamese,400 | 700,,latin | latin-ext | thai | vietnamese,Cadson Demak,1280,1994,No,2018-09-10,2025-09-08,https://fonts.google.com/specimen/Srisakdi
-Staatliches,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Brian LaRossa | Erica Carras,354,684,No,2018-12-09,2025-09-04,https://fonts.google.com/specimen/Staatliches
-Stack Sans Headline,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Koto,1477,1752,No,2025-11-03,2025-11-04,https://fonts.google.com/specimen/Stack+Sans+Headline
-Stack Sans Notch,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Koto,1743,928,No,2025-11-03,2025-11-04,https://fonts.google.com/specimen/Stack+Sans+Notch
-Stack Sans Text,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european,200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext,Koto,1453,2084,No,2025-11-03,2025-11-04,https://fonts.google.com/specimen/Stack+Sans+Text
-Stalemate,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1253,2235,No,2012-11-03,2025-09-10,https://fonts.google.com/specimen/Stalemate
-Stalinist One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Alexey Maslov | Jovanny Lemonad,1426,459,No,2012-08-20,2025-09-02,https://fonts.google.com/specimen/Stalinist+One
-Stardos Stencil,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400 | 700,,latin,Vernon Adams,571,511,No,2011-07-06,2025-05-30,https://fonts.google.com/specimen/Stardos+Stencil
-Stick,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Fontworks Inc.,1184,509,No,2020-12-15,2025-09-10,https://fonts.google.com/specimen/Stick
-Stick No Bills,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european sinhala sri-lankan,200 | 300 | 400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext | sinhala,Mooniak,1066,1836,No,2021-06-29,2025-09-10,https://fonts.google.com/specimen/Stick+No+Bills
-Stint Ultra Condensed,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1298,2140,No,2011-12-07,2025-09-11,https://fonts.google.com/specimen/Stint+Ultra+Condensed
-Stint Ultra Expanded,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,1286,1277,No,2012-02-15,2025-09-08,https://fonts.google.com/specimen/Stint+Ultra+Expanded
-Stoke,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,300 | 400,,latin | latin-ext,Nicole Fally,1362,776,No,2012-08-03,2025-09-10,https://fonts.google.com/specimen/Stoke
-Story Script,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Lana Roulhac | Ben Buysse,1532,142,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Story+Script
-Strait,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1320,1997,No,2012-10-26,2025-09-08,https://fonts.google.com/specimen/Strait
-Style Script,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,721,785,No,2021-05-14,2025-09-10,https://fonts.google.com/specimen/Style+Script
-Stylish,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention korean hangul,400,,korean,AsiaSoft Inc,1246,1510,No,2018-02-27,2025-06-25,https://fonts.google.com/specimen/Stylish
-Sue Ellen Francisco,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,Kimberly Geswein,885,1677,No,2011-04-14,2025-09-08,https://fonts.google.com/specimen/Sue+Ellen+Francisco
-Suez One,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention hebrew RTL israeli english western european extended-latin european,400,,hebrew | latin | latin-ext,Michal Sahar,644,97,No,2016-03-31,2025-09-08,https://fonts.google.com/specimen/Suez+One
-Sulphur Point,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,300 | 400 | 700,,latin | latin-ext,Dale Sattler,1142,327,No,2019-09-25,2025-09-16,https://fonts.google.com/specimen/Sulphur+Point
-Sumana,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Cyreal,1078,247,No,2015-04-29,2025-09-11,https://fonts.google.com/specimen/Sumana
-Sunflower,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque korean hangul,300 | 500 | 700,,korean,JIKJISOFT,945,909,No,2018-02-27,2025-09-16,https://fonts.google.com/specimen/Sunflower
-Sunshiney,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Sideshow,1043,1503,No,2011-01-06,2025-05-30,https://fonts.google.com/specimen/Sunshiney
-Supermercado One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,James Grieshaber,989,1011,No,2011-11-02,2025-09-10,https://fonts.google.com/specimen/Supermercado+One
-Sura,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,400 | 700,,devanagari | latin | latin-ext,Carolina Giovagnoli,1371,1772,No,2015-06-17,2025-09-10,https://fonts.google.com/specimen/Sura
-Suranna,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,1094,1816,No,2015-01-12,2025-09-08,https://fonts.google.com/specimen/Suranna
-Suravaram,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european telugu indian,400,,latin | telugu,Purushoth Kumar Guttula,1723,120,No,2015-01-12,2025-09-10,https://fonts.google.com/specimen/Suravaram
-Suwannaphum,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone khmer cambodian english western european,100 | 300 | 400 | 700 | 900,,khmer | latin,Danh Hong,1342,671,No,2011-03-02,2025-09-02,https://fonts.google.com/specimen/Suwannaphum
-Swanky and Moo Moo,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,1076,894,No,2011-04-27,2025-09-16,https://fonts.google.com/specimen/Swanky+and+Moo+Moo
-Syncopate,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400 | 700,,latin | latin-ext,Astigmatic,440,818,No,2011-04-27,2025-09-08,https://fonts.google.com/specimen/Syncopate
-Syne,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight greek english western european extended-latin european well-known common,400 | 500 | 600 | 700 | 800,wght: -,greek | latin | latin-ext,Bonjour Monde | Lucas Descroix | George Triantafyllakos,245,381,No,2020-08-25,2025-09-16,https://fonts.google.com/specimen/Syne
-Syne Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code english western european extended-latin european,400,,latin | latin-ext,Bonjour Monde | Lucas Descroix,770,715,No,2020-08-25,2025-09-16,https://fonts.google.com/specimen/Syne+Mono
-Syne Tactile,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Bonjour Monde | Lucas Descroix,1757,88,No,2020-08-25,2025-09-08,https://fonts.google.com/specimen/Syne+Tactile
-TASA Explorer,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,Local Remote | Weizhong Zhang,1714,2237,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/TASA+Explorer
-TASA Orbiter,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european,400 | 500 | 600 | 700 | 800,wght: -,latin | latin-ext,Local Remote | Weizhong Zhang,1463,1379,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/TASA+Orbiter
-Tac One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | math | symbols | vietnamese,Afrotype | Seyi Olusanya | Eyiyemi Adegbite | David Udoh | Mirko Velimirović,1386,337,No,2024-03-20,2025-05-30,https://fonts.google.com/specimen/Tac+One
-Tagesschrift,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Yanone,1742,1664,No,2025-04-17,2025-04-23,https://fonts.google.com/specimen/Tagesschrift
-Tai Heritage Pro,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | tai-viet | vietnamese,SIL International,1673,2093,No,2022-05-12,2025-09-08,https://fonts.google.com/specimen/Tai+Heritage+Pro
-Tajawal,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible arabic RTL middle-east english western european popular widely-used,200 | 300 | 400 | 500 | 700 | 800 | 900,,arabic | latin,Boutros Fonts | Mourad Boutros | Soulaf Khalifeh,112,177,No,2018-04-04,2025-09-08,https://fonts.google.com/specimen/Tajawal
-Tangerine,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400 | 700,,latin,Toshi Omagari,333,827,No,2010-06-08,2025-09-11,https://fonts.google.com/specimen/Tangerine
-Tapestry,Handwriting,Serif,Display,personal casual friendly warm handwritten script organic transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1514,137,No,2022-04-07,2025-09-16,https://fonts.google.com/specimen/Tapestry
-Taprom,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention khmer cambodian english western european,400,,khmer | latin,Danh Hong | Neapolitan,1667,979,No,2011-03-02,2025-09-08,https://fonts.google.com/specimen/Taprom
-Tauri,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Yvonne Schüttler,1166,1363,No,2013-02-27,2025-09-10,https://fonts.google.com/specimen/Tauri
-Taviraj,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | thai | vietnamese,Cadson Demak,447,2176,No,2016-06-15,2025-09-04,https://fonts.google.com/specimen/Taviraj
-Teachers,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight greek extended english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,greek-ext | latin | latin-ext,Alfredo Marco Pradil | Chank Diesel,1061,1646,No,2024-05-01,2025-09-08,https://fonts.google.com/specimen/Teachers
-Teko,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight hindi devanagari indian english western european extended-latin european popular widely-used,300 | 400 | 500 | 600 | 700,wght: -,devanagari | latin | latin-ext,Indian Type Foundry,140,1595,No,2014-06-25,2025-09-16,https://fonts.google.com/specimen/Teko
-Tektur,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,400 | 500 | 600 | 700 | 800 | 900,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Adam Jagosz,833,1443,No,2023-06-15,2025-09-16,https://fonts.google.com/specimen/Tektur
-Telex,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Huerta Tipográfica,699,1587,No,2012-01-18,2025-09-16,https://fonts.google.com/specimen/Telex
-Tenali Ramakrishna,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1067,2065,No,2014-12-10,2025-09-02,https://fonts.google.com/specimen/Tenali+Ramakrishna
-Tenor Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european well-known common,400,,cyrillic | latin | latin-ext,Denis Masharov,256,561,No,2011-05-25,2025-09-02,https://fonts.google.com/specimen/Tenor+Sans
-Text Me One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Julia Petretta,1385,2008,No,2012-10-31,2025-09-16,https://fonts.google.com/specimen/Text+Me+One
-Texturina,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,opsz: - | wght: -,latin | latin-ext | vietnamese,Guillermo Torres | Omnibus-Type,1374,1875,No,2020-10-23,2025-09-16,https://fonts.google.com/specimen/Texturina
-Thasadith,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic english western european extended-latin european thai southeast-asia vietnamese,400 | 400i | 700 | 700i,,latin | latin-ext | thai | vietnamese,Cadson Demak,904,895,No,2018-09-10,2025-09-10,https://fonts.google.com/specimen/Thasadith
-The Girl Next Door,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,994,794,No,2011-04-20,2025-09-16,https://fonts.google.com/specimen/The+Girl+Next+Door
-The Nautigal,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400 | 700,,latin | latin-ext | vietnamese,Robert Leuschke,1224,1552,No,2021-11-18,2025-09-16,https://fonts.google.com/specimen/The+Nautigal
-Tienne,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400 | 700 | 900,,latin,Vernon Adams,929,507,No,2011-07-27,2025-09-04,https://fonts.google.com/specimen/Tienne
-TikTok Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width variable-slant russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,300 | 400 | 500 | 600 | 700 | 800 | 900,opsz: - | slnt: - | wdth: - | wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Grilli Type | Contrast Foundry | Type Network,1008,927,No,1970-01-20,2025-09-11,https://fonts.google.com/specimen/TikTok+Sans
-Tillana,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400 | 500 | 600 | 700 | 800,,devanagari | latin | latin-ext,Indian Type Foundry,1375,1481,No,2015-06-03,2025-09-11,https://fonts.google.com/specimen/Tillana
-Tilt Neon,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,XROT: - | YROT: -,latin | latin-ext | vietnamese,Andy Clymer,724,1155,No,2022-12-01,2025-09-04,https://fonts.google.com/specimen/Tilt+Neon
-Tilt Prism,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,XROT: - | YROT: -,latin | latin-ext | vietnamese,Andy Clymer,1443,2238,No,2022-12-01,2025-09-10,https://fonts.google.com/specimen/Tilt+Prism
-Tilt Warp,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european extended-latin european vietnamese,400,XROT: - | YROT: -,latin | latin-ext | vietnamese,Andy Clymer,518,2119,No,2022-12-01,2025-09-04,https://fonts.google.com/specimen/Tilt+Warp
-Timmana,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european telugu indian,400,,latin | telugu,Appaji Ambarisha Darbha,1150,706,No,2015-01-12,2025-09-16,https://fonts.google.com/specimen/Timmana
-Tinos,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic russian cyrillic slavic cyrillic extended greek greek extended hebrew RTL israeli english western european extended-latin european vietnamese multilingual international well-known common,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | hebrew | latin | latin-ext | vietnamese,Steve Matteson,224,2201,No,2010-11-18,2025-09-08,https://fonts.google.com/specimen/Tinos
-Tiny5,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic cyrillic extended greek english western european extended-latin european,400,,cyrillic | cyrillic-ext | greek | latin | latin-ext,Stefan Schmidt,1352,1831,No,2024-05-29,2025-05-30,https://fonts.google.com/specimen/Tiny5
-Tiro Bangla,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic bengali bangladeshi indian english western european extended-latin european,400 | 400i,,bengali | latin | latin-ext,Tiro Typeworks | John Hudson | Fiona Ross | Neelakash Kshetrimayum,658,1783,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Bangla
-Tiro Devanagari Hindi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic hindi devanagari indian english western european extended-latin european,400 | 400i,,devanagari | latin | latin-ext,Tiro Typeworks | John Hudson | Fiona Ross | Paul Hanslow,972,1470,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Devanagari+Hindi
-Tiro Devanagari Marathi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic hindi devanagari indian english western european extended-latin european,400 | 400i,,devanagari | latin | latin-ext,Tiro Typeworks | John Hudson | Fiona Ross | Paul Hanslow,1528,2199,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Devanagari+Marathi
-Tiro Devanagari Sanskrit,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic hindi devanagari indian english western european extended-latin european,400 | 400i,,devanagari | latin | latin-ext,Tiro Typeworks | John Hudson | Fiona Ross | Paul Hanslow,1353,2027,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Devanagari+Sanskrit
-Tiro Gurmukhi,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic punjabi gurmukhi indian english western european extended-latin european,400 | 400i,,gurmukhi | latin | latin-ext,Tiro Typeworks | John Hudson | Fiona Ross | Paul Hanslow,1547,722,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Gurmukhi
-Tiro Kannada,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic kannada indian english western european extended-latin european,400 | 400i,,kannada | latin | latin-ext,Tiro Typeworks | John Hudson | Fiona Ross | Kaja Słojewska,1653,1757,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Kannada
-Tiro Tamil,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european tamil indian,400 | 400i,,latin | latin-ext | tamil,Tiro Typeworks | Fernando Mello | Fiona Ross | Kaja Słojewska,1660,1275,No,2022-05-25,2025-09-08,https://fonts.google.com/specimen/Tiro+Tamil
-Tiro Telugu,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european telugu indian,400 | 400i,,latin | latin-ext | telugu,Tiro Typeworks | John Hudson | Fiona Ross | Kaja Słojewska,1536,1200,No,2022-05-25,2025-05-30,https://fonts.google.com/specimen/Tiro+Telugu
-Tirra,Sans Serif,Sans Serif,Handwriting,clean modern minimal professional readable neutral geometric humanist grotesque script cursive hand-drawn artistic informal versatile multi-weight flexible english western european extended-latin european,400 | 500 | 600 | 700 | 800 | 900,,latin | latin-ext | tifinagh,SIL International,2040,2107,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Tirra
-Titan One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,Rodrigo Fuenzalida,185,1796,No,2012-01-11,2025-09-02,https://fonts.google.com/specimen/Titan+One
-Titillium Web,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic english western european extended-latin european popular widely-used,200 | 200i | 300 | 300i | 400 | 400i | 600 | 600i | 700 | 700i | 900,,latin | latin-ext,Accademia di Belle Arti di Urbino,52,708,No,2012-10-01,2025-09-10,https://fonts.google.com/specimen/Titillium+Web
-Tomorrow,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic english western european extended-latin european,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext,Tony de Marco | Monica Rizzolli,462,2016,No,2019-10-02,2025-09-11,https://fonts.google.com/specimen/Tomorrow
-Tourney,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext | vietnamese,Tyler Finck | ETC,1396,1979,No,2021-04-29,2025-09-10,https://fonts.google.com/specimen/Tourney
-Trade Winds,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european,400,,latin,Sideshow,1160,2135,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Trade+Winds
-Train One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Fontworks Inc.,1074,2233,No,2020-12-15,2025-09-04,https://fonts.google.com/specimen/Train+One
-Triodion,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european,400,,cyrillic | cyrillic-ext | latin,Aleksandr Andreev,1710,805,No,2024-12-05,2025-05-30,https://fonts.google.com/specimen/Triodion
-Trirong,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention versatile multi-weight flexible italic english western european extended-latin european thai southeast-asia vietnamese,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,,latin | latin-ext | thai | vietnamese,Cadson Demak,670,981,No,2016-06-15,2025-09-11,https://fonts.google.com/specimen/Trirong
-Trispace,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800,wdth: - | wght: -,latin | latin-ext | vietnamese,Tyler Finck | ETC,1315,1310,No,2020-09-25,2025-09-08,https://fonts.google.com/specimen/Trispace
-Trocchi,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Vernon Adams,842,1131,No,2012-04-04,2025-09-10,https://fonts.google.com/specimen/Trocchi
-Trochut,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention italic english western european,400 | 400i | 700,,latin,Andreu Balius,1641,2120,No,2012-01-18,2025-09-10,https://fonts.google.com/specimen/Trochut
-Truculenta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight variable-width english western european extended-latin european vietnamese,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,opsz: - | wdth: - | wght: -,latin | latin-ext | vietnamese,Omnibus-Type,1013,1792,No,2020-12-16,2025-09-16,https://fonts.google.com/specimen/Truculenta
-Trykker,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Magnus Gaarde,1438,1682,No,2011-12-19,2025-09-10,https://fonts.google.com/specimen/Trykker
-Tsukimi Rounded,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention japanese kanji hiragana katakana english western european extended-latin european,300 | 400 | 500 | 600 | 700,,japanese | latin | latin-ext,Takashi Funayama,1589,1353,No,2020-12-14,2025-09-10,https://fonts.google.com/specimen/Tsukimi+Rounded
-Tuffy,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext | phoenician,Thatcher Ulrich,1870,241,No,2025-04-17,2025-04-23,https://fonts.google.com/specimen/Tuffy
-Tulpen One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Naima Ben Ayed,1522,1626,No,2011-08-03,2025-06-02,https://fonts.google.com/specimen/Tulpen+One
-Turret Road,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible english western european extended-latin european,200 | 300 | 400 | 500 | 700 | 800,,latin | latin-ext,Dale Sattler,806,910,No,2019-09-03,2025-09-16,https://fonts.google.com/specimen/Turret+Road
-Twinkle Star,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1635,1699,No,2021-11-26,2025-09-11,https://fonts.google.com/specimen/Twinkle+Star
-Ubuntu,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international top-popular trending most-used,300 | 300i | 400 | 400i | 500 | 500i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext,Dalton Maag,28,1430,No,2010-12-15,2025-09-02,https://fonts.google.com/specimen/Ubuntu
-Ubuntu Condensed,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,400,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext,Dalton Maag,309,1719,No,2011-10-05,2025-09-02,https://fonts.google.com/specimen/Ubuntu+Condensed
-Ubuntu Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code italic russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,400 | 400i | 700 | 700i,,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext,Dalton Maag,414,595,No,2011-10-05,2025-09-02,https://fonts.google.com/specimen/Ubuntu+Mono
-Ubuntu Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wdth: - | wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext,Dalton Maag,600,94,No,2024-05-01,2025-09-02,https://fonts.google.com/specimen/Ubuntu+Sans
-Ubuntu Sans Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek greek extended english western european extended-latin european multilingual international,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | greek-ext | latin | latin-ext,Dalton Maag,1668,803,No,2024-05-01,2025-09-02,https://fonts.google.com/specimen/Ubuntu+Sans+Mono
-Uchen,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european tibetan,400,,latin | tibetan,Christopher J. Fynn,1583,1567,No,2019-12-07,2025-09-16,https://fonts.google.com/specimen/Uchen
-Ultra,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,469,1990,No,2011-05-09,2025-06-02,https://fonts.google.com/specimen/Ultra
-Unbounded,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese well-known common,200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,NaN,183,773,No,2022-11-07,2025-09-11,https://fonts.google.com/specimen/Unbounded
-Uncial Antiqua,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Astigmatic,823,2111,No,2011-12-19,2025-09-16,https://fonts.google.com/specimen/Uncial+Antiqua
-Underdog,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention russian cyrillic slavic english western european extended-latin european,400,,cyrillic | latin | latin-ext,Sergey Steblina | Jovanny Lemonad,1245,1340,No,2012-09-23,2025-09-10,https://fonts.google.com/specimen/Underdog
-Unica One,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Eduardo Tunni,456,1726,No,2012-10-26,2025-09-08,https://fonts.google.com/specimen/Unica+One
-UnifrakturCook,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,700,,latin,j. 'mach' wust,1004,325,No,2010-12-07,2025-09-04,https://fonts.google.com/specimen/UnifrakturCook
-UnifrakturMaguntia,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european,400,,latin,j. 'mach' wust,637,1612,No,2010-11-30,2025-09-02,https://fonts.google.com/specimen/UnifrakturMaguntia
-Unkempt,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400 | 700,,latin,Sideshow,864,209,No,2011-12-05,2025-06-02,https://fonts.google.com/specimen/Unkempt
-Unlock,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1268,607,No,2011-11-30,2025-09-08,https://fonts.google.com/specimen/Unlock
-Unna,Serif,Serif,Display,elegant traditional classic refined literary editorial transitional oldstyle didone headline hero decorative large-text attention italic english western european extended-latin european well-known common,400 | 400i | 700 | 700i,,latin | latin-ext,Omnibus-Type,217,1981,No,2011-07-20,2025-09-11,https://fonts.google.com/specimen/Unna
-UoqMunThenKhung,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone chinese traditional russian cyrillic slavic english western european,400,,chinese-traditional | cyrillic | latin | symbols2,Moonlit Owen,1877,372,No,2025-06-23,2025-06-25,https://fonts.google.com/specimen/UoqMunThenKhung
-Updock,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1544,1422,No,2022-03-23,2025-09-02,https://fonts.google.com/specimen/Updock
-Urbanist,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european popular widely-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Corey Hu,121,1615,No,2021-06-02,2025-09-16,https://fonts.google.com/specimen/Urbanist
-VT323,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Peter Hull,375,1737,No,2011-03-02,2025-09-16,https://fonts.google.com/specimen/VT323
-Vampiro One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Riccardo De Franceschi,1156,1551,No,2012-11-26,2025-09-04,https://fonts.google.com/specimen/Vampiro+One
-Varela,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Joe Prince,451,1602,No,2011-06-29,2025-09-10,https://fonts.google.com/specimen/Varela
-Varela Round,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque hebrew RTL israeli english western european extended-latin european vietnamese well-known common,400,,hebrew | latin | latin-ext | vietnamese,Joe Prince,156,1249,No,2011-07-13,2025-09-11,https://fonts.google.com/specimen/Varela+Round
-Varta,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | vietnamese,Joana Correia | Viktoriya Grabowska | Eben Sorkin,1119,304,No,2020-06-11,2025-09-10,https://fonts.google.com/specimen/Varta
-Vast Shadow,Serif,Slab Serif,Display,elegant traditional classic refined literary editorial slab mechanical sturdy strong headline hero decorative large-text attention english western european,400,,latin,Nicole Fally,924,1597,No,2011-10-12,2025-09-10,https://fonts.google.com/specimen/Vast+Shadow
-Vazirmatn,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight arabic RTL middle-east english western european extended-latin european,100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,arabic | latin | latin-ext,Saber Rastikerdar,591,2290,No,2022-03-16,2025-09-10,https://fonts.google.com/specimen/Vazirmatn
-Vend Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext,Bloom Type Foundry | Baptiste Guesnon,1296,1511,No,2025-08-25,2025-08-26,https://fonts.google.com/specimen/Vend+Sans
-Vesper Libre,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone hindi devanagari indian english western european extended-latin european,400 | 500 | 700 | 900,,devanagari | latin | latin-ext,Mota Italic,834,454,No,2014-07-14,2025-09-04,https://fonts.google.com/specimen/Vesper+Libre
-Viaoda Libre,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Gydient | ViệtAnh Nguyễn,938,1387,No,2019-11-05,2025-09-08,https://fonts.google.com/specimen/Viaoda+Libre
-Vibes,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention arabic RTL middle-east english western european,400,,arabic | latin,AbdElmomen Kadhim (blueMix),1645,900,No,2019-04-23,2025-09-10,https://fonts.google.com/specimen/Vibes
-Vibur,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal english western european,400,,latin,Johan Kallas,900,570,No,2010-12-15,2025-09-10,https://fonts.google.com/specimen/Vibur
-Victor Mono,Monospace,Sans Serif,Monospace,code developer technical fixed-width terminal programming geometric humanist grotesque mono fixed-width tabular data code versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Rune Bjørnerås,1299,554,No,2023-06-20,2025-09-04,https://fonts.google.com/specimen/Victor+Mono
-Vidaloka,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european,400,,latin,Cyreal,443,1444,No,2011-08-17,2025-09-16,https://fonts.google.com/specimen/Vidaloka
-Viga,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european well-known common,400,,latin | latin-ext,Fontstage,276,767,No,2011-12-07,2025-09-16,https://fonts.google.com/specimen/Viga
-Vina Sans,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Nguyen Type,669,384,No,2023-03-15,2025-09-04,https://fonts.google.com/specimen/Vina+Sans
-Voces,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque english western european extended-latin european,400,,latin | latin-ext,Ana Paula Megda | Pablo Ugerman,951,261,No,2012-02-22,2025-09-16,https://fonts.google.com/specimen/Voces
-Volkhov,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european,400 | 400i | 700 | 700i,,latin,Cyreal,431,1289,No,2011-08-17,2025-09-10,https://fonts.google.com/specimen/Volkhov
-Vollkorn,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international well-known common,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | vietnamese,Friedrich Althausen,197,1621,No,2010-09-08,2025-09-11,https://fonts.google.com/specimen/Vollkorn
-Vollkorn SC,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 600 | 700 | 900,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Friedrich Althausen,1009,937,No,2017-09-08,2025-09-11,https://fonts.google.com/specimen/Vollkorn+SC
-Voltaire,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Yvonne Schüttler,872,611,No,2011-08-17,2025-09-10,https://fonts.google.com/specimen/Voltaire
-Vujahday Script,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,878,1619,No,2021-11-18,2025-09-04,https://fonts.google.com/specimen/Vujahday+Script
-WDXL Lubrifont JP N,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext | symbols2,NightFurySL2001,1656,2077,No,2025-06-11,2026-01-06,https://fonts.google.com/specimen/WDXL+Lubrifont+JP+N
-WDXL Lubrifont SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese simplified mandarin russian cyrillic slavic english western european extended-latin european,400,,chinese-simplified | cyrillic | latin | latin-ext | symbols2,NightFurySL2001,1661,380,No,2025-06-11,2026-01-06,https://fonts.google.com/specimen/WDXL+Lubrifont+SC
-WDXL Lubrifont TC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese traditional russian cyrillic slavic english western european extended-latin european,400,,chinese-traditional | cyrillic | latin | latin-ext | symbols2,NightFurySL2001,1724,2276,No,2025-05-20,2026-01-06,https://fonts.google.com/specimen/WDXL+Lubrifont+TC
-Waiting for the Sunrise,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Kimberly Geswein,758,2082,No,2011-04-14,2025-09-16,https://fonts.google.com/specimen/Waiting+for+the+Sunrise
-Wallpoet,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Lars Berggren,671,366,No,2011-04-27,2025-06-02,https://fonts.google.com/specimen/Wallpoet
-Walter Turncoat,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european,400,,latin,Sideshow,901,1948,No,2011-01-06,2025-06-02,https://fonts.google.com/specimen/Walter+Turncoat
-Warnes,Display,,Handwriting | Display,bold decorative headline attention-grabbing creative expressive script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Eduardo Tunni,1832,1862,No,2012-09-07,2025-09-08,https://fonts.google.com/specimen/Warnes
-Water Brush,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1412,889,No,2022-04-07,2025-09-11,https://fonts.google.com/specimen/Water+Brush
-Waterfall,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,1050,2230,No,2021-11-18,2025-09-04,https://fonts.google.com/specimen/Waterfall
-Wavefont,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight,100 | 1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,ROND: - | YELA: - | wght: -,,Dmitry Ivanov,1933,2113,No,2023-06-15,2025-09-17,https://fonts.google.com/specimen/Wavefont
-Wellfleet,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong english western european extended-latin european,400,,latin | latin-ext,Riccardo De Franceschi,1529,1965,No,2012-01-11,2025-09-10,https://fonts.google.com/specimen/Wellfleet
-Wendy One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Alejandro Inler,1040,1545,No,2012-12-13,2025-09-04,https://fonts.google.com/specimen/Wendy+One
-Whisper,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400,,latin | latin-ext | vietnamese,Robert Leuschke,479,2190,No,2022-03-23,2025-09-10,https://fonts.google.com/specimen/Whisper
-WindSong,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european vietnamese,400 | 500,,latin | latin-ext | vietnamese,Robert Leuschke,873,680,No,2021-05-28,2025-09-16,https://fonts.google.com/specimen/WindSong
-Winky Rough,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Typofactur,1731,1985,No,2025-04-07,2025-09-16,https://fonts.google.com/specimen/Winky+Rough
-Winky Sans,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Typofactur,1391,2250,No,2025-03-13,2025-09-02,https://fonts.google.com/specimen/Winky+Sans
-Wire One,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention english western european,400,,latin,Cyreal,1048,1365,No,2011-05-18,2025-09-16,https://fonts.google.com/specimen/Wire+One
-Wittgenstein,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Jörg Drees,1465,197,No,2024-06-04,2025-09-08,https://fonts.google.com/specimen/Wittgenstein
-Wix Madefor Display,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 500 | 600 | 700 | 800,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Dalton Maag,496,1980,No,2023-02-05,2025-09-10,https://fonts.google.com/specimen/Wix+Madefor+Display
-Wix Madefor Text,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Dalton Maag,495,1680,No,2023-01-10,2025-09-10,https://fonts.google.com/specimen/Wix+Madefor+Text
-Work Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese top-popular trending most-used,100 | 100i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext | vietnamese,Wei Huang,34,1204,No,2015-07-08,2025-09-11,https://fonts.google.com/specimen/Work+Sans
-Workbench,Monospace,Sans Serif,Display,code developer technical fixed-width terminal programming geometric humanist grotesque headline hero decorative large-text attention variable variable-font responsive english western european,400,BLED: - | SCAN: -,latin | math | symbols,Jens Kutílek,1682,1415,No,2024-01-23,2025-09-11,https://fonts.google.com/specimen/Workbench
-Xanh Mono,Monospace,,Monospace,code developer technical fixed-width terminal programming mono fixed-width tabular data code italic english western european extended-latin european vietnamese,400 | 400i,,latin | latin-ext | vietnamese,Yellow Type | Lâm Bảo | Duy Dao,978,487,No,2020-08-10,2025-09-08,https://fonts.google.com/specimen/Xanh+Mono
-Yaldevi,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight english western european extended-latin european sinhala sri-lankan,200 | 300 | 400 | 500 | 600 | 700,wght: -,latin | latin-ext | sinhala,Mooniak,1434,2144,No,2021-06-28,2025-09-10,https://fonts.google.com/specimen/Yaldevi
-Yanone Kaffeesatz,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese multilingual international well-known common,200 | 300 | 400 | 500 | 600 | 700,wght: -,cyrillic | cyrillic-ext | latin | latin-ext | math | symbols | vietnamese,Yanone | Cyreal,225,1268,No,2010-05-11,2025-09-16,https://fonts.google.com/specimen/Yanone+Kaffeesatz
-Yantramanav,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention versatile multi-weight flexible hindi devanagari indian english western european extended-latin european,100 | 300 | 400 | 500 | 700 | 900,,devanagari | latin | latin-ext,Erin McLaughlin,307,1322,No,2015-06-03,2025-09-16,https://fonts.google.com/specimen/Yantramanav
-Yarndings 12,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin | math | symbols,Sarah Cadigan-Fried,2030,592,No,2024-03-20,2025-09-17,https://fonts.google.com/specimen/Yarndings+12
-Yarndings 12 Charted,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin | math | symbols,Sarah Cadigan-Fried,2038,443,No,2024-03-20,2025-09-17,https://fonts.google.com/specimen/Yarndings+12+Charted
-Yarndings 20,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin | math | symbols,Sarah Cadigan-Fried,2018,942,No,2024-03-20,2025-09-17,https://fonts.google.com/specimen/Yarndings+20
-Yarndings 20 Charted,Display,,Symbols | Display,bold decorative headline attention-grabbing creative expressive icon symbol emoji pictograph headline hero decorative large-text attention english western european,400,,latin | math | symbols,Sarah Cadigan-Fried,2041,410,No,2024-03-20,2025-09-17,https://fonts.google.com/specimen/Yarndings+20+Charted
-Yatra One,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention hindi devanagari indian english western european extended-latin european,400,,devanagari | latin | latin-ext,Catherine Leigh Schmidt,602,2095,No,2016-06-15,2025-09-04,https://fonts.google.com/specimen/Yatra+One
-Yellowtail,Handwriting,,Handwriting | Display,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal headline hero decorative large-text attention english western european extended-latin european well-known common,400,,latin | latin-ext,Astigmatic,247,1845,No,2011-07-20,2025-09-08,https://fonts.google.com/specimen/Yellowtail
-Yeon Sung,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention korean hangul english western european,400,,korean | latin,Woowahan brothers,1254,278,No,2018-02-23,2025-09-04,https://fonts.google.com/specimen/Yeon+Sung
-Yeseva One,Display,Serif,Display,bold decorative headline attention-grabbing creative expressive transitional oldstyle didone headline hero decorative large-text attention russian cyrillic slavic cyrillic extended english western european extended-latin european vietnamese,400,,cyrillic | cyrillic-ext | latin | latin-ext | vietnamese,Jovanny Lemonad,401,1117,No,2011-07-13,2025-09-16,https://fonts.google.com/specimen/Yeseva+One
-Yesteryear,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european,400,,latin | latin-ext,Astigmatic,711,1216,No,2011-12-19,2025-09-11,https://fonts.google.com/specimen/Yesteryear
-Yomogi,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european vietnamese,400,,cyrillic | japanese | latin | latin-ext | vietnamese,Satsuyako,1206,1706,No,2021-04-14,2025-09-16,https://fonts.google.com/specimen/Yomogi
-Young Serif,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone english western european extended-latin european,400,,latin | latin-ext,Bastien Sozeau,608,2311,No,2023-09-26,2025-05-30,https://fonts.google.com/specimen/Young+Serif
-Yrsa,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic variable variable-font responsive variable-weight english western european extended-latin european vietnamese,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,wght: -,latin | latin-ext | vietnamese,Rosetta | Anna Giedryś | David Březina,494,1920,No,2016-06-15,2025-09-16,https://fonts.google.com/specimen/Yrsa
-Ysabeau,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | math | symbols | vietnamese,Christian Thalmann,1403,1940,No,2023-04-19,2025-09-11,https://fonts.google.com/specimen/Ysabeau
-Ysabeau Infant,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | math | symbols | vietnamese,Christian Thalmann,1377,438,No,2023-06-21,2025-09-16,https://fonts.google.com/specimen/Ysabeau+Infant
-Ysabeau Office,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,1 | 100 | 1000 | 1000i | 100i | 1i | 200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | math | symbols | vietnamese,Christian Thalmann,767,831,No,2023-06-21,2025-09-10,https://fonts.google.com/specimen/Ysabeau+Office
-Ysabeau SC,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible variable variable-font responsive variable-weight russian cyrillic slavic cyrillic extended greek english western european extended-latin european vietnamese multilingual international,1 | 100 | 1000 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900,wght: -,cyrillic | cyrillic-ext | greek | latin | latin-ext | math | symbols | vietnamese,Christian Thalmann,1152,864,No,2023-06-21,2025-09-16,https://fonts.google.com/specimen/Ysabeau+SC
-Yuji Boku,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Kinuta Font Factory,1365,407,No,2021-09-26,2025-09-04,https://fonts.google.com/specimen/Yuji+Boku
-Yuji Hentaigana Akari,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Kinuta Font Factory,1842,168,No,2021-06-10,2025-09-11,https://fonts.google.com/specimen/Yuji+Hentaigana+Akari
-Yuji Hentaigana Akebono,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Kinuta Font Factory,2007,1698,No,2021-06-10,2025-09-16,https://fonts.google.com/specimen/Yuji+Hentaigana+Akebono
-Yuji Mai,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Kinuta Font Factory,614,2138,No,2021-09-26,2025-09-16,https://fonts.google.com/specimen/Yuji+Mai
-Yuji Syuku,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | japanese | latin | latin-ext,Kinuta Font Factory,1035,1554,No,2021-09-26,2025-09-16,https://fonts.google.com/specimen/Yuji+Syuku
-Yusei Magic,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque japanese kanji hiragana katakana english western european extended-latin european,400,,japanese | latin | latin-ext,Tanukizamurai,774,1657,No,2020-12-14,2025-09-08,https://fonts.google.com/specimen/Yusei+Magic
-ZCOOL KuaiLe,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese simplified mandarin english western european,400,,chinese-simplified | latin,Liu Bingke | Yang Kang | Wu Shaojie,561,329,No,2018-12-10,2026-02-17,https://fonts.google.com/specimen/ZCOOL+KuaiLe
-ZCOOL QingKe HuangYou,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese simplified mandarin english western european,400,,chinese-simplified | latin,Zheng Qingke,977,326,No,2018-12-10,2025-09-10,https://fonts.google.com/specimen/ZCOOL+QingKe+HuangYou
-ZCOOL XiaoWei,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque chinese simplified mandarin english western european,400,,chinese-simplified | latin,Li Dawei,751,305,No,2018-12-10,2025-09-04,https://fonts.google.com/specimen/ZCOOL+XiaoWei
-Zain,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic arabic RTL middle-east english western european,200 | 300 | 300i | 400 | 400i | 700 | 800 | 900,,arabic | latin,Boutros Fonts,903,1393,No,2024-07-17,2025-10-29,https://fonts.google.com/specimen/Zain
-Zalando Sans,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight variable-width english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wdth: - | wght: -,latin | latin-ext,Jakob Ekelund | KH Type | Zalando,950,1361,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Zalando+Sans
-Zalando Sans Expanded,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Jakob Ekelund | KH Type | Zalando,680,545,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Zalando+Sans+Expanded
-Zalando Sans SemiExpanded,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque versatile multi-weight flexible italic variable variable-font responsive variable-weight english western european extended-latin european,200 | 200i | 300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i | 800 | 800i | 900 | 900i,wght: -,latin | latin-ext,Jakob Ekelund | KH Type | Zalando,1171,338,No,2025-09-11,2025-09-16,https://fonts.google.com/specimen/Zalando+Sans+SemiExpanded
-Zen Antique,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic greek japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | greek | japanese | latin | latin-ext,Yoshimichi Ohira,802,2142,No,2021-08-31,2025-09-08,https://fonts.google.com/specimen/Zen+Antique
-Zen Antique Soft,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic greek japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | greek | japanese | latin | latin-ext,Yoshimichi Ohira,991,1944,No,2021-08-31,2025-09-10,https://fonts.google.com/specimen/Zen+Antique+Soft
-Zen Dots,Display,Sans Serif,Display,bold decorative headline attention-grabbing creative expressive geometric humanist grotesque headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Yoshimichi Ohira,940,2234,No,2021-03-11,2025-09-04,https://fonts.google.com/specimen/Zen+Dots
-Zen Kaku Gothic Antique,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european,300 | 400 | 500 | 700 | 900,,cyrillic | japanese | latin | latin-ext,Yoshimichi Ohira,492,522,No,2021-08-31,2025-09-04,https://fonts.google.com/specimen/Zen+Kaku+Gothic+Antique
-Zen Kaku Gothic New,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic japanese kanji hiragana katakana english western european extended-latin european well-known common,300 | 400 | 500 | 700 | 900,,cyrillic | japanese | latin | latin-ext,Yoshimichi Ohira,172,941,No,2021-08-31,2025-09-16,https://fonts.google.com/specimen/Zen+Kaku+Gothic+New
-Zen Kurenaido,Sans Serif,Sans Serif,,clean modern minimal professional readable neutral geometric humanist grotesque russian cyrillic slavic greek japanese kanji hiragana katakana english western european extended-latin european,400,,cyrillic | greek | japanese | latin | latin-ext,Yoshimichi Ohira,969,1858,No,2021-08-31,2025-09-10,https://fonts.google.com/specimen/Zen+Kurenaido
-Zen Loop,Display,,Display | Handwriting,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention script cursive hand-drawn artistic informal italic english western european extended-latin european,400 | 400i,,latin | latin-ext,Yoshimichi Ohira,1618,86,No,2021-03-10,2025-09-11,https://fonts.google.com/specimen/Zen+Loop
-Zen Maru Gothic,Sans Serif,Sans Serif,Display,clean modern minimal professional readable neutral geometric humanist grotesque headline hero decorative large-text attention russian cyrillic slavic greek japanese kanji hiragana katakana english western european extended-latin european well-known common,300 | 400 | 500 | 700 | 900,,cyrillic | greek | japanese | latin | latin-ext,Yoshimichi Ohira,212,1147,No,2021-08-31,2025-06-25,https://fonts.google.com/specimen/Zen+Maru+Gothic
-Zen Old Mincho,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone russian cyrillic slavic greek japanese kanji hiragana katakana english western european extended-latin european,400 | 500 | 600 | 700 | 900,,cyrillic | greek | japanese | latin | latin-ext,Yoshimichi Ohira,366,935,No,2021-08-31,2025-09-02,https://fonts.google.com/specimen/Zen+Old+Mincho
-Zen Tokyo Zoo,Display,,Display,bold decorative headline attention-grabbing creative expressive headline hero decorative large-text attention english western european extended-latin european,400,,latin | latin-ext,Yoshimichi Ohira,1325,468,No,2021-04-30,2025-09-10,https://fonts.google.com/specimen/Zen+Tokyo+Zoo
-Zeyada,Handwriting,,Display | Handwriting,personal casual friendly warm handwritten script organic headline hero decorative large-text attention script cursive hand-drawn artistic informal english western european extended-latin european well-known common,400,,latin | latin-ext,Kimberly Geswein,296,882,No,2011-06-08,2025-09-16,https://fonts.google.com/specimen/Zeyada
-Zhi Mang Xing,Handwriting,,Handwriting,personal casual friendly warm handwritten script organic script cursive hand-drawn artistic informal chinese simplified mandarin english western european,400,,chinese-simplified | latin,Wei Zhimang,1146,254,No,2019-03-17,2025-09-08,https://fonts.google.com/specimen/Zhi+Mang+Xing
-Zilla Slab,Serif,Serif,,elegant traditional classic refined literary editorial transitional oldstyle didone italic english western european extended-latin european well-known common,300 | 300i | 400 | 400i | 500 | 500i | 600 | 600i | 700 | 700i,,latin | latin-ext,Typotheque,164,510,No,2017-06-28,2025-09-04,https://fonts.google.com/specimen/Zilla+Slab
-Zilla Slab Highlight,Serif,Slab Serif,,elegant traditional classic refined literary editorial slab mechanical sturdy strong english western european extended-latin european,400 | 700,,latin | latin-ext,Typotheque,1250,1883,No,2017-07-26,2025-09-11,https://fonts.google.com/specimen/Zilla+Slab+Highlight
diff --git a/.agents/skills/ui-ux-pro-max/data/icons.csv b/.agents/skills/ui-ux-pro-max/data/icons.csv
deleted file mode 100644
index 210a8d0..0000000
--- a/.agents/skills/ui-ux-pro-max/data/icons.csv
+++ /dev/null
@@ -1,106 +0,0 @@
-No,Category,Icon Name,Keywords,Library,Import Code,Usage,Best For,Style
-1,Navigation,list,hamburger menu navigation toggle bars,Phosphor,import { List } from '@phosphor-icons/react',,Mobile navigation drawer toggle sidebar,Outline
-2,Navigation,arrow-left,back previous return navigate,Phosphor,import { ArrowLeft } from '@phosphor-icons/react',,Back button breadcrumb navigation,Outline
-3,Navigation,arrow-right,next forward continue navigate,Phosphor,import { ArrowRight } from '@phosphor-icons/react',,Forward button next step CTA,Outline
-4,Navigation,caret-down,dropdown expand accordion select,Phosphor,import { CaretDown } from '@phosphor-icons/react',,Dropdown toggle accordion header,Outline
-5,Navigation,caret-up,collapse close accordion minimize,Phosphor,import { CaretUp } from '@phosphor-icons/react',,Accordion collapse minimize,Outline
-6,Navigation,house,homepage main dashboard start,Phosphor,import { House } from '@phosphor-icons/react',,Home navigation main page,Outline
-7,Navigation,x,close cancel dismiss remove exit,Phosphor,import { X } from '@phosphor-icons/react',,Modal close dismiss button,Outline
-8,Navigation,arrow-square-out,open new tab external link,Phosphor,import { ArrowSquareOut } from '@phosphor-icons/react',,External link indicator,Outline
-9,Action,plus,add create new insert,Phosphor,import { Plus } from '@phosphor-icons/react',,Add button create new item,Outline
-10,Action,minus,remove subtract decrease delete,Phosphor,import { Minus } from '@phosphor-icons/react',,Remove item quantity decrease,Outline
-11,Action,trash,delete remove discard bin,Phosphor,import { Trash } from '@phosphor-icons/react',,Delete action destructive,Outline
-12,Action,pencil-simple,pencil modify change update,Phosphor,import { PencilSimple } from '@phosphor-icons/react',,Edit button modify content,Outline
-13,Action,floppy-disk,disk store persist save,Phosphor,import { FloppyDisk } from '@phosphor-icons/react',,Save button persist changes,Outline
-14,Action,download-simple,export save file download,Phosphor,import { DownloadSimple } from '@phosphor-icons/react',,Download file export,Outline
-15,Action,upload-simple,import file attach upload,Phosphor,import { UploadSimple } from '@phosphor-icons/react',,Upload file import,Outline
-16,Action,copy,duplicate clipboard paste,Phosphor,import { Copy } from '@phosphor-icons/react',,Copy to clipboard,Outline
-17,Action,share,social distribute send,Phosphor,import { Share } from '@phosphor-icons/react',,Share button social,Outline
-18,Action,magnifying-glass,find lookup filter query,Phosphor,import { MagnifyingGlass } from '@phosphor-icons/react',,Search input bar,Outline
-19,Action,funnel,sort refine narrow options,Phosphor,import { Funnel } from '@phosphor-icons/react',,Filter dropdown sort,Outline
-20,Action,gear,gear cog preferences config,Phosphor,import { Gear } from '@phosphor-icons/react',,Settings page configuration,Outline
-21,Status,check,success done complete verified,Phosphor,import { Check } from '@phosphor-icons/react',,Success state checkmark,Outline
-22,Status,check-circle,success verified approved complete,Phosphor,import { CheckCircle } from '@phosphor-icons/react',,Success badge verified,Outline
-23,Status,x-circle,error failed cancel rejected,Phosphor,import { XCircle } from '@phosphor-icons/react',,Error state failed,Outline
-24,Status,warning,warning caution attention danger,Phosphor,import { Warning } from '@phosphor-icons/react',,Warning message caution,Outline
-25,Status,warning-circle,info notice information help,Phosphor,import { WarningCircle } from '@phosphor-icons/react',,Info notice alert,Outline
-26,Status,info,information help tooltip details,Phosphor,import { Info } from '@phosphor-icons/react',,Information tooltip help,Outline
-27,Status,circle-notch,loading spinner processing wait,Phosphor,import { CircleNotch } from '@phosphor-icons/react',,Loading state spinner,Outline
-28,Status,clock,time schedule pending wait,Phosphor,import { Clock } from '@phosphor-icons/react',,Pending time schedule,Outline
-29,Communication,envelope,email message inbox letter,Phosphor,import { Envelope } from '@phosphor-icons/react',,Email contact inbox,Outline
-30,Communication,chat-circle,chat comment bubble conversation,Phosphor,import { ChatCircle } from '@phosphor-icons/react',,Chat comment message,Outline
-31,Communication,phone,call mobile telephone contact,Phosphor,import { Phone } from '@phosphor-icons/react',,Phone contact call,Outline
-32,Communication,paper-plane-tilt,submit dispatch message airplane,Phosphor,import { PaperPlaneTilt } from '@phosphor-icons/react',,Send message submit,Outline
-33,Communication,bell,notification alert ring reminder,Phosphor,import { Bell } from '@phosphor-icons/react',,Notification bell alert,Outline
-34,User,user,profile account person avatar,Phosphor,import { User } from '@phosphor-icons/react',,User profile account,Outline
-35,User,users,team group people members,Phosphor,import { Users } from '@phosphor-icons/react',,Team group members,Outline
-36,User,user-plus,add invite new member,Phosphor,import { UserPlus } from '@phosphor-icons/react',,Add user invite,Outline
-37,User,sign-in,signin authenticate enter,Phosphor,import { SignIn } from '@phosphor-icons/react',,Login signin,Outline
-38,User,sign-out,signout exit leave logout,Phosphor,import { SignOut } from '@phosphor-icons/react',,Logout signout,Outline
-39,Media,image,photo picture gallery thumbnail,Phosphor,import { Image } from '@phosphor-icons/react',,Image photo gallery,Outline
-40,Media,video,movie film play record,Phosphor,import { Video } from '@phosphor-icons/react',,Video player media,Outline
-41,Media,play,start video audio media,Phosphor,import { Play } from '@phosphor-icons/react',,Play button video audio,Outline
-42,Media,pause,stop halt video audio,Phosphor,import { Pause } from '@phosphor-icons/react',,Pause button media,Outline
-43,Media,speaker-high,sound audio speaker music,Phosphor,import { SpeakerHigh } from '@phosphor-icons/react',,Volume audio sound,Outline
-44,Media,microphone,microphone record voice audio,Phosphor,import { Microphone } from '@phosphor-icons/react',,Microphone voice record,Outline
-45,Media,camera,photo capture snapshot picture,Phosphor,import { Camera } from '@phosphor-icons/react',,Camera photo capture,Outline
-46,Commerce,shopping-cart,cart checkout basket buy,Phosphor,import { ShoppingCart } from '@phosphor-icons/react',,Shopping cart e-commerce,Outline
-47,Commerce,shopping-bag,purchase buy store bag,Phosphor,import { ShoppingBag } from '@phosphor-icons/react',,Shopping bag purchase,Outline
-48,Commerce,credit-card,payment card checkout stripe,Phosphor,import { CreditCard } from '@phosphor-icons/react',,Payment credit card,Outline
-49,Commerce,currency-dollar,money price currency cost,Phosphor,import { CurrencyDollar } from '@phosphor-icons/react',,Price money currency,Outline
-50,Commerce,tag,label price discount sale,Phosphor,import { Tag } from '@phosphor-icons/react',,Price tag label,Outline
-51,Commerce,gift,present reward bonus offer,Phosphor,import { Gift } from '@phosphor-icons/react',,Gift reward offer,Outline
-52,Commerce,percent,discount sale offer promo,Phosphor,import { Percent } from '@phosphor-icons/react',,Discount percentage sale,Outline
-53,Data,chart-bar,analytics statistics graph metrics,Phosphor,import { ChartBar } from '@phosphor-icons/react',,Bar chart analytics,Outline
-54,Data,chart-pie,statistics distribution breakdown,Phosphor,import { ChartPie } from '@phosphor-icons/react',,Pie chart distribution,Outline
-55,Data,trend-up,growth increase positive trend,Phosphor,import { TrendUp } from '@phosphor-icons/react',,Growth trend positive,Outline
-56,Data,trend-down,decline decrease negative trend,Phosphor,import { TrendDown } from '@phosphor-icons/react',,Decline trend negative,Outline
-57,Data,activity,pulse heartbeat monitor live,Phosphor,import { Activity } from '@phosphor-icons/react',,Activity monitor pulse,Outline
-58,Data,database,storage server data backend,Phosphor,import { Database } from '@phosphor-icons/react',,Database storage,Outline
-59,Files,file,document page paper doc,Phosphor,import { File } from '@phosphor-icons/react',,File document,Outline
-60,Files,file-text,document text page article,Phosphor,import { FileText } from '@phosphor-icons/react',,Text document article,Outline
-61,Files,folder,directory organize group files,Phosphor,import { Folder } from '@phosphor-icons/react',,Folder directory,Outline
-62,Files,folder-open,expanded browse files view,Phosphor,import { FolderOpen } from '@phosphor-icons/react',,Open folder browse,Outline
-63,Files,paperclip,attachment attach file link,Phosphor,import { Paperclip } from '@phosphor-icons/react',,Attachment paperclip,Outline
-64,Files,link,url hyperlink chain connect,Phosphor,import { Link } from '@phosphor-icons/react',,Link URL hyperlink,Outline
-65,Files,clipboard,paste copy buffer notes,Phosphor,import { Clipboard } from '@phosphor-icons/react',,Clipboard paste,Outline
-66,Layout,grid-four,tiles gallery layout dashboard,Phosphor,import { GridFour } from '@phosphor-icons/react',,Grid layout gallery,Outline
-67,Layout,list-bullets,rows table lines items,Phosphor,import { ListBullets } from '@phosphor-icons/react',,List view rows,Outline
-68,Layout,columns,layout split dual sidebar,Phosphor,import { Columns } from '@phosphor-icons/react',,Column layout split,Outline
-69,Layout,arrows-out,fullscreen expand enlarge zoom,Phosphor,import { ArrowsOut } from '@phosphor-icons/react',,Fullscreen maximize,Outline
-70,Layout,arrows-in,reduce shrink collapse exit,Phosphor,import { ArrowsIn } from '@phosphor-icons/react',,Minimize reduce,Outline
-71,Layout,sidebar,panel drawer navigation menu,Phosphor,import { Sidebar } from '@phosphor-icons/react',,Sidebar panel,Outline
-72,Social,heart,like love favorite wishlist,Phosphor,import { Heart } from '@phosphor-icons/react',,Like favorite love,Outline
-73,Social,star,rating review favorite bookmark,Phosphor,import { Star } from '@phosphor-icons/react',,Star rating favorite,Outline
-74,Social,thumbs-up,like approve agree positive,Phosphor,import { ThumbsUp } from '@phosphor-icons/react',,Like approve thumb,Outline
-75,Social,thumbs-down,dislike disapprove disagree negative,Phosphor,import { ThumbsDown } from '@phosphor-icons/react',,Dislike disapprove,Outline
-76,Social,bookmark,save later favorite mark,Phosphor,import { Bookmark } from '@phosphor-icons/react',,Bookmark save,Outline
-77,Social,flag,report mark important highlight,Phosphor,import { Flag } from '@phosphor-icons/react',,Flag report,Outline
-78,Device,device-mobile,mobile phone device touch,Phosphor,import { DeviceMobile } from '@phosphor-icons/react',,Mobile smartphone,Outline
-79,Device,device-tablet,ipad device touch screen,Phosphor,import { DeviceTablet } from '@phosphor-icons/react',,Tablet device,Outline
-80,Device,monitor,desktop screen computer display,Phosphor,import { Monitor } from '@phosphor-icons/react',,Desktop monitor,Outline
-81,Device,laptop,notebook computer portable device,Phosphor,import { Laptop } from '@phosphor-icons/react',,Laptop computer,Outline
-82,Device,printer,print document output paper,Phosphor,import { Printer } from '@phosphor-icons/react',,Printer print,Outline
-83,Security,lock,secure password protected private,Phosphor,import { Lock } from '@phosphor-icons/react',,Lock secure,Outline
-84,Security,lock-open,open access unsecure public,Phosphor,import { LockOpen } from '@phosphor-icons/react',,Unlock open,Outline
-85,Security,shield,protection security safe guard,Phosphor,import { Shield } from '@phosphor-icons/react',,Shield protection,Outline
-86,Security,key,password access unlock login,Phosphor,import { Key } from '@phosphor-icons/react',,Key password,Outline
-87,Security,eye,view show visible password,Phosphor,import { Eye } from '@phosphor-icons/react',,Show password view,Outline
-88,Security,eye-slash,hide invisible password hidden,Phosphor,import { EyeSlash } from '@phosphor-icons/react',,Hide password,Outline
-89,Location,map-pin,location marker place address,Phosphor,import { MapPin } from '@phosphor-icons/react',,Location pin marker,Outline
-90,Location,map,directions navigate geography location,Phosphor,import { Map } from '@phosphor-icons/react',,Map directions,Outline
-91,Location,compass,compass direction pointer arrow,Phosphor,import { Compass } from '@phosphor-icons/react',,Navigation compass,Outline
-92,Location,globe,world international global web,Phosphor,import { Globe } from '@phosphor-icons/react',,Globe world,Outline
-93,Time,calendar,date schedule event appointment,Phosphor,import { Calendar } from '@phosphor-icons/react',,Calendar date,Outline
-94,Time,arrows-clockwise,reload sync update refresh,Phosphor,import { ArrowsClockwise } from '@phosphor-icons/react',,Refresh reload,Outline
-95,Time,arrow-counter-clockwise,undo back revert history,Phosphor,import { ArrowCounterClockwise } from '@phosphor-icons/react',,Undo revert,Outline
-96,Time,arrow-clockwise,redo forward repeat history,Phosphor,import { ArrowClockwise } from '@phosphor-icons/react',,Redo forward,Outline
-97,Development,code,develop programming syntax html,Phosphor,import { Code } from '@phosphor-icons/react',,Code development,Outline
-98,Development,terminal,console cli command shell,Phosphor,import { Terminal } from '@phosphor-icons/react',,Terminal console,Outline
-99,Development,git-branch,version control branch merge,Phosphor,import { GitBranch } from '@phosphor-icons/react',,Git branch,Outline
-100,Development,github-logo,repository code open source,Phosphor,import { GithubLogo } from '@phosphor-icons/react',,GitHub repository,Outline
-101,Style Config,bold-typography-icon-system,"bold typography, editorial, mono label, phosphor, weight regular, minimal, icon+label required, size 20–32",Phosphor (react-native),"import { ArrowRight } from 'phosphor-react-native'","","Bold Typography Mobile style: weight=""regular"". Size 20px for UI controls, 32px for feature anchors. Icons MUST be paired with a Mono-stack text label (JetBrains Mono). Standalone icons only allowed for standard navigation (e.g., Back arrow). Accent color #FF3D00 only.",Outline
-102,Style Config,cyberpunk-icon-system,"cyberpunk, neon, glow, hud, phosphor, weight regular, accent glow, dark, angular, react native",Phosphor (react-native),"import { Lightning } from 'phosphor-react-native'","","Cyberpunk Mobile HUD style: weight=""regular"", color={colors.accent} (#00FF88 Matrix Green). Wrap every icon in a View with shadowColor: colors.accent / shadowOpacity: 0.6 / shadowRadius: 8 to simulate neon glow. Use borderRadius: 0 on wrapper. Avoid rounded icon containers. Always pair icon with data label in JetBrains Mono.",Outline
-103,Style Config,academia-icon-system,"academia, library, brass, ornate, phosphor, weight thin, muted warm, scholarly, mobile",Phosphor (react-native),"import { BookOpen } from 'phosphor-react-native'","","Academia (Scholarly Mobile) style: weight=""thin"" (thin engraved feel), color={colors.brass} (#C9A962). No sharp geometric or tech-inspired icons. Prefer book, scroll, key, quill-type icon metaphors. Wrap in circular View with 1px brass border. Avoid neon or saturated colored icons. All icon-only navigation must have an accessibilityLabel.",Outline
-104,Style Config,web3-bitcoin-icon-system,"web3, bitcoin, defi, crypto, neon orange, holographic, blurview, phosphor, glow, fintech mobile",Phosphor (react-native),"import { TrendUp } from 'phosphor-react-native'","","Bitcoin DeFi Mobile style: weight=""regular"", color={colors.bitcoinOrange} (#F7931A). Wrap icons in circular BlurView (intensity: 20) with 1px borderColor: '#F7931A' border (Holographic Node effect). shadowColor: '#F7931A' / shadowOpacity: 0.4 / shadowRadius: 8. Prefer finance/data icons (TrendUp, Wallet, Shield, Layers). All data icons use JetBrains Mono label.",Outline
-105,Guideline,icon-fallback-rules,"icon fallback, phosphor, heroicons, any icon, extended set","Phosphor (primary) + Heroicons (fallback)","Primary: import { IconName } from '@phosphor-icons/react'. Fallback: import { IconName } from '@heroicons/react/24/outline' or '@heroicons/react/24/solid'.","当默认列表中没有合适图标时:优先继续从 Phosphor 中选择任何语义更贴切的图标(不必局限于本表列出的图标)。若 Phosphor 也无合适图标,可以改用 Heroicons,并在 UI 代码中保持风格统一(线性或填充、圆角程度、笔画粗细等)。","Icon library strategy and fallback rules",Outline
\ No newline at end of file
diff --git a/.agents/skills/ui-ux-pro-max/data/landing.csv b/.agents/skills/ui-ux-pro-max/data/landing.csv
deleted file mode 100644
index f64101e..0000000
--- a/.agents/skills/ui-ux-pro-max/data/landing.csv
+++ /dev/null
@@ -1,35 +0,0 @@
-No,Pattern Name,Keywords,Section Order,Primary CTA Placement,Color Strategy,Recommended Effects,Conversion Optimization
-1,Hero + Features + CTA,"hero, hero-centric, hero-centric design, features, feature-rich, feature-rich showcase, cta, call-to-action","1. Hero with headline/image, 2. Value prop, 3. Key features (3-5), 4. CTA section, 5. Footer",Hero (sticky) + Bottom,Hero: Brand primary or vibrant. Features: Card bg #FAFAFA. CTA: Contrasting accent color,"Hero parallax, feature card hover lift, CTA glow on hover",Deep CTA placement. Use contrasting color (at least 7:1 contrast ratio). Sticky navbar CTA.
-2,Hero + Testimonials + CTA,"hero, testimonials, social-proof, social-proof-focused, social proof focused, trust, reviews, cta","1. Hero, 2. Problem statement, 3. Solution overview, 4. Testimonials carousel, 5. CTA",Hero (sticky) + Post-testimonials,"Hero: Brand color. Testimonials: Light bg #F5F5F5. Quotes: Italic, muted color #666. CTA: Vibrant","Testimonial carousel slide animations, quote marks animations, avatar fade-in",Social proof before CTA. Use 3-5 testimonials. Include photo + name + role. CTA after social proof.
-3,Product Demo + Features,"demo, product-demo, features, showcase, interactive, interactive-product-demo, interactive product demo","1. Hero, 2. Product video/mockup (center), 3. Feature breakdown per section, 4. Comparison (optional), 5. CTA",Video center + CTA right/bottom,Video surround: Brand color overlay. Features: Icon color #0080FF. Text: Dark #222,"Video play button pulse, feature scroll reveals, demo interaction highlights",Embedded product demo increases engagement. Use interactive mockup if possible. Auto-play video muted.
-4,Minimal Single Column,"minimal, simple, direct, minimal & direct, minimal-direct, single-column, clean","1. Hero headline, 2. Short description, 3. Benefit bullets (3 max), 4. CTA, 5. Footer","Center, large CTA button",Minimalist: Brand + white #FFFFFF + accent. Buttons: High contrast 7:1+. Text: Black/Dark grey,Minimal hover effects. Smooth scroll. CTA scale on hover (subtle),Single CTA focus. Large typography. Lots of whitespace. No nav clutter. Mobile-first.
-5,Funnel (3-Step Conversion),"funnel, conversion, conversion-optimized, conversion optimized, steps, wizard, onboarding","1. Hero, 2. Step 1 (problem), 3. Step 2 (solution), 4. Step 3 (action), 5. CTA progression",Each step: mini-CTA. Final: main CTA,"Step colors: 1 (Red/Problem), 2 (Orange/Process), 3 (Green/Solution). CTA: Brand color","Step number animations, progress bar fill, step transitions smooth scroll",Progressive disclosure. Show only essential info per step. Use progress indicators. Multiple CTAs.
-6,Comparison Table + CTA,"comparison, table, compare, versus, cta","1. Hero, 2. Problem intro, 3. Comparison table (product vs competitors), 4. Pricing (optional), 5. CTA",Table: Right column. CTA: Below table,Table: Alternating rows (white/light grey). Your product: Highlight #FFFACD (light yellow) or green. Text: Dark,"Table row hover highlight, price toggle animations, feature checkmark animations",Use comparison to show unique value. Highlight your product row. Include 'free trial' in pricing row.
-7,Lead Magnet + Form,"lead, form, signup, capture, email, magnet","1. Hero (benefit headline), 2. Lead magnet preview (ebook cover, checklist, etc), 3. Form (minimal fields), 4. CTA submit",Form CTA: Submit button,Lead magnet: Professional design. Form: Clean white bg. Inputs: Light border #CCCCCC. CTA: Brand color,"Form focus state animations, input validation animations, success confirmation animation",Form fields ≤ 3 for best conversion. Offer valuable lead magnet preview. Show form submission progress.
-8,Pricing Page + CTA,"pricing, plans, tiers, comparison, cta","1. Hero (pricing headline), 2. Price comparison cards, 3. Feature comparison table, 4. FAQ section, 5. Final CTA",Each card: CTA button. Sticky CTA in nav,"Free: Grey, Starter: Blue, Pro: Green/Gold, Enterprise: Dark. Cards: 1px border, shadow","Price toggle animation (monthly/yearly), card comparison highlight, FAQ accordion open/close",Recommend starter plan (pre-select/highlight). Show annual discount (20-30%). Use FAQs to address concerns.
-9,Video-First Hero,"video, hero, media, visual, engaging","1. Hero with video background, 2. Key features overlay, 3. Benefits section, 4. CTA",Overlay on video (center/bottom) + Bottom section,Dark overlay 60% on video. Brand accent for CTA. White text on dark.,"Video autoplay muted, parallax scroll, text fade-in on scroll",86% higher engagement with video. Add captions for accessibility. Compress video for performance.
-10,Scroll-Triggered Storytelling,"storytelling, scroll, narrative, story, immersive","1. Intro hook, 2. Chapter 1 (problem), 3. Chapter 2 (journey), 4. Chapter 3 (solution), 5. Climax CTA",End of each chapter (mini) + Final climax CTA,Progressive reveal. Each chapter has distinct color. Building intensity.,"ScrollTrigger animations, parallax layers, progressive disclosure, chapter transitions",Narrative increases time-on-page 3x. Use progress indicator. Mobile: simplify animations.
-11,AI Personalization Landing,"ai, personalization, smart, recommendation, dynamic","1. Dynamic hero (personalized), 2. Relevant features, 3. Tailored testimonials, 4. Smart CTA",Context-aware placement based on user segment,Adaptive based on user data. A/B test color variations per segment.,"Dynamic content swap, fade transitions, personalized product recommendations",20%+ conversion with personalization. Requires analytics integration. Fallback for new users.
-12,Waitlist/Coming Soon,"waitlist, coming-soon, launch, early-access, notify","1. Hero with countdown, 2. Product teaser/preview, 3. Email capture form, 4. Social proof (waitlist count)",Email form prominent (above fold) + Sticky form on scroll,Anticipation: Dark + accent highlights. Countdown in brand color. Urgency indicators.,"Countdown timer animation, email validation feedback, success confetti, social share buttons",Scarcity + exclusivity. Show waitlist count. Early access benefits. Referral program.
-13,Comparison Table Focus,"comparison, table, versus, compare, features","1. Hero (problem statement), 2. Comparison matrix (you vs competitors), 3. Feature deep-dive, 4. Winner CTA",After comparison table (highlighted row) + Bottom,Your product column highlighted (accent bg or green). Competitors neutral. Checkmarks green.,"Table row hover highlight, feature checkmark animations, sticky comparison header",Show value vs competitors. 35% higher conversion. Be factual. Include pricing if favorable.
-14,Pricing-Focused Landing,"pricing, price, cost, plans, subscription","1. Hero (value proposition), 2. Pricing cards (3 tiers), 3. Feature comparison, 4. FAQ, 5. Final CTA",Each pricing card + Sticky CTA in nav + Bottom,Popular plan highlighted (brand color border/bg). Free: grey. Enterprise: dark/premium.,"Price toggle monthly/annual animation, card hover lift, FAQ accordion smooth open",Annual discount 20-30%. Recommend mid-tier (most popular badge). Address objections in FAQ.
-15,App Store Style Landing,"app, mobile, download, store, install","1. Hero with device mockup, 2. Screenshots carousel, 3. Features with icons, 4. Reviews/ratings, 5. Download CTAs",Download buttons prominent (App Store + Play Store) throughout,Dark/light matching app store feel. Star ratings in gold. Screenshots with device frames.,"Device mockup rotations, screenshot slider, star rating animations, download button pulse",Show real screenshots. Include ratings (4.5+ stars). QR code for mobile. Platform-specific CTAs.
-16,FAQ/Documentation Landing,"faq, documentation, help, support, questions, faq/documentation, knowledge base","1. Hero with search bar, 2. Popular categories, 3. FAQ accordion, 4. Contact/support CTA",Search bar prominent + Contact CTA for unresolved questions,"Clean, high readability. Minimal color. Category icons in brand color. Success green for resolved.","Search autocomplete, smooth accordion open/close, category hover, helpful feedback buttons",Reduce support tickets. Track search analytics. Show related articles. Contact escalation path.
-17,Immersive/Interactive Experience,"immersive, interactive, experience, 3d, animation, immersive/interactive experience","1. Full-screen interactive element, 2. Guided product tour, 3. Key benefits revealed, 4. CTA after completion",After interaction complete + Skip option for impatient users,Immersive experience colors. Dark background for focus. Highlight interactive elements.,"WebGL, 3D interactions, gamification elements, progress indicators, reward animations",40% higher engagement. Performance trade-off. Provide skip option. Mobile fallback essential.
-18,Event/Conference Landing,"event, conference, meetup, registration, schedule, hero-centric design, hero-centric","1. Hero (date/location/countdown), 2. Speakers grid, 3. Agenda/schedule, 4. Sponsors, 5. Register CTA",Register CTA sticky + After speakers + Bottom,Urgency colors (countdown). Event branding. Speaker cards professional. Sponsor logos neutral.,"Countdown timer, speaker hover cards with bio, agenda tabs, early bird countdown",Early bird pricing with deadline. Social proof (past attendees). Speaker credibility. Multi-ticket discounts.
-19,Product Review/Ratings Focused,"reviews, ratings, testimonials, social-proof, social-proof-focused, stars","1. Hero (product + aggregate rating), 2. Rating breakdown, 3. Individual reviews, 4. Buy/CTA",After reviews summary + Buy button alongside reviews,Trust colors. Star ratings gold. Verified badge green. Review sentiment colors.,"Star fill animations, review filtering, helpful vote interactions, photo lightbox",User-generated content builds trust. Show verified purchases. Filter by rating. Respond to negative reviews.
-20,Community/Forum Landing,"community, forum, social, members, discussion","1. Hero (community value prop), 2. Popular topics/categories, 3. Active members showcase, 4. Join CTA",Join button prominent + After member showcase,"Warm, welcoming. Member photos add humanity. Topic badges in brand colors. Activity indicators green.","Member avatars animation, activity feed live updates, topic hover previews, join success celebration","Show active community (member count, posts today). Highlight benefits. Preview content. Easy onboarding."
-21,Before-After Transformation,"before-after, transformation, results, comparison","1. Hero (problem state), 2. Transformation slider/comparison, 3. How it works, 4. Results CTA",After transformation reveal + Bottom,Contrast: muted/grey (before) vs vibrant/colorful (after). Success green for results.,"Slider comparison interaction, before/after reveal animations, result counters, testimonial videos",Visual proof of value. 45% higher conversion. Real results. Specific metrics. Guarantee offer.
-22,Marketplace / Directory,"marketplace, directory, search, listing","1. Hero (Search focused), 2. Categories, 3. Featured Listings, 4. Trust/Safety, 5. CTA (Become a host/seller)",Hero Search Bar + Navbar 'List your item',"Search: High contrast. Categories: Visual icons. Trust: Blue/Green.","Search autocomplete animation, map hover pins, card carousel","Search bar is the CTA. Reduce friction to search. Popular searches suggestions."
-23,Newsletter / Content First,"newsletter, content, writer, blog, subscribe, minimal & direct, minimal-direct","1. Hero (Value Prop + Form), 2. Recent Issues/Archives, 3. Social Proof (Subscriber count), 4. About Author",Hero inline form + Sticky header form,"Minimalist. Paper-like background. Text focus. Accent color for Subscribe.","Text highlight animations, typewriter effect, subtle fade-in","Single field form (Email only). Show 'Join X, 000 readers'. Read sample link."
-24,Webinar Registration,"webinar, registration, event, training, live","1. Hero (Topic + Timer + Form), 2. What you'll learn, 3. Speaker Bio, 4. Urgency/Bonuses, 5. Form (again)",Hero (Right side form) + Bottom anchor,"Urgency: Red/Orange. Professional: Blue/Navy. Form: High contrast white.","Countdown timer, speaker avatar float, urgent ticker","Limited seats logic. 'Live' indicator. Auto-fill timezone."
-25,Enterprise Gateway,"enterprise, corporate, gateway, solutions, portal, trust, authority, trust & authority","1. Hero (Video/Mission), 2. Solutions by Industry, 3. Solutions by Role, 4. Client Logos, 5. Contact Sales",Contact Sales (Primary) + Login (Secondary),"Corporate: Navy/Grey. High integrity. Conservative accents.","Slow video background, logo carousel, tab switching for industries","Path selection (I am a...). Mega menu navigation. Trust signals prominent."
-26,Portfolio Grid,"portfolio, grid, showcase, gallery, masonry, portfolio grid + visuals","1. Hero (Name/Role), 2. Project Grid (Masonry), 3. About/Philosophy, 4. Contact",Project Card Hover + Footer Contact,"Neutral background (let work shine). Text: Black/White. Accent: Minimal.","Image lazy load reveal, hover overlay info, lightbox view","Visuals first. Filter by category. Fast loading essential."
-27,Horizontal Scroll Journey,"horizontal, scroll, journey, gallery, storytelling, panoramic, storytelling-driven","1. Intro (Vertical), 2. The Journey (Horizontal Track), 3. Detail Reveal, 4. Vertical Footer",Floating Sticky CTA or End of Horizontal Track,Continuous palette transition. Chapter colors. Progress bar #000000.,"Scroll-jacking (careful), parallax layers, horizontal slide, progress indicator","Immersive product discovery. High engagement. Keep navigation visible."
-28,Bento Grid Showcase,"bento, grid, features, modular, apple-style, showcase, feature-rich showcase","1. Hero, 2. Bento Grid (Key Features), 3. Detail Cards, 4. Tech Specs, 5. CTA",Floating Action Button or Bottom of Grid,"Card backgrounds: #F5F5F7 or Glass. Icons: Vibrant brand colors. Text: Dark.","Hover card scale (1.02), video inside cards, tilt effect, staggered reveal","Scannable value props. High information density without clutter. Mobile stack."
-29,Interactive 3D Configurator,"3d, configurator, customizer, interactive, product, interactive product demo","1. Hero (Configurator), 2. Feature Highlight (synced), 3. Price/Specs, 4. Purchase",Inside Configurator UI + Sticky Bottom Bar,"Neutral studio background. Product: Realistic materials. UI: Minimal overlay.","Real-time rendering, material swap animation, camera rotate/zoom, light reflection","Increases ownership feeling. 360 view reduces return rates. Direct add-to-cart."
-30,AI-Driven Dynamic Landing,"ai, dynamic, personalized, adaptive, generative","1. Prompt/Input Hero, 2. Generated Result Preview, 3. How it Works, 4. Value Prop","Input Field (Hero) + 'Try it' Buttons","Adaptive to user input. Dark mode for compute feel. Neon accents.","Typing text effects, shimmering generation loaders, morphing layouts","Immediate value demonstration. 'Show, don't tell'. Low friction start."
-31,Feature-Rich Showcase,"feature-rich, feature-rich showcase, features, showcase, product showcase","1. Hero (value prop), 2. Feature grid/cards (4-6), 3. Use cases or benefits, 4. Social proof or logos, 5. CTA",Hero (sticky) + After features + Bottom,Brand primary + card bg #FAFAFA. Feature icons accent. CTA contrasting.,"Feature card hover lift, scroll reveal, icon micro-interactions","Clear feature hierarchy. One key message per card. Strong CTA repetition."
-32,Hero-Centric Design,"hero-centric, hero-centric design, hero-first, hero above fold","1. Full-bleed Hero (headline + visual), 2. Single value prop strip, 3. Key benefit or proof, 4. Primary CTA",Hero dominant (center/bottom) + Sticky nav CTA,Hero: High-impact visual. Minimal text. CTA 7:1 contrast.,"Hero parallax or video, CTA pulse on scroll, minimal chrome","One primary CTA. Hero is 60-80% above fold. Mobile: same hierarchy."
-33,Trust & Authority + Conversion,"trust & authority, trust, authority, conversion, credibility, enterprise","1. Hero (mission/credibility), 2. Proof (logos, certs, stats), 3. Solution overview, 4. Clear CTA path",Contact Sales / Get Quote (primary) + Nav,"Navy/Grey corporate. Trust blue. Accent for CTA only.","Logo carousel, stat counters, testimonial strip","Security badges. Case studies. Transparent pricing. Low-friction form."
-34,Real-Time / Operations Landing,"real-time, real-time monitor, operations, dashboard, telemetry, live data","1. Hero (product + live preview or status), 2. Key metrics/indicators, 3. How it works, 4. CTA (Start trial / Contact)","Primary CTA in nav + After metrics",Dark or neutral. Status colors (green/amber/red). Data-dense but scannable.,"Live data ticker, status pulse, minimal decoration","For ops/security/iot products. Demo or sandbox link. Trust signals."
diff --git a/.agents/skills/ui-ux-pro-max/data/products.csv b/.agents/skills/ui-ux-pro-max/data/products.csv
deleted file mode 100644
index 0bb9fcb..0000000
--- a/.agents/skills/ui-ux-pro-max/data/products.csv
+++ /dev/null
@@ -1,162 +0,0 @@
-No,Product Type,Keywords,Primary Style Recommendation,Secondary Styles,Landing Page Pattern,Dashboard Style (if applicable),Color Palette Focus,Key Considerations
-1,SaaS (General),"app, b2b, cloud, general, saas, software, subscription",Glassmorphism + Flat Design,"Soft UI Evolution, Minimalism",Hero + Features + CTA,Data-Dense + Real-Time Monitoring,Trust blue + accent contrast,Balance modern feel with clarity. Focus on CTAs.
-2,Micro SaaS,"app, b2b, cloud, indie, micro, micro-saas, niche, saas, small, software, solo, subscription",Flat Design + Vibrant & Block,"Motion-Driven, Micro-interactions",Minimal & Direct + Demo,Executive Dashboard,Vibrant primary + white space,"Keep simple, show product quickly. Speed is key."
-3,E-commerce,"buy, commerce, e, ecommerce, products, retail, sell, shop, store",Vibrant & Block-based,"Aurora UI, Motion-Driven",Feature-Rich Showcase,Sales Intelligence Dashboard,Brand primary + success green,Engagement & conversions. High visual hierarchy.
-4,E-commerce Luxury,"buy, commerce, e, ecommerce, elegant, exclusive, high-end, luxury, premium, products, retail, sell, shop, store",Liquid Glass + Glassmorphism,"3D & Hyperrealism, Aurora UI",Feature-Rich Showcase,Sales Intelligence Dashboard,Premium colors + minimal accent,Elegance & sophistication. Premium materials.
-5,B2B Service,"appointment, b, b2b, booking, business, consultation, corporate, enterprise, service",Trust & Authority + Minimal,"Feature-Rich, Conversion-Optimized",Feature-Rich Showcase,Sales Intelligence Dashboard,Professional blue + neutral grey,Credibility essential. Clear ROI messaging.
-6,Financial Dashboard,"admin, analytics, dashboard, data, financial, panel",Dark Mode (OLED) + Data-Dense,"Minimalism, Accessible & Ethical",N/A - Dashboard focused,Financial Dashboard,Dark bg + red/green alerts + trust blue,"High contrast, real-time updates, accuracy paramount."
-7,Analytics Dashboard,"admin, analytics, dashboard, data, panel",Data-Dense + Heat Map & Heatmap,"Minimalism, Dark Mode (OLED)",N/A - Analytics focused,Drill-Down Analytics + Comparative,Cool→Hot gradients + neutral grey,Clarity > aesthetics. Color-coded data priority.
-8,Healthcare App,"app, clinic, health, healthcare, medical, patient",Neumorphism + Accessible & Ethical,"Soft UI Evolution, Claymorphism (for patients)",Social Proof-Focused,User Behavior Analytics,Calm blue + health green + trust,Accessibility mandatory. Calming aesthetic.
-9,Educational App,"app, course, education, educational, learning, school, training",Claymorphism + Micro-interactions,"Vibrant & Block-based, Flat Design",Storytelling-Driven,User Behavior Analytics,Playful colors + clear hierarchy,Engagement & ease of use. Age-appropriate design.
-10,Creative Agency,"agency, creative, design, marketing, studio",Brutalism + Motion-Driven,"Retro-Futurism, Storytelling-Driven",Storytelling-Driven,N/A - Portfolio focused,Bold primaries + artistic freedom,Differentiation key. Wow-factor necessary.
-11,Portfolio/Personal,"creative, personal, portfolio, projects, showcase, work",Motion-Driven + Minimalism,"Brutalism, Aurora UI",Storytelling-Driven,N/A - Personal branding,Brand primary + artistic interpretation,Showcase work. Personality shine through.
-12,Gaming,"entertainment, esports, game, gaming, play",3D & Hyperrealism + Retro-Futurism,"Motion-Driven, Vibrant & Block",Feature-Rich Showcase,N/A - Game focused,Vibrant + neon + immersive colors,Immersion priority. Performance critical.
-13,Government/Public Service,"appointment, booking, consultation, government, public, service",Accessible & Ethical + Minimalism,"Flat Design, Inclusive Design",Minimal & Direct,Executive Dashboard,Professional blue + high contrast,WCAG AAA mandatory. Trust paramount.
-14,Fintech/Crypto,"banking, blockchain, crypto, defi, finance, fintech, money, nft, payment, web3",Glassmorphism + Dark Mode (OLED),"Retro-Futurism, Motion-Driven",Conversion-Optimized,Real-Time Monitoring + Predictive,Dark tech colors + trust + vibrant accents,Security perception. Real-time data critical.
-15,Social Media App,"app, community, content, entertainment, media, network, sharing, social, streaming, users, video",Vibrant & Block-based + Motion-Driven,"Aurora UI, Micro-interactions",Feature-Rich Showcase,User Behavior Analytics,Vibrant + engagement colors,Engagement & retention. Addictive design ethics.
-16,Productivity Tool,"collaboration, productivity, project, task, tool, workflow",Flat Design + Micro-interactions,"Minimalism, Soft UI Evolution",Interactive Product Demo,Drill-Down Analytics,Clear hierarchy + functional colors,Ease of use. Speed & efficiency focus.
-17,Design System/Component Library,"component, design, library, system",Minimalism + Accessible & Ethical,"Flat Design, Zero Interface",Feature-Rich Showcase,N/A - Dev focused,Clear hierarchy + code-like structure,Consistency. Developer-first approach.
-18,AI/Chatbot Platform,"ai, artificial-intelligence, automation, chatbot, machine-learning, ml, platform",AI-Native UI + Minimalism,"Zero Interface, Glassmorphism",Interactive Product Demo,AI/ML Analytics Dashboard,Neutral + AI Purple (#6366F1),Conversational UI. Streaming text. Context awareness. Minimal chrome.
-19,NFT/Web3 Platform,"nft, platform, web",Cyberpunk UI + Glassmorphism,"Aurora UI, 3D & Hyperrealism",Feature-Rich Showcase,Crypto/Blockchain Dashboard,Dark + Neon + Gold (#FFD700),Wallet integration. Transaction feedback. Gas fees display. Dark mode essential.
-20,Creator Economy Platform,"creator, economy, platform",Vibrant & Block-based + Bento Box Grid,"Motion-Driven, Aurora UI",Social Proof-Focused,User Behavior Analytics,Vibrant + Brand colors,Creator profiles. Monetization display. Engagement metrics. Social proof.
-21,Remote Work/Collaboration Tool,"collaboration, remote, tool, work",Soft UI Evolution + Minimalism,"Glassmorphism, Micro-interactions",Feature-Rich Showcase,Drill-Down Analytics,Calm Blue + Neutral grey,Real-time collaboration. Status indicators. Video integration. Notification management.
-22,Mental Health App,"app, health, mental",Neumorphism + Accessible & Ethical,"Claymorphism, Soft UI Evolution",Social Proof-Focused,Healthcare Analytics,Calm Pastels + Trust colors,Calming aesthetics. Privacy-first. Crisis resources. Progress tracking. Accessibility mandatory.
-23,Pet Tech App,"app, pet, tech",Claymorphism + Vibrant & Block-based,"Micro-interactions, Flat Design",Storytelling-Driven,User Behavior Analytics,Playful + Warm colors,Pet profiles. Health tracking. Playful UI. Photo galleries. Vet integration.
-24,Smart Home/IoT Dashboard,"admin, analytics, dashboard, data, home, iot, panel, smart",Glassmorphism + Dark Mode (OLED),"Minimalism, AI-Native UI",Interactive Product Demo,Real-Time Monitoring,Dark + Status indicator colors,Device status. Real-time controls. Energy monitoring. Automation rules. Quick actions.
-25,EV/Charging Ecosystem,"charging, ecosystem, ev",Minimalism + Aurora UI,"Glassmorphism, Organic Biophilic",Hero-Centric Design,Energy/Utilities Dashboard,Electric Blue (#009CD1) + Green,Charging station maps. Range estimation. Cost calculation. Environmental impact.
-26,Subscription Box Service,"appointment, booking, box, consultation, membership, plan, recurring, service, subscription",Vibrant & Block-based + Motion-Driven,"Claymorphism, Aurora UI",Feature-Rich Showcase,E-commerce Analytics,Brand + Excitement colors,Unboxing experience. Personalization quiz. Subscription management. Product reveals.
-27,Podcast Platform,"platform, podcast",Dark Mode (OLED) + Minimalism,"Motion-Driven, Vibrant & Block-based",Storytelling-Driven,Media/Entertainment Dashboard,Dark + Audio waveform accents,Audio player UX. Episode discovery. Creator tools. Analytics for podcasters.
-28,Dating App,"app, dating",Vibrant & Block-based + Motion-Driven,"Aurora UI, Glassmorphism",Social Proof-Focused,User Behavior Analytics,Warm + Romantic (Pink/Red gradients),Profile cards. Swipe interactions. Match animations. Safety features. Video chat.
-29,Micro-Credentials/Badges Platform,"badges, credentials, micro, platform",Minimalism + Flat Design,"Accessible & Ethical, Swiss Modernism 2.0",Trust & Authority,Education Dashboard,Trust Blue + Gold (#FFD700),Credential verification. Badge display. Progress tracking. Issuer trust. LinkedIn integration.
-30,Knowledge Base/Documentation,"base, documentation, knowledge",Minimalism + Accessible & Ethical,"Swiss Modernism 2.0, Flat Design",FAQ/Documentation,N/A - Documentation focused,Clean hierarchy + minimal color,Search-first. Clear navigation. Code highlighting. Version switching. Feedback system.
-31,Hyperlocal Services,"appointment, booking, consultation, hyperlocal, service, services",Minimalism + Vibrant & Block-based,"Micro-interactions, Flat Design",Conversion-Optimized,Drill-Down Analytics + Map,Location markers + Trust colors,Map integration. Service categories. Provider profiles. Booking system. Reviews.
-32,Beauty/Spa/Wellness Service,"appointment, beauty, booking, consultation, service, spa, wellness",Soft UI Evolution + Neumorphism,"Glassmorphism, Minimalism",Hero-Centric Design + Social Proof,User Behavior Analytics,Soft pastels (Pink #FFB6C1 Sage #90EE90) + Cream + Gold accents,Calming aesthetic. Booking system. Service menu. Before/after gallery. Testimonials. Relaxing imagery.
-33,Luxury/Premium Brand,"brand, elegant, exclusive, high-end, luxury, premium",Liquid Glass + Glassmorphism,"Minimalism, 3D & Hyperrealism",Storytelling-Driven + Feature-Rich,Sales Intelligence Dashboard,Black + Gold (#FFD700) + White + Minimal accent,Elegance paramount. Premium imagery. Storytelling. High-quality visuals. Exclusive feel.
-34,Restaurant/Food Service,"appointment, booking, consultation, delivery, food, menu, order, restaurant, service",Vibrant & Block-based + Motion-Driven,"Claymorphism, Flat Design",Hero-Centric Design + Conversion,N/A - Booking focused,Warm colors (Orange Red Brown) + appetizing imagery,Menu display. Online ordering. Reservation system. Food photography. Location/hours prominent.
-35,Fitness/Gym App,"app, exercise, fitness, gym, health, workout",Vibrant & Block-based + Dark Mode (OLED),"Motion-Driven, Neumorphism",Feature-Rich Showcase,User Behavior Analytics,Energetic (Orange #FF6B35 Electric Blue) + Dark bg,Progress tracking. Workout plans. Community features. Achievements. Motivational design.
-36,Real Estate/Property,"buy, estate, housing, property, real, real-estate, rent",Glassmorphism + Minimalism,"Motion-Driven, 3D & Hyperrealism",Hero-Centric Design + Feature-Rich,Sales Intelligence Dashboard,Trust Blue (#0077B6) + Gold accents + White,Property listings. Virtual tours. Map integration. Agent profiles. Mortgage calculator. High-quality imagery.
-37,Travel/Tourism Agency,"agency, booking, creative, design, flight, hotel, marketing, studio, tourism, travel, vacation",Aurora UI + Motion-Driven,"Vibrant & Block-based, Glassmorphism",Storytelling-Driven + Hero-Centric,Booking Analytics,Vibrant destination colors + Sky Blue + Warm accents,Destination showcase. Booking system. Itinerary builder. Reviews. Inspiration galleries. Mobile-first.
-38,Hotel/Hospitality,"hospitality, hotel",Liquid Glass + Minimalism,"Glassmorphism, Soft UI Evolution",Hero-Centric Design + Social Proof,Revenue Management Dashboard,Warm neutrals + Gold (#D4AF37) + Brand accent,Room booking. Amenities showcase. Location maps. Guest reviews. Seasonal pricing. Luxury imagery.
-39,Wedding/Event Planning,"conference, event, meetup, planning, registration, ticket, wedding",Soft UI Evolution + Aurora UI,"Glassmorphism, Motion-Driven",Storytelling-Driven + Social Proof,N/A - Planning focused,Soft Pink (#FFD6E0) + Gold + Cream + Sage,Portfolio gallery. Vendor directory. Planning tools. Timeline. Budget tracker. Romantic aesthetic.
-40,Legal Services,"appointment, attorney, booking, compliance, consultation, contract, law, legal, service, services",Trust & Authority + Minimalism,"Accessible & Ethical, Swiss Modernism 2.0",Trust & Authority + Minimal,Case Management Dashboard,Navy Blue (#1E3A5F) + Gold + White,Credibility paramount. Practice areas. Attorney profiles. Case results. Contact forms. Professional imagery.
-41,Insurance Platform,"insurance, platform",Trust & Authority + Flat Design,"Accessible & Ethical, Minimalism",Conversion-Optimized + Trust,Claims Analytics Dashboard,Trust Blue (#0066CC) + Green (security) + Neutral,Quote calculator. Policy comparison. Claims process. Trust signals. Clear pricing. Security badges.
-42,Banking/Traditional Finance,"banking, finance, traditional",Minimalism + Accessible & Ethical,"Trust & Authority, Dark Mode (OLED)",Trust & Authority + Feature-Rich,Financial Dashboard,Navy (#0A1628) + Trust Blue + Gold accents,Security-first. Account overview. Transaction history. Mobile banking. Accessibility critical. Trust paramount.
-43,Online Course/E-learning,"course, e, learning, online",Claymorphism + Vibrant & Block-based,"Motion-Driven, Flat Design",Feature-Rich Showcase + Social Proof,Education Dashboard,Vibrant learning colors + Progress green,Course catalog. Progress tracking. Video player. Quizzes. Certificates. Community forums. Gamification.
-44,Non-profit/Charity,"charity, non, profit",Accessible & Ethical + Organic Biophilic,"Minimalism, Storytelling-Driven",Storytelling-Driven + Trust,Donation Analytics Dashboard,Cause-related colors + Trust + Warm,Impact stories. Donation flow. Transparency reports. Volunteer signup. Event calendar. Emotional connection.
-45,Music Streaming,"music, streaming",Dark Mode (OLED) + Vibrant & Block-based,"Motion-Driven, Aurora UI",Feature-Rich Showcase,Media/Entertainment Dashboard,Dark (#121212) + Vibrant accents + Album art colors,Audio player. Playlist management. Artist pages. Personalization. Social features. Waveform visualizations.
-46,Video Streaming/OTT,"ott, streaming, video",Dark Mode (OLED) + Motion-Driven,"Glassmorphism, Vibrant & Block-based",Hero-Centric Design + Feature-Rich,Media/Entertainment Dashboard,Dark bg + Content poster colors + Brand accent,Video player. Content discovery. Watchlist. Continue watching. Personalized recommendations. Thumbnail-heavy.
-47,Job Board/Recruitment,"board, job, recruitment",Flat Design + Minimalism,"Vibrant & Block-based, Accessible & Ethical",Conversion-Optimized + Feature-Rich,HR Analytics Dashboard,Professional Blue + Success Green + Neutral,Job listings. Search/filter. Company profiles. Application tracking. Resume upload. Salary insights.
-48,Marketplace (P2P),"buyers, listings, marketplace, p, platform, sellers",Vibrant & Block-based + Flat Design,"Micro-interactions, Trust & Authority",Feature-Rich Showcase + Social Proof,E-commerce Analytics,Trust colors + Category colors + Success green,Seller/buyer profiles. Listings. Reviews/ratings. Secure payment. Messaging. Search/filter. Trust badges.
-49,Logistics/Delivery,"delivery, logistics",Minimalism + Flat Design,"Dark Mode (OLED), Micro-interactions",Feature-Rich Showcase + Conversion,Real-Time Monitoring + Route Analytics,Blue (#2563EB) + Orange (tracking) + Green (delivered),Real-time tracking. Delivery scheduling. Route optimization. Driver management. Status updates. Map integration.
-50,Agriculture/Farm Tech,"agriculture, farm, tech",Organic Biophilic + Flat Design,"Minimalism, Accessible & Ethical",Feature-Rich Showcase + Trust,IoT Sensor Dashboard,Earth Green (#4A7C23) + Brown + Sky Blue,Crop monitoring. Weather data. IoT sensors. Yield tracking. Market prices. Sustainable imagery.
-51,Construction/Architecture,"architecture, construction",Minimalism + 3D & Hyperrealism,"Brutalism, Swiss Modernism 2.0",Hero-Centric Design + Feature-Rich,Project Management Dashboard,Grey (#4A4A4A) + Orange (safety) + Blueprint Blue,Project portfolio. 3D renders. Timeline. Material specs. Team collaboration. Blueprint aesthetic.
-52,Automotive/Car Dealership,"automotive, car, dealership",Motion-Driven + 3D & Hyperrealism,"Dark Mode (OLED), Glassmorphism",Hero-Centric Design + Feature-Rich,Sales Intelligence Dashboard,Brand colors + Metallic accents + Dark/Light,Vehicle showcase. 360° views. Comparison tools. Financing calculator. Test drive booking. High-quality imagery.
-53,Photography Studio,"photography, studio",Motion-Driven + Minimalism,"Aurora UI, Glassmorphism",Storytelling-Driven + Hero-Centric,N/A - Portfolio focused,Black + White + Minimal accent,Portfolio gallery. Before/after. Service packages. Booking system. Client galleries. Full-bleed imagery.
-54,Coworking Space,"coworking, space",Vibrant & Block-based + Glassmorphism,"Minimalism, Motion-Driven",Hero-Centric Design + Feature-Rich,Occupancy Dashboard,Energetic colors + Wood tones + Brand accent,Space tour. Membership plans. Booking system. Amenities. Community events. Virtual tour.
-55,Home Services (Plumber/Electrician),"appointment, booking, consultation, electrician, home, plumber, service, services",Flat Design + Trust & Authority,"Minimalism, Accessible & Ethical",Conversion-Optimized + Trust,Service Analytics,Trust Blue + Safety Orange + Professional grey,Service list. Emergency contact. Booking. Price transparency. Certifications. Local trust signals.
-56,Childcare/Daycare,"childcare, daycare",Claymorphism + Vibrant & Block-based,"Soft UI Evolution, Accessible & Ethical",Social Proof-Focused + Trust,Parent Dashboard,Playful pastels + Safe colors + Warm accents,Programs. Staff profiles. Safety certifications. Parent portal. Activity updates. Cheerful imagery.
-57,Senior Care/Elderly,"care, elderly, senior",Accessible & Ethical + Soft UI Evolution,"Minimalism, Neumorphism",Trust & Authority + Social Proof,Healthcare Analytics,Calm Blue + Warm neutrals + Large text,Care services. Staff qualifications. Facility tour. Family portal. Large touch targets. High contrast. Accessibility-first.
-58,Medical Clinic,"clinic, medical",Accessible & Ethical + Minimalism,"Neumorphism, Trust & Authority",Trust & Authority + Conversion,Healthcare Analytics,Medical Blue (#0077B6) + Trust White + Calm Green,Services. Doctor profiles. Online booking. Patient portal. Insurance info. HIPAA compliant. Trust signals.
-59,Pharmacy/Drug Store,"drug, pharmacy, store",Flat Design + Accessible & Ethical,"Minimalism, Trust & Authority",Conversion-Optimized + Trust,Inventory Dashboard,Pharmacy Green + Trust Blue + Clean White,Product catalog. Prescription upload. Refill reminders. Health info. Store locator. Safety certifications.
-60,Dental Practice,"dental, practice",Soft UI Evolution + Minimalism,"Accessible & Ethical, Trust & Authority",Social Proof-Focused + Conversion,Patient Analytics,Fresh Blue + White + Smile Yellow accent,Services. Dentist profiles. Before/after. Online booking. Insurance. Patient testimonials. Friendly imagery.
-61,Veterinary Clinic,"clinic, veterinary",Claymorphism + Accessible & Ethical,"Soft UI Evolution, Flat Design",Social Proof-Focused + Trust,Pet Health Dashboard,Caring Blue + Pet-friendly colors + Warm accents,Pet services. Vet profiles. Online booking. Pet portal. Emergency info. Friendly animal imagery.
-62,Florist/Plant Shop,"florist, plant, shop",Organic Biophilic + Vibrant & Block-based,"Aurora UI, Motion-Driven",Hero-Centric Design + Conversion,E-commerce Analytics,Natural Green + Floral pinks/purples + Earth tones,Product catalog. Occasion categories. Delivery scheduling. Care guides. Seasonal collections. Beautiful imagery.
-63,Bakery/Cafe,"bakery, cafe",Vibrant & Block-based + Soft UI Evolution,"Claymorphism, Motion-Driven",Hero-Centric Design + Conversion,N/A - Order focused,Warm Brown + Cream + Appetizing accents,Menu display. Online ordering. Location/hours. Catering. Seasonal specials. Appetizing photography.
-64,Brewery/Winery,"brewery, winery",Motion-Driven + Storytelling-Driven,"Dark Mode (OLED), Organic Biophilic",Storytelling-Driven + Hero-Centric,N/A - E-commerce focused,Deep amber/burgundy + Gold + Craft aesthetic,Product showcase. Story/heritage. Tasting notes. Events. Club membership. Artisanal imagery.
-65,Airline,"airline, aviation, flight, travel, booking, airport, flying",Minimalism + Glassmorphism,"Motion-Driven, Accessible & Ethical",Conversion-Optimized + Feature-Rich,Operations Dashboard,Sky Blue + Brand colors + Trust accents,Flight search. Booking. Check-in. Boarding pass. Loyalty program. Route maps. Mobile-first.
-66,News/Media Platform,"content, entertainment, media, news, platform, streaming, video",Minimalism + Flat Design,"Dark Mode (OLED), Accessible & Ethical",Hero-Centric Design + Feature-Rich,Media Analytics Dashboard,Brand colors + High contrast + Category colors,Article layout. Breaking news. Categories. Search. Subscription. Mobile reading. Fast loading.
-67,Magazine/Blog,"articles, blog, content, magazine, posts, writing",Swiss Modernism 2.0 + Motion-Driven,"Minimalism, Aurora UI",Storytelling-Driven + Hero-Centric,Content Analytics,Editorial colors + Brand primary + Clean white,Article showcase. Category navigation. Author profiles. Newsletter signup. Related content. Typography-focused.
-68,Freelancer Platform,"freelancer, platform",Flat Design + Minimalism,"Vibrant & Block-based, Micro-interactions",Feature-Rich Showcase + Conversion,Marketplace Analytics,Professional Blue + Success Green + Neutral,Profile creation. Portfolio. Skill matching. Messaging. Payment. Reviews. Project management.
-69,Marketing Agency,"agency, creative, design, marketing, studio",Brutalism + Motion-Driven,"Vibrant & Block-based, Aurora UI",Storytelling-Driven + Feature-Rich,Campaign Analytics,Bold brand colors + Creative freedom,Portfolio. Case studies. Services. Team. Creative showcase. Results-focused. Bold aesthetic.
-70,Event Management,"conference, event, management, meetup, registration, ticket",Vibrant & Block-based + Motion-Driven,"Glassmorphism, Aurora UI",Hero-Centric Design + Feature-Rich,Event Analytics,Event theme colors + Excitement accents,Event showcase. Registration. Agenda. Speakers. Sponsors. Ticket sales. Countdown timer.
-71,Membership/Community,"community, membership",Vibrant & Block-based + Soft UI Evolution,"Bento Box Grid, Micro-interactions",Social Proof-Focused + Conversion,Community Analytics,Community brand colors + Engagement accents,Member benefits. Pricing tiers. Community showcase. Events. Member directory. Exclusive content.
-72,Newsletter Platform,"newsletter, platform",Minimalism + Flat Design,"Swiss Modernism 2.0, Accessible & Ethical",Minimal & Direct + Conversion,Email Analytics,Brand primary + Clean white + CTA accent,Subscribe form. Archive. About. Social proof. Sample content. Simple conversion.
-73,Digital Products/Downloads,"digital, downloads, products",Vibrant & Block-based + Motion-Driven,"Glassmorphism, Bento Box Grid",Feature-Rich Showcase + Conversion,E-commerce Analytics,Product category colors + Brand + Success green,Product showcase. Preview. Pricing. Instant delivery. License management. Customer reviews.
-74,Church/Religious Organization,"church, organization, religious",Accessible & Ethical + Soft UI Evolution,"Minimalism, Trust & Authority",Hero-Centric Design + Social Proof,N/A - Community focused,Warm Gold + Deep Purple/Blue + White,Service times. Events. Sermons. Community. Giving. Location. Welcoming imagery.
-75,Sports Team/Club,"club, sports, team",Vibrant & Block-based + Motion-Driven,"Dark Mode (OLED), 3D & Hyperrealism",Hero-Centric Design + Feature-Rich,Performance Analytics,Team colors + Energetic accents,Schedule. Roster. News. Tickets. Merchandise. Fan engagement. Action imagery.
-76,Museum/Gallery,"gallery, museum",Minimalism + Motion-Driven,"Swiss Modernism 2.0, 3D & Hyperrealism",Storytelling-Driven + Feature-Rich,Visitor Analytics,Art-appropriate neutrals + Exhibition accents,Exhibitions. Collections. Tickets. Events. Virtual tours. Educational content. Art-focused design.
-77,Theater/Cinema,"cinema, theater",Dark Mode (OLED) + Motion-Driven,"Vibrant & Block-based, Glassmorphism",Hero-Centric Design + Conversion,Booking Analytics,Dark + Spotlight accents + Gold,Showtimes. Seat selection. Trailers. Coming soon. Membership. Dramatic imagery.
-78,Language Learning App,"app, language, learning",Claymorphism + Vibrant & Block-based,"Micro-interactions, Flat Design",Feature-Rich Showcase + Social Proof,Learning Analytics,Playful colors + Progress indicators + Country flags,Lesson structure. Progress tracking. Gamification. Speaking practice. Community. Achievement badges.
-79,Coding Bootcamp,"bootcamp, coding",Dark Mode (OLED) + Minimalism,"Cyberpunk UI, Flat Design",Feature-Rich Showcase + Social Proof,Student Analytics,Code editor colors + Brand + Success green,Curriculum. Projects. Career outcomes. Alumni. Pricing. Application. Terminal aesthetic.
-80,Cybersecurity Platform,"cyber, security, platform",Cyberpunk UI + Dark Mode (OLED),"Neubrutalism, Minimal & Direct",Trust & Authority + Real-Time,Real-Time Monitoring + Heat Map,Matrix Green + Deep Black + Terminal feel,Data density. Threat visualization. Dark mode default.
-81,Developer Tool / IDE,"dev, developer, tool, ide",Dark Mode (OLED) + Minimalism,"Flat Design, Bento Box Grid",Minimal & Direct + Documentation,Real-Time Monitor + Terminal,Dark syntax theme colors + Blue focus,Keyboard shortcuts. Syntax highlighting. Fast performance.
-82,Biotech / Life Sciences,"biotech, biology, science",Glassmorphism + Clean Science,"Minimalism, Organic Biophilic",Storytelling-Driven + Research,Data-Dense + Predictive,Sterile White + DNA Blue + Life Green,Data accuracy. Cleanliness. Complex data viz.
-83,Space Tech / Aerospace,"aerospace, space, tech",Holographic / HUD + Dark Mode,"Glassmorphism, 3D & Hyperrealism",Immersive Experience + Hero,Real-Time Monitoring + 3D,Deep Space Black + Star White + Metallic,High-tech feel. Precision. Telemetry data.
-84,Architecture / Interior,"architecture, design, interior",Exaggerated Minimalism + High Imagery,"Swiss Modernism 2.0, Parallax",Portfolio Grid + Visuals,Project Management + Gallery,Monochrome + Gold Accent + High Imagery,High-res images. Typography. Space.
-85,Quantum Computing Interface,"quantum, computing, physics, qubit, future, science",Holographic / HUD + Dark Mode,"Glassmorphism, Spatial UI",Immersive/Interactive Experience,3D Spatial Data + Real-Time Monitor,Quantum Blue #00FFFF + Deep Black + Interference patterns,Visualize complexity. Qubit states. Probability clouds. High-tech trust.
-86,Biohacking / Longevity App,"biohacking, health, longevity, tracking, wellness, science",Biomimetic / Organic 2.0,"Minimalism, Dark Mode (OLED)",Data-Dense + Storytelling,Real-Time Monitor + Biological Data,Cellular Pink/Red + DNA Blue + Clean White,Personal data privacy. Scientific credibility. Biological visualizations.
-87,Autonomous Drone Fleet Manager,"drone, autonomous, fleet, aerial, logistics, robotics",HUD / Sci-Fi FUI,"Real-Time Monitor, Spatial UI",Real-Time Monitor,Geographic + Real-Time,Tactical Green #00FF00 + Alert Red + Map Dark,Real-time telemetry. 3D spatial awareness. Latency indicators. Safety alerts.
-88,Generative Art Platform,"art, generative, ai, creative, platform, gallery",Minimalism (Frame) + Gen Z Chaos,"Masonry Grid, Dark Mode",Bento Grid Showcase,Gallery / Portfolio,Neutral #F5F5F5 (Canvas) + User Content,Content is king. Fast loading. Creator attribution. Minting flow.
-89,Spatial Computing OS / App,"spatial, vr, ar, vision, os, immersive, mixed-reality",Spatial UI (VisionOS),"Glassmorphism, 3D & Hyperrealism",Immersive/Interactive Experience,Spatial Dashboard,Frosted Glass + System Colors + Depth,Gaze/Pinch interaction. Depth hierarchy. Environment awareness.
-90,Sustainable Energy / Climate Tech,"climate, energy, sustainable, green, tech, carbon",Organic Biophilic + E-Ink / Paper,"Data-Dense, Swiss Modernism",Interactive Demo + Data,Energy/Utilities Dashboard,Earth Green + Sky Blue + Solar Yellow,Data transparency. Impact visualization. Low-carbon web design.
-91,Personal Finance Tracker,"budget, expense, money, finance, spending, savings, tracker, personal, wallet",Glassmorphism + Dark Mode (OLED),"Minimalism, Flat Design",Interactive Product Demo,Financial Dashboard,Calm blue + success green + alert red + chart accents,Category pie/donut charts. Monthly trend lines. Budget progress bars. Transaction list with swipe actions. Receipt camera. Currency formatting. Recurring entries.
-92,Chat & Messaging App,"chat, message, messenger, im, realtime, conversation, inbox, dm, whatsapp, telegram",Minimalism + Micro-interactions,"Glassmorphism, Flat Design",Feature-Rich Showcase + Demo,User Behavior Analytics,Brand primary + bubble contrast (sender/receiver) + typing grey,Bubble UI (left/right alignment). Typing indicators. Read receipts (✓✓). Image/file preview. Emoji reactions. Group avatars. Online status dots. Swipe-to-reply.
-93,Notes & Writing App,"notes, memo, writing, editor, notebook, markdown, journal, notion, obsidian",Minimalism + Flat Design,"Swiss Modernism 2.0, Soft UI Evolution",Minimal & Direct,N/A - Editor focused,Clean white/cream + minimal accent + editor syntax colors,WYSIWYG or Markdown toggle. Folder/tag organization. Full-text search. Cloud sync. Typography-first. Distraction-free zen mode. Slash-command palette.
-94,Habit Tracker,"habit, streak, routine, daily, tracker, goals, consistency, discipline",Claymorphism + Vibrant & Block-based,"Micro-interactions, Flat Design",Social Proof-Focused + Demo,User Behavior Analytics,Streak warm (amber/orange) + progress green + motivational accents,Streak calendar heatmap. Daily check-in interaction. Gamification (badges/levels/fire). Reminder push. Progress ring charts. Weekly/monthly stats. Motivational micro-copy.
-95,Food Delivery / On-Demand,"delivery, food, order, uber-eats, doordash, takeout, on-demand, courier",Vibrant & Block-based + Motion-Driven,"Glassmorphism, Flat Design",Hero-Centric Design + Feature-Rich,Real-Time Monitoring + Map,Appetizing warm (orange/red) + trust blue + map accent,Restaurant cards with ratings. Menu category horizontal scroll. Cart bottom sheet. Real-time map tracking + driver ETA. Order status stepper. Rating post-delivery.
-96,Ride Hailing / Transportation,"ride, taxi, uber, lyft, transport, carpool, driver, trip, fare",Minimalism + Glassmorphism,"Dark Mode (OLED), Motion-Driven",Conversion-Optimized + Demo,Real-Time Monitoring + Map,Brand primary + map neutral + status indicator colors,Map-centric full-screen UI. Pickup/dropoff pins + route polyline. Driver card (photo/rating/vehicle). Fare estimate. Trip timer. Safety SOS button. Payment sheet.
-97,Recipe & Cooking App,"recipe, cooking, food, kitchen, cookbook, meal, ingredient, chef",Claymorphism + Vibrant & Block-based,"Soft UI Evolution, Organic Biophilic",Hero-Centric Design + Feature-Rich,N/A - Content focused,Warm food tones (terracotta/sage/cream) + appetizing imagery,Step-by-step with checkable instructions. Ingredient list with serving adjuster. Built-in timer per step. Cooking mode (screen-awake + large text). Save/bookmark. Share.
-98,Meditation & Mindfulness,"meditation, mindfulness, calm, breathe, wellness, relaxation, sleep, headspace",Neumorphism + Soft UI Evolution,"Aurora UI, Glassmorphism",Storytelling-Driven + Social Proof,User Behavior Analytics,Ultra-calm pastels (lavender/sage/sky) + breathing animation gradient,Breathing circle animation. Session duration picker. Ambient sound mixer. Streak/consistency tracking. Guided audio player. Sleep timer. Minimal chrome. Slow easing transitions only.
-99,Weather App,"weather, forecast, temperature, climate, rain, sun, location, humidity",Glassmorphism + Aurora UI,"Motion-Driven, Minimalism",Hero-Centric Design,N/A - Utility focused,Atmospheric gradients (sky blue → sunset → storm grey) + temp scale,Location auto-detect. Hourly horizontal scroll + daily/weekly list. Animated weather icons. Air quality index. UV/wind/humidity chips. Radar map overlay. Widget-friendly layout.
-100,Diary & Journal App,"diary, journal, personal, daily, reflection, mood, gratitude, writing",Soft UI Evolution + Minimalism,"Neumorphism, Sketch Hand-Drawn",Storytelling-Driven,N/A - Personal focused,Warm paper tones (cream/linen) + muted ink + mood-coded accents,Calendar month-view entry. Mood tag selector (emoji/color). Photo/voice attachment. Writing prompts. Privacy lock (FaceID/PIN). Search across entries. Export to PDF.
-101,CRM & Client Management,"crm, client, customer, sales, pipeline, contact, lead, deal, hubspot",Flat Design + Minimalism,"Soft UI Evolution, Micro-interactions",Feature-Rich Showcase + Demo,Sales Intelligence Dashboard,Professional blue + pipeline stage colors + closed-won green,Contact card list with avatar. Pipeline kanban board. Activity timeline. Quick-log (call/email/meeting). Deal amount + probability. Tag/segment filter. Mobile quick-actions.
-102,Inventory & Stock Management,"inventory, stock, warehouse, product, barcode, supply, sku, management",Flat Design + Minimalism,"Dark Mode (OLED), Accessible & Ethical",Feature-Rich Showcase,Real-Time Monitoring + Data-Dense,Functional neutral + status traffic-light (green/amber/red) + scanner accent,Product list/grid with thumbnails. Barcode/QR scanner. Stock level badges. Low-stock alert banner. Category/location filter. Batch edit. Reorder trigger. Audit log.
-103,Flashcard & Study Tool,"flashcard, quiz, study, spaced-repetition, anki, learn, memory, exam",Claymorphism + Micro-interactions,"Vibrant & Block-based, Flat Design",Feature-Rich Showcase + Demo,Learning Analytics,Playful primary + correct green + incorrect red + progress blue,3D card flip animation. Spaced repetition algorithm. Deck browser. Session progress bar. Streak tracking. Timed quiz mode. Share/import decks. Rich text + image cards.
-104,Booking & Appointment App,"booking, appointment, schedule, calendar, reservation, slot, service",Soft UI Evolution + Flat Design,"Minimalism, Micro-interactions",Conversion-Optimized,Drill-Down Analytics,Trust blue + available green + booked grey + confirm accent,Calendar strip or month picker. Available time-slot grid. Service + staff selector. Confirmation summary. Reminder push. Reschedule/cancel flow. Two-sided (provider ↔ client).
-105,Invoice & Billing Tool,"invoice, billing, payment, receipt, freelance, estimate, quote, accounting",Minimalism + Flat Design,"Swiss Modernism 2.0, Accessible & Ethical",Conversion-Optimized + Trust,Financial Dashboard,Professional navy + paid green + overdue red + neutral grey,Invoice template with line items. Tax/discount calculation. Status badges (Draft/Sent/Paid/Overdue). PDF export + share. Payment link generation. Client address book. Recurring invoices.
-106,Grocery & Shopping List,"grocery, shopping, list, supermarket, checklist, pantry, meal-plan, buy",Flat Design + Vibrant & Block-based,"Claymorphism, Micro-interactions",Minimal & Direct + Demo,N/A - List focused,Fresh green + food-category colors + checkmark accent,Category-grouped list. Tap-to-check interaction (with strikethrough). Quantity stepper. Share list with family. Store aisle sorting. Barcode scan to add. Frequently bought suggestions.
-107,Timer & Pomodoro,"timer, pomodoro, countdown, stopwatch, focus, clock, productivity, interval",Minimalism + Neumorphism,"Dark Mode (OLED), Micro-interactions",Minimal & Direct,N/A - Utility focused,High-contrast on dark + focus red/amber + break green,Large centered countdown digits. Circular progress ring. Session/break auto-switch. Session history log. Custom interval settings. Sound + haptic alerts. Focus stats chart.
-108,Parenting & Baby Tracker,"baby, parenting, child, feeding, sleep, diaper, milestone, family, newborn",Claymorphism + Soft UI Evolution,"Vibrant & Block-based, Accessible & Ethical",Social Proof-Focused + Trust,User Behavior Analytics,Soft pastels (baby pink/sky blue/mint/peach) + warm accents,Feed/sleep/diaper quick-log buttons. Growth percentile chart. Milestone timeline with photos. Multiple child profiles. Partner invite + shared access. Pediatric reference. One-handed operation.
-109,Scanner & Document Manager,"scanner, document, ocr, pdf, scan, camera, file, archive, digitize",Minimalism + Flat Design,"Dark Mode (OLED), Accessible & Ethical",Feature-Rich Showcase + Demo,N/A - Tool focused,Clean white + camera viewfinder accent + file-type color coding,Camera capture with auto-edge detection. Crop/rotate/enhance. OCR text extraction overlay. PDF multi-page creation. Folder tree organization. Cloud sync. Share/export. Batch scan mode.
-110,Calendar & Scheduling App,"calendar, scheduling, planner, agenda, events, reminder, appointment, organize, date, sync",Flat Design + Micro-interactions,"Minimalism, Soft UI Evolution",Feature-Rich Showcase + Demo,N/A - Calendar focused,Clean blue + event category accent colors + success green,Event color coding. Week/month/day views. Recurring events. Conflict detection. Multi-calendar sync.
-111,Password Manager,"password, security, vault, credentials, login, secure, encrypt, keychain, 2fa, biometric",Minimalism + Accessible & Ethical,"Dark Mode (OLED), Trust & Authority",Trust & Authority + Feature-Rich,N/A - Vault focused,Trust blue + security green + dark neutral,Security-first. Zero-knowledge architecture. Biometric unlock. Breach alert dashboard. Password generator.
-112,Expense Splitter / Bill Split,"split, expense, bill, aa, share, friends, group, settle, debt, payment, owe",Flat Design + Vibrant & Block-based,"Minimalism, Micro-interactions",Minimal & Direct + Demo,N/A - Balance focused,Success green + alert red + neutral grey + avatar accent colors,Group expense tracking. Debt simplification algorithm. Payment reminders. Multi-currency. Receipt photo import.
-113,Voice Recorder & Memo,"voice, recorder, memo, audio, transcription, dictate, recording, microphone, note, otter",Minimalism + AI-Native UI,"Flat Design, Dark Mode (OLED)",Interactive Product Demo + Minimal,N/A - Recording focused,Clean white + recording red + waveform accent,Waveform display. Background recording. Auto-transcription (AI). Tag/organize. Cloud sync.
-114,Bookmark & Read-Later,"bookmark, read-later, save, article, pocket, link, reading, archive, collection, raindrop",Minimalism + Flat Design,"Editorial Grid, Swiss Modernism 2.0",Minimal & Direct + Demo,N/A - List focused,Paper warm white + ink neutral + minimal accent + tag colors,Fast save via share sheet. Article distraction-free view. Tags and collections. Offline sync. Reading progress.
-115,Translator App,"translate, language, text, voice, ocr, dictionary, multilingual, real-time, detect, deepl",Flat Design + AI-Native UI,"Minimalism, Micro-interactions",Feature-Rich Showcase + Interactive Demo,N/A - Utility focused,Global blue + neutral grey + language flag accent,Real-time camera translation (OCR). Voice input and output. Offline mode. Conversation mode. Phrasebook.
-116,Calculator & Unit Converter,"calculator, converter, unit, math, currency, measurement, scientific, formula, percentage",Neumorphism + Minimalism,"Flat Design, Dark Mode (OLED)",Minimal & Direct,N/A - Utility focused,Dark functional + orange operation keys + clear button hierarchy,Scientific mode toggle. Live currency rates. Calculation history. Widget support. Gesture input.
-117,Alarm & World Clock,"alarm, clock, world, timezone, timer, wake, sleep, schedule, reminder, bedtime",Dark Mode (OLED) + Minimalism,"Neumorphism, Flat Design",Minimal & Direct,N/A - Utility focused,Deep dark + ambient glow accent + timezone gradient,Gentle wake (gradual volume). Timezone visualizer. Sleep tracking integration. Smart alarm skip. Bedtime mode.
-118,File Manager & Transfer,"file, manager, transfer, folder, document, storage, cloud, share, organize, compress",Flat Design + Minimalism,"Accessible & Ethical, Dark Mode (OLED)",Feature-Rich Showcase + Demo,N/A - File tree focused,"Functional neutral + file type color coding (PDF orange, doc blue, image purple)",Folder tree navigation. File type preview. Wireless P2P transfer. Cloud integration. Compress and extract.
-119,Email Client,"email, mail, inbox, compose, thread, newsletter, filter, reply, gmail, spark, superhuman",Flat Design + Minimalism,"Micro-interactions, Soft UI Evolution",Feature-Rich Showcase + Demo,N/A - Inbox focused,Clean white + brand primary + priority red + snooze amber,Unified inbox. Swipe actions (archive/delete/snooze). Priority sorting. Smart reply. Unsubscribe tool.
-120,Casual Puzzle Game,"puzzle, casual, match, brain, game, relaxing, level, tiles, logic, block, three",Claymorphism + Vibrant & Block-based,"Micro-interactions, Motion-Driven",Feature-Rich Showcase + Social Proof,N/A - Game focused,Cheerful pastels + progression gradient + reward gold + bright accent,Satisfying match/clear animations. Progressive difficulty. Daily challenges. No-skip tutorials. Offline play.
-121,Trivia & Quiz Game,"trivia, quiz, knowledge, question, answer, challenge, leaderboard, fact, brain, compete",Vibrant & Block-based + Micro-interactions,"Claymorphism, Flat Design",Feature-Rich Showcase + Social Proof,Leaderboard Analytics,Energetic blue + correct green + incorrect red + leaderboard gold,Timer pressure UX. Category selection. Streak system. Real-time multiplayer. Daily quiz mode.
-122,Card & Board Game,"card, board, chess, checkers, poker, strategy, turn-based, multiplayer, classic, tabletop",3D & Hyperrealism + Flat Design,"Motion-Driven, Dark Mode (OLED)",Feature-Rich Showcase,N/A - Game focused,Game-theme felt green + dark wood + card back patterns,Real-time or async multiplayer. Game state sync. Tutorial mode. Match history. ELO rating system.
-123,Idle & Clicker Game,"idle, clicker, incremental, passive, cookie, adventure, progress, offline, collect, prestige",Vibrant & Block-based + Motion-Driven,"Claymorphism, 3D & Hyperrealism",Feature-Rich Showcase,N/A - Progress focused,Coin gold + upgrade blue + prestige purple + progress green,Offline progress calculation. Satisfying number animations. Upgrade tree clarity. Prestige system. Optional ads.
-124,Word & Crossword Game,"word, crossword, wordle, spelling, vocabulary, letters, grid, puzzle, dictionary, daily",Minimalism + Flat Design,"Swiss Modernism 2.0, Micro-interactions",Minimal & Direct + Demo,N/A - Game focused,Clean white + warm letter tiles + success green + shake red,Daily challenge with shareable results. Physical keyboard feel. Difficulty levels. Dictionary hints. Streak stats.
-125,Arcade & Retro Game,"arcade, retro, 8bit, action, shoot, runner, tap, reflex, endless, pixel, classic, score",Pixel Art + Retro-Futurism,"Vibrant & Block-based, Motion-Driven",Feature-Rich Showcase + Hero-Centric,N/A - Score focused,Neon on black + pixel palette + score gold + danger red,Instant play with no login. Game Center leaderboards. Haptic feedback on collision. Offline. Controller support.
-126,Photo Editor & Filters,"photo, edit, filter, vsco, snapseed, enhance, crop, retouch, adjust, luts, preset, adjust",Minimalism + Dark Mode (OLED),"Motion-Driven, Flat Design",Feature-Rich Showcase + Interactive Demo,N/A - Editor focused,Dark editor background + vibrant filter preview strip + tool icon accent,Non-destructive editing. Filter preview carousel. Histogram. RAW support. Batch export. Social share direct.
-127,Short Video Editor,"video, edit, capcut, inshot, clip, reel, tiktok, trim, effects, transitions, music, timeline",Dark Mode (OLED) + Motion-Driven,"Vibrant & Block-based, Glassmorphism",Feature-Rich Showcase + Hero-Centric,N/A - Timeline editor focused,Dark background + timeline track accent colors + effect preview vivid,Multi-track timeline. Licensed music library. Text overlays. Auto-captions. Export 9:16 / 16:9 / 1:1.
-128,Drawing & Sketching Canvas,"drawing, sketch, procreate, canvas, paint, illustration, digital, brush, layers, art, stylus",Minimalism + Dark Mode (OLED),"Anti-Polish Raw, Motion-Driven",Interactive Product Demo + Storytelling,N/A - Canvas focused,Neutral canvas + full-spectrum color picker + tool panel dark,Pressure sensitivity. Infinite canvas (pan/zoom). Layer management. Undo history. Export PNG/PSD/SVG.
-129,Music Creation & Beat Maker,"music, beat, daw, garageband, create, loop, sample, instrument, track, compose, record, midi",Dark Mode (OLED) + Motion-Driven,"Cyberpunk UI, Glassmorphism",Interactive Product Demo + Storytelling,N/A - DAW focused,Dark studio background + track colors rainbow + waveform accent + BPM pulse,Touch piano and drum pad. Loop browser. MIDI support. Export MP3/WAV. Low-latency audio engine.
-130,Meme & Sticker Maker,"meme, sticker, maker, funny, caption, template, edit, share, viral, emoji, creator, reaction",Vibrant & Block-based + Flat Design,"Gen Z Chaos, Claymorphism",Feature-Rich Showcase + Social Proof,N/A - Creator focused,Bold primary + comedic yellow + viral red + high saturation accent,Template library. Caption text overlay. Font variety. Reaction sticker packs. Share to all platforms. Fast creation.
-131,AI Photo & Avatar Generator,"ai, photo, avatar, lensa, portrait, generate, selfie, style, filter, prisma, art",AI-Native UI + Aurora UI,"Glassmorphism, Minimalism",Feature-Rich Showcase + Social Proof,N/A - Generation focused,AI purple + aurora gradients + before/after neutral,Style selection. Multiple output variations. Privacy policy prominent. Fast generation. Credits/subscription system.
-132,Link-in-Bio Page Builder,"bio, link, linktree, personal, page, creator, social, portfolio, profile, landing, custom",Vibrant & Block-based + Bento Box Grid,"Minimalism, Glassmorphism",Conversion-Optimized + Social Proof,Analytics (click tracking),Brand-customizable + accent link color + clean white canvas,Drag-drop builder. Theme templates. Click analytics. Custom domain. Social icon integration. QR code export.
-133,Wardrobe & Outfit Planner,"wardrobe, outfit, fashion, clothes, closet, style, wear, plan, capsule, ootd, lookbook",Minimalism + Motion-Driven,"Aurora UI, Soft UI Evolution",Storytelling-Driven + Feature-Rich,N/A - Wardrobe focused,Clean fashion neutral + full clothes color palette + accent,Photo catalog of clothes. AI outfit suggestions. Calendar integration. Capsule wardrobe. Season filtering.
-134,Plant Care Tracker,"plant, care, water, garden, tracker, reminder, species, photo, grow, health, planta",Organic Biophilic + Soft UI Evolution,"Claymorphism, Flat Design",Storytelling-Driven + Social Proof,N/A - Plant collection focused,Nature greens + earth brown + sunny yellow reminder + water blue,Plant database with care guides. Watering reminders. Growth photo timeline. AI health diagnosis. Collection sharing.
-135,Book & Reading Tracker,"book, reading, tracker, goodreads, library, shelf, progress, review, notes, goal, literature",Swiss Modernism 2.0 + Minimalism,"E-Ink Paper, Soft UI Evolution",Social Proof-Focused + Feature-Rich,N/A - Library focused,Warm paper white + ink brown + reading progress green + book cover colors,Barcode scan to add. Progress percentage. Annual reading goal. Notes and quotes. Friends activity. Genre stats.
-136,Couple & Relationship App,"couple, relationship, partner, love, date, anniversary, memory, shared, intimate, between",Aurora UI + Soft UI Evolution,"Claymorphism, Glassmorphism",Storytelling-Driven + Social Proof,N/A - Couple focused,Warm romantic pink/rose + soft gradient + memory photo tones,Shared timeline. Anniversary countdowns. Secret chat. Photo albums. Love language quiz. Date night ideas.
-137,Family Calendar & Chores,"family, calendar, chores, tasks, household, shared, kids, schedule, cozi, organize, member",Flat Design + Claymorphism,"Accessible & Ethical, Vibrant & Block-based",Feature-Rich Showcase + Social Proof,N/A - Family hub focused,Warm playful + member color coding + chore completion green,Member color coding. Chore assignment rotation. Recurring events. Shared shopping list. Allowance tracking.
-138,Mood Tracker,"mood, emotion, feeling, mental, daily, journal, wellbeing, check-in, log, track, daylio",Soft UI Evolution + Minimalism,"Aurora UI, Neumorphism",Storytelling-Driven + Social Proof,N/A - Mood chart focused,Emotion gradient (blue sad to yellow happy) + pastel per mood + insight accent,One-tap daily check-in. Emotion wheel selector. Mood calendar heatmap. Pattern insights. Export and share.
-139,Gift & Wishlist,"gift, wishlist, present, birthday, occasion, registry, idea, shop, list, share, surprise",Vibrant & Block-based + Soft UI Evolution,"Claymorphism, Flat Design",Minimal & Direct + Conversion,N/A - List focused,Celebration warm pink/gold/red + category colors + surprise accent,Add from any URL. Price range filter. Reserved-by-others system. Occasion calendar. Collaborative list. Surprise mode.
-140,Running & Cycling GPS,"running, cycling, gps, strava, track, route, speed, distance, cadence, pace, workout, sport",Dark Mode (OLED) + Vibrant & Block-based,"Motion-Driven, Glassmorphism",Feature-Rich Showcase + Social Proof,Performance Analytics,Energetic orange + map accent + pace zones (green/yellow/red),Live GPS tracking. Route map. Auto-pause detection. Segment leaderboards. Training zones. Social feed. Garmin sync.
-141,Yoga & Stretching Guide,"yoga, stretch, flexibility, pose, asana, guided, session, calm, routine, wellness, down-dog",Organic Biophilic + Soft UI Evolution,"Neumorphism, Minimalism",Storytelling-Driven + Social Proof,N/A - Session focused,Earth calming sage/terracotta/cream + breathing gradient + warm accent,Pose library with illustrations. Guided sessions with audio. Breathing exercises. Progress calendar. Beginner to advanced.
-142,Sleep Tracker,"sleep, tracker, alarm, cycle, quality, snore, analysis, rem, deep, smart, wake, insomnia",Dark Mode (OLED) + Neumorphism,"Glassmorphism, Minimalism",Feature-Rich Showcase + Social Proof,Healthcare Analytics,Deep midnight blue + stars/moon accent + sleep quality gradient (poor red to great green),Sleep cycle detection. Smart alarm wakes at light sleep. Snore detection. Weekly trends. Apple Health integration.
-143,Calorie & Nutrition Counter,"calorie, nutrition, food, diet, macro, protein, carb, fat, log, fitness, myfitnesspal",Flat Design + Vibrant & Block-based,"Minimalism, Claymorphism",Feature-Rich Showcase + Social Proof,Healthcare Analytics,"Healthy green + macro colors (protein blue, carb orange, fat yellow) + progress circle",Barcode scanner food log. Large database. Macro goals. Restaurant lookup. Recipe builder. AI photo food logging.
-144,Period & Cycle Tracker,"period, cycle, menstrual, fertility, ovulation, pms, log, women, health, flo, clue, hormone",Soft UI Evolution + Aurora UI,"Accessible & Ethical, Claymorphism",Social Proof-Focused + Trust,Healthcare Analytics,Rose/blush + lavender + fertility green + soft calendar tones,Cycle prediction. Symptom logging. Fertility window. Personalized insights. Privacy-first. Partner sharing option.
-145,Medication & Pill Reminder,"medication, pill, reminder, dose, schedule, prescription, drug, health, medisafe, refill",Accessible & Ethical + Flat Design,"Minimalism, Trust & Authority",Trust & Authority + Feature-Rich,N/A - Schedule focused,Medical trust blue + missed alert red + taken green + clean white,Multi-medication schedule. Caregiver sharing. Refill reminders. Drug interaction warnings. Large touch targets.
-146,Water & Hydration Reminder,"water, hydration, drink, reminder, daily, tracker, glasses, intake, health, cup, aqua",Claymorphism + Vibrant & Block-based,"Flat Design, Micro-interactions",Minimal & Direct + Demo,N/A - Daily goal focused,Refreshing blue + water wave animation + goal progress accent,Tap to log quickly. Animated fill visualization. Custom reminders. Goal by weight/weather. Streak system. Widget.
-147,Fasting & Intermittent Timer,"fasting, intermittent, 16:8, timer, fast, eating, window, keto, diet, zero, weight, protocol",Minimalism + Dark Mode (OLED),"Neumorphism, Flat Design",Feature-Rich Showcase + Social Proof,N/A - Timer focused,Fasting deep blue/purple + eating window green + timeline neutral,"Protocol selector (16:8, 18:6, OMAD). Circular countdown timer. Fasting history log. Tips during fast. Electrolytes."
-148,Anonymous Community / Confession,"anonymous, community, confess, whisper, secret, vent, share, safe, private, social, yikyak",Dark Mode (OLED) + Minimalism,"Glassmorphism, Soft UI Evolution",Social Proof-Focused + Feature-Rich,User Behavior Analytics,Dark protective + subtle gradient + upvote green + empathy warm accent,Anonymous posting with moderation. Safety reporting. Reaction system. Trending topics. Mental health resources link.
-149,Local Events & Discovery,"local, events, discovery, meetup, nearby, social, city, activities, calendar, community, explore",Vibrant & Block-based + Motion-Driven,"Glassmorphism, Flat Design",Hero-Centric Design + Feature-Rich,Event Analytics,City vibrant + event category colors + map accent + date highlight,Location-based discovery. Category filters. RSVP flow. Map view. Friend attendance. Organizer tools. Reminders.
-150,Study Together / Virtual Coworking,"study, focus, cowork, pomodoro, virtual, together, session, accountability, live, stream, room",Minimalism + Soft UI Evolution,"Flat Design, Dark Mode (OLED)",Social Proof-Focused + Feature-Rich,User Behavior Analytics,Calm focus blue + session progress indicator + ambient warm neutrals,Live study rooms with video/avatar presence. Shared focus timer. Ambient music. Goals sharing. Streak accountability.
-151,Coding Challenge & Practice,"coding, leetcode, challenge, algorithm, practice, programming, competitive, skill, interview, problem",Dark Mode (OLED) + Cyberpunk UI,"Minimalism, Flat Design",Feature-Rich Showcase + Social Proof,Student Analytics,Code editor dark + success green + difficulty gradient (easy green / medium amber / hard red),Code editor with syntax highlight. Multiple languages. Hint system. Solution explanation. Company tags. Contest mode.
-152,Kids Learning (ABC & Math),"kids, children, learning, abc, math, phonics, numbers, education, games, preschool, early",Claymorphism + Vibrant & Block-based,"Micro-interactions, Flat Design",Social Proof-Focused + Trust,Parent Dashboard,Bright primary + child-safe pastels + reward gold + interactive accent,Age-appropriate UI for 2-8. No ads. No dark patterns. Curriculum aligned. Parent progress reports. Reward system.
-153,Music Instrument Learning,"music, instrument, piano, guitar, learn, lesson, tutorial, notes, play, chord, practice, simply",Vibrant & Block-based + Motion-Driven,"Dark Mode (OLED), Soft UI Evolution",Interactive Product Demo + Social Proof,Learning Analytics,Musical warm deep red/brown + note color system + skill progress bar,Interactive instrument on-screen. Sheet music display. Song library. Slow-tempo practice. Recording and playback. Teacher mode.
-154,Parking Finder,"parking, spot, finder, map, pay, meter, garage, location, car, reserve, spothero",Minimalism + Glassmorphism,"Flat Design, Micro-interactions",Conversion-Optimized + Feature-Rich,Real-Time Monitoring + Map,Trust blue + available green + occupied red + map neutral,Real-time availability. In-app navigation. Payment integration. Parking timer alert. Favorite spots. Street vs garage.
-155,Public Transit Guide,"transit, bus, metro, subway, train, route, schedule, map, city, commute, trip, citymapper",Flat Design + Accessible & Ethical,"Minimalism, Motion-Driven",Feature-Rich Showcase + Interactive Demo,Real-Time Monitoring + Map,Transit brand line colors + real-time indicator green/red + map neutral,Real-time arrivals. Offline maps. Disruption alerts. Multi-modal routing. Fare calculation. Accessibility features.
-156,Road Trip Planner,"road, trip, drive, route, planner, travel, stop, map, adventure, scenic, car, wanderlog",Aurora UI + Organic Biophilic,"Motion-Driven, Vibrant & Block-based",Storytelling-Driven + Hero-Centric,N/A - Trip focused,Adventure warm sunset orange + map teal + stop markers + road neutral,Route planning with stops. Point-of-interest discovery. Gas/food/hotel along route. Offline maps. Trip sharing.
-157,VPN & Privacy Tool,"vpn, privacy, secure, anonymous, encrypt, proxy, ip, protect, shield, network, nordvpn",Minimalism + Dark Mode (OLED),"Cyberpunk UI, Trust & Authority",Trust & Authority + Conversion-Optimized,N/A - Connection focused,Dark shield blue + connected green + disconnected red + trust accent,One-tap connect. Server selection by country. No-log policy prominent. Speed indicator. Kill switch. Protocol choice.
-158,Emergency SOS & Safety,"emergency, sos, safety, alert, location, help, danger, crisis, first-aid, guard, bsafe",Accessible & Ethical + Flat Design,"Dark Mode (OLED), Minimalism",Trust & Authority + Social Proof,N/A - Safety focused,Alert red + safety blue + location green + high contrast critical,One-tap SOS. Emergency contacts auto-notify. Live location sharing. Fake call feature. Safe walk mode. Local emergency numbers.
-159,Wallpaper & Theme App,"wallpaper, theme, background, customize, aesthetic, home-screen, lock-screen, widget, design, zedge",Vibrant & Block-based + Aurora UI,"Glassmorphism, Motion-Driven",Feature-Rich Showcase + Social Proof,N/A - Gallery focused,Content-driven + trending aesthetic palettes + download accent,Category browsing. Preview on device. Daily wallpaper auto-set. Widget matching. Creator uploads. Resolution auto-fit.
-160,White Noise & Ambient Sound,"white noise, ambient, sound, sleep, focus, rain, nature, relax, concentration, background, noisli",Minimalism + Dark Mode (OLED),"Neumorphism, Organic Biophilic",Minimal & Direct + Social Proof,N/A - Player focused,Calming dark + ambient texture visual + subtle sound wave + sleep blue,Sound mixer with multiple simultaneous layers. Sleep timer with fade. Custom soundscapes. Offline. Background audio.
-161,Home Decoration & Interior Design,"home, interior, decor, design, furniture, room, renovation, ar, plan, inspire, 3d, houzz",Minimalism + 3D Product Preview,"Organic Biophilic, Aurora UI",Storytelling-Driven + Feature-Rich,N/A - Project focused,Neutral interior palette + material texture accent + AR blue,AR room visualization. Style quiz. Product catalog with purchase links. 3D room planner. Mood board. Before/after.
diff --git a/.agents/skills/ui-ux-pro-max/data/react-performance.csv b/.agents/skills/ui-ux-pro-max/data/react-performance.csv
deleted file mode 100644
index 671465f..0000000
--- a/.agents/skills/ui-ux-pro-max/data/react-performance.csv
+++ /dev/null
@@ -1,45 +0,0 @@
-No,Category,Issue,Keywords,Platform,Description,Do,Don't,Code Example Good,Code Example Bad,Severity
-1,Async Waterfall,Defer Await,async await defer branch,React/Next.js,Move await into branches where actually used to avoid blocking unused code paths,Move await operations into branches where they're needed,Await at top of function blocking all branches,"if (skip) return { skipped: true }; const data = await fetch()","const data = await fetch(); if (skip) return { skipped: true }",Critical
-2,Async Waterfall,Promise.all Parallel,promise all parallel concurrent,React/Next.js,Execute independent async operations concurrently using Promise.all(),Use Promise.all() for independent operations,Sequential await for independent operations,"const [user, posts] = await Promise.all([fetchUser(), fetchPosts()])","const user = await fetchUser(); const posts = await fetchPosts()",Critical
-3,Async Waterfall,Dependency Parallelization,better-all dependency parallel,React/Next.js,Use better-all for operations with partial dependencies to maximize parallelism,Use better-all to start each task at earliest possible moment,Wait for unrelated data before starting dependent fetch,"await all({ user() {}, config() {}, profile() { return fetch((await this.$.user).id) } })","const [user, config] = await Promise.all([...]); const profile = await fetchProfile(user.id)",Critical
-4,Async Waterfall,API Route Optimization,api route waterfall promise,React/Next.js,In API routes start independent operations immediately even if not awaited yet,Start promises early and await late,Sequential awaits in API handlers,"const sessionP = auth(); const configP = fetchConfig(); const session = await sessionP","const session = await auth(); const config = await fetchConfig()",Critical
-5,Async Waterfall,Suspense Boundaries,suspense streaming boundary,React/Next.js,Use Suspense to show wrapper UI faster while data loads,Wrap async components in Suspense boundaries,Await data blocking entire page render,"}>","const data = await fetchData(); return ",High
-6,Bundle Size,Barrel Imports,barrel import direct path,React/Next.js,Import directly from source files instead of barrel files to avoid loading unused modules,Import directly from source path,Import from barrel/index files,"import Check from 'lucide-react/dist/esm/icons/check'","import { Check } from 'lucide-react'",Critical
-7,Bundle Size,Dynamic Imports,dynamic import lazy next,React/Next.js,Use next/dynamic to lazy-load large components not needed on initial render,Use dynamic() for heavy components,Import heavy components at top level,"const Monaco = dynamic(() => import('./monaco'), { ssr: false })","import { MonacoEditor } from './monaco-editor'",Critical
-8,Bundle Size,Defer Third Party,analytics defer third-party,React/Next.js,Load analytics and logging after hydration since they don't block interaction,Load non-critical scripts after hydration,Include analytics in main bundle,"const Analytics = dynamic(() => import('@vercel/analytics'), { ssr: false })","import { Analytics } from '@vercel/analytics/react'",Medium
-9,Bundle Size,Conditional Loading,conditional module lazy,React/Next.js,Load large data or modules only when a feature is activated,Dynamic import when feature enabled,Import large modules unconditionally,"useEffect(() => { if (enabled) import('./heavy.js') }, [enabled])","import { heavyData } from './heavy.js'",High
-10,Bundle Size,Preload Intent,preload hover focus intent,React/Next.js,Preload heavy bundles on hover/focus before they're needed,Preload on user intent signals,Load only on click,"onMouseEnter={() => import('./editor')}","onClick={() => import('./editor')}",Medium
-11,Server,React.cache Dedup,react cache deduplicate request,React/Next.js,Use React.cache() for server-side request deduplication within single request,Wrap data fetchers with cache(),Fetch same data multiple times in tree,"export const getUser = cache(async () => await db.user.find())","export async function getUser() { return await db.user.find() }",Medium
-12,Server,LRU Cache Cross-Request,lru cache cross request,React/Next.js,Use LRU cache for data shared across sequential requests,Use LRU for cross-request caching,Refetch same data on every request,"const cache = new LRUCache({ max: 1000, ttl: 5*60*1000 })","Always fetch from database",High
-13,Server,Minimize Serialization,serialization rsc boundary,React/Next.js,Only pass fields that client actually uses across RSC boundaries,Pass only needed fields to client components,Pass entire objects to client,""," // 50 fields serialized",High
-14,Server,Parallel Fetching,parallel fetch component composition,React/Next.js,Restructure components to parallelize data fetching in RSC,Use component composition for parallel fetches,Sequential fetches in parent component," // both fetch in parallel","const header = await fetchHeader(); return <>
{header}
>",Critical
-15,Server,After Non-blocking,after non-blocking logging,React/Next.js,Use Next.js after() to schedule work after response is sent,Use after() for logging/analytics,Block response for non-critical operations,"after(async () => { await logAction() }); return Response.json(data)","await logAction(); return Response.json(data)",Medium
-16,Client,SWR Deduplication,swr dedup cache revalidate,React/Next.js,Use SWR for automatic request deduplication and caching,Use useSWR for client data fetching,Manual fetch in useEffect,"const { data } = useSWR('/api/users', fetcher)","useEffect(() => { fetch('/api/users').then(setUsers) }, [])",Medium-High
-17,Client,Event Listener Dedup,event listener deduplicate global,React/Next.js,Share global event listeners across component instances,Use useSWRSubscription for shared listeners,Register listener per component instance,"useSWRSubscription('global-keydown', () => { window.addEventListener... })","useEffect(() => { window.addEventListener('keydown', handler) }, [])",Low
-18,Rerender,Defer State Reads,state read callback subscription,React/Next.js,Don't subscribe to state only used in callbacks,Read state on-demand in callbacks,Subscribe to state used only in handlers,"const handleClick = () => { const params = new URLSearchParams(location.search) }","const params = useSearchParams(); const handleClick = () => { params.get('ref') }",Medium
-19,Rerender,Memoized Components,memo extract expensive,React/Next.js,Extract expensive work into memoized components for early returns,Extract to memo() components,Compute expensive values before early return,"const UserAvatar = memo(({ user }) => ...); if (loading) return ","const avatar = useMemo(() => compute(user)); if (loading) return ",Medium
-20,Rerender,Narrow Dependencies,effect dependency primitive,React/Next.js,Specify primitive dependencies instead of objects in effects,Use primitive values in dependency arrays,Use object references as dependencies,"useEffect(() => { console.log(user.id) }, [user.id])","useEffect(() => { console.log(user.id) }, [user])",Low
-21,Rerender,Derived State,derived boolean subscription,React/Next.js,Subscribe to derived booleans instead of continuous values,Use derived boolean state,Subscribe to continuous values,"const isMobile = useMediaQuery('(max-width: 767px)')","const width = useWindowWidth(); const isMobile = width < 768",Medium
-22,Rerender,Functional setState,functional setstate callback,React/Next.js,Use functional setState updates for stable callbacks and no stale closures,Use functional form: setState(curr => ...),Reference state directly in setState,"setItems(curr => [...curr, newItem])","setItems([...items, newItem]) // items in deps",Medium
-23,Rerender,Lazy State Init,usestate lazy initialization,React/Next.js,Pass function to useState for expensive initial values,Use function form for expensive init,Compute expensive value directly,"useState(() => buildSearchIndex(items))","useState(buildSearchIndex(items)) // runs every render",Medium
-24,Rerender,Transitions,starttransition non-urgent,React/Next.js,Mark frequent non-urgent state updates as transitions,Use startTransition for non-urgent updates,Block UI on every state change,"startTransition(() => setScrollY(window.scrollY))","setScrollY(window.scrollY) // blocks on every scroll",Medium
-25,Rendering,SVG Animation Wrapper,svg animation wrapper div,React/Next.js,Wrap SVG in div and animate wrapper for hardware acceleration,Animate div wrapper around SVG,Animate SVG element directly,"","",Low
-26,Rendering,Content Visibility,content-visibility auto,React/Next.js,Apply content-visibility: auto to defer off-screen rendering,Use content-visibility for long lists,Render all list items immediately,".item { content-visibility: auto; contain-intrinsic-size: 0 80px }","Render 1000 items without optimization",High
-27,Rendering,Hoist Static JSX,hoist static jsx element,React/Next.js,Extract static JSX outside components to avoid re-creation,Hoist static elements to module scope,Create static elements inside components,"const skeleton = ; function C() { return skeleton }","function C() { return }",Low
-28,Rendering,Hydration No Flicker,hydration mismatch flicker,React/Next.js,Use inline script to set client-only data before hydration,Inject sync script for client-only values,Use useEffect causing flash,"","useEffect(() => setTheme(localStorage.theme), []) // flickers",Medium
-29,Rendering,Conditional Render,conditional render ternary,React/Next.js,Use ternary instead of && when condition can be 0 or NaN,Use explicit ternary for conditionals,Use && with potentially falsy numbers,"{count > 0 ? {count} : null}","{count && {count}} // renders '0'",Low
-30,Rendering,Activity Component,activity show hide preserve,React/Next.js,Use Activity component to preserve state/DOM for toggled components,Use Activity for expensive toggle components,Unmount/remount on visibility toggle,"","{isOpen && } // loses state",Medium
-31,JS Perf,Batch DOM CSS,batch dom css reflow,React/Next.js,Group CSS changes via classes or cssText to minimize reflows,Use class toggle or cssText,Change styles one property at a time,"element.classList.add('highlighted')","el.style.width='100px'; el.style.height='200px'",Medium
-32,JS Perf,Index Map Lookup,map index lookup find,React/Next.js,Build Map for repeated lookups instead of multiple .find() calls,Build index Map for O(1) lookups,Use .find() in loops,"const byId = new Map(users.map(u => [u.id, u])); byId.get(id)","users.find(u => u.id === order.userId) // O(n) each time",Low-Medium
-33,JS Perf,Cache Property Access,cache property loop,React/Next.js,Cache object property lookups in hot paths,Cache values before loops,Access nested properties in loops,"const val = obj.config.settings.value; for (...) process(val)","for (...) process(obj.config.settings.value)",Low-Medium
-34,JS Perf,Cache Function Results,memoize cache function,React/Next.js,Use module-level Map to cache repeated function results,Use Map cache for repeated calls,Recompute same values repeatedly,"const cache = new Map(); if (cache.has(x)) return cache.get(x)","slugify(name) // called 100 times same input",Medium
-35,JS Perf,Cache Storage API,localstorage cache read,React/Next.js,Cache localStorage/sessionStorage reads in memory,Cache storage reads in Map,Read storage on every call,"if (!cache.has(key)) cache.set(key, localStorage.getItem(key))","localStorage.getItem('theme') // every call",Low-Medium
-36,JS Perf,Combine Iterations,combine filter map loop,React/Next.js,Combine multiple filter/map into single loop,Single loop for multiple categorizations,Chain multiple filter() calls,"for (u of users) { if (u.isAdmin) admins.push(u); if (u.isTester) testers.push(u) }","users.filter(admin); users.filter(tester); users.filter(inactive)",Low-Medium
-37,JS Perf,Length Check First,length check array compare,React/Next.js,Check array lengths before expensive comparisons,Early return if lengths differ,Always run expensive comparison,"if (a.length !== b.length) return true; // then compare","a.sort().join() !== b.sort().join() // even when lengths differ",Medium-High
-38,JS Perf,Early Return,early return exit function,React/Next.js,Return early when result is determined to skip processing,Return immediately on first error,Process all items then check errors,"for (u of users) { if (!u.email) return { error: 'Email required' } }","let hasError; for (...) { if (!email) hasError=true }; if (hasError)...",Low-Medium
-39,JS Perf,Hoist RegExp,regexp hoist module,React/Next.js,Don't create RegExp inside render - hoist or memoize,Hoist RegExp to module scope,Create RegExp every render,"const EMAIL_RE = /^[^@]+@[^@]+$/; function validate() { EMAIL_RE.test(x) }","function C() { const re = new RegExp(pattern); re.test(x) }",Low-Medium
-40,JS Perf,Loop Min Max,loop min max sort,React/Next.js,Use loop for min/max instead of sort - O(n) vs O(n log n),Single pass loop for min/max,Sort array to find min/max,"let max = arr[0]; for (x of arr) if (x > max) max = x","arr.sort((a,b) => b-a)[0] // O(n log n)",Low
-41,JS Perf,Set Map Lookups,set map includes has,React/Next.js,Use Set/Map for O(1) lookups instead of array.includes(),Convert to Set for membership checks,Use .includes() for repeated checks,"const allowed = new Set(['a','b']); allowed.has(id)","const allowed = ['a','b']; allowed.includes(id)",Low-Medium
-42,JS Perf,toSorted Immutable,tosorted sort immutable,React/Next.js,Use toSorted() instead of sort() to avoid mutating arrays,Use toSorted() for immutability,Mutate arrays with sort(),"users.toSorted((a,b) => a.name.localeCompare(b.name))","users.sort((a,b) => a.name.localeCompare(b.name)) // mutates",Medium-High
-43,Advanced,Event Handler Refs,useeffectevent ref handler,React/Next.js,Store callbacks in refs for stable effect subscriptions,Use useEffectEvent for stable handlers,Re-subscribe on every callback change,"const onEvent = useEffectEvent(handler); useEffect(() => { listen(onEvent) }, [])","useEffect(() => { listen(handler) }, [handler]) // re-subscribes",Low
-44,Advanced,useLatest Hook,uselatest ref callback,React/Next.js,Access latest values in callbacks without adding to dependency arrays,Use useLatest for fresh values in stable callbacks,Add callback to effect dependencies,"const cbRef = useLatest(cb); useEffect(() => { setTimeout(() => cbRef.current()) }, [])","useEffect(() => { setTimeout(() => cb()) }, [cb]) // re-runs",Low
diff --git a/.agents/skills/ui-ux-pro-max/data/stacks/angular.csv b/.agents/skills/ui-ux-pro-max/data/stacks/angular.csv
deleted file mode 100644
index 75cb670..0000000
--- a/.agents/skills/ui-ux-pro-max/data/stacks/angular.csv
+++ /dev/null
@@ -1,51 +0,0 @@
-No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
-1,Components,Use standalone components,Angular 17+ default; no NgModule needed,Standalone components for all new code,NgModule-based components for new projects,"@Component({ standalone: true imports: [CommonModule] })","@NgModule({ declarations: [MyComp] })",High,https://angular.dev/guide/components/importing
-2,Components,Use signals for state,Signals are Angular's reactive primitive for fine-grained reactivity,Signals for component state over class properties,Mutable class properties without signals,"count = signal(0); increment() { this.count.update(v => v + 1) }","count = 0; increment() { this.count++ }",High,https://angular.dev/guide/signals
-3,Components,Use @if/@for/@switch control flow,Built-in control flow syntax replaces *ngIf/*ngFor directives,@if and @for in templates,*ngIf and *ngFor structural directives,"@if (isLoggedIn) { } @else { }","
",High,https://angular.dev/guide/templates/control-flow
-4,Components,Use input() and output() signals,Signal-based inputs/outputs replace @Input()/@Output() decorators,input() and output() for component API,@Input() and @Output() decorators,"name = input(); clicked = output()","@Input() name: string; @Output() clicked = new EventEmitter()",High,https://angular.dev/guide/components/inputs
-5,Components,Use content projection,ng-content for flexible component composition,ng-content with select for named slots,Rigid templates that can't be customized,"","
{{ title }}
",Medium,https://angular.dev/guide/components/content-projection
-6,Components,Keep components small,Single responsibility; components should do one thing,Extract sub-components when template exceeds 50 lines,Monolithic components handling multiple concerns,"",One 300-line component template,Medium,https://angular.dev/guide/components
-7,Components,Use OnPush change detection,Reduces re-renders by only checking on input changes or signal updates,OnPush for all components,Default change detection strategy,"changeDetection: ChangeDetectionStrategy.OnPush","changeDetection: ChangeDetectionStrategy.Default",High,https://angular.dev/guide/components/lifecycle
-8,Components,Avoid direct DOM manipulation,Use renderer or ElementRef sparingly; prefer template bindings,Template bindings and Angular directives,Direct document.querySelector or innerHTML,"[class.active]=""isActive""","this.el.nativeElement.classList.add('active')",High,https://angular.dev/guide/components/host-elements
-9,Routing,Lazy load feature routes,Load route chunks on demand to reduce initial bundle,loadComponent() for all feature routes,Eager-loaded routes in app config,"{ path: 'admin' loadComponent: () => import('./admin/admin.component') }","{ path: 'admin' component: AdminComponent }",High,https://angular.dev/guide/routing/lazy-loading
-10,Routing,Use route guards with functional API,Protect routes with canActivate/canMatch functional guards,Functional guards returning boolean or UrlTree,Class-based guards with CanActivate interface,"canActivate: [() => inject(AuthService).isLoggedIn()]","canActivate: [AuthGuard]",High,https://angular.dev/guide/routing/common-router-tasks#preventing-unauthorized-access
-11,Routing,Use route resolvers for data,Pre-fetch data before route activation using resolve,ResolveFn for route data,Fetching data in ngOnInit causing flash of empty state,"resolve: { user: () => inject(UserService).getUser() }",Fetch in ngOnInit with loading state flickering,Medium,https://angular.dev/guide/routing/common-router-tasks#resolve
-12,Routing,Type route params with inject,Use inject(ActivatedRoute) with signals or toSignal,Typed route params via ActivatedRoute,Untyped route.snapshot.params string access,"const id = toSignal(route.paramMap.pipe(map(p => p.get('id'))))","const id = this.route.snapshot.params['id']",Medium,https://angular.dev/api/router/ActivatedRoute
-13,Routing,Use nested routes for layouts,Compose shared layouts using router-outlet nesting,Nested routes with shared layout components,Duplicating layout code across routes,"{ path: 'app' component: ShellComponent children: [...] }",Duplicate header/sidebar in each route component,Medium,https://angular.dev/guide/routing/router-tutorial-toh#child-route-configuration
-14,Routing,Configure preloading strategies,Preload lazy modules in background after initial load,PreloadAllModules or custom strategy,No preloading causing delayed navigation,"provideRouter(routes withPreloading(PreloadAllModules))","provideRouter(routes)",Low,https://angular.dev/api/router/PreloadAllModules
-15,State,Use signals for local state,Signals provide synchronous reactive state without RxJS overhead,signal() for component-local reactive state,BehaviorSubject for simple local state,"const items = signal([]); addItem(i: Item) { this.items.update(arr => [...arr i]) }","items$ = new BehaviorSubject([])",High,https://angular.dev/guide/signals
-16,State,Use computed() for derived state,Lazily evaluated derived values that update when dependencies change,computed() for values derived from other signals,Duplicated state or manual sync,"readonly total = computed(() => this.items().reduce((s i) => s + i.price 0))","this.total = this.items.reduce(...) // called manually",High,https://angular.dev/guide/signals#computed-signals
-17,State,Use effect() carefully,Effects run side effects when signals change; avoid overuse,effect() for side effects like logging or localStorage sync,effect() for deriving state (use computed instead),"effect(() => localStorage.setItem('cart' JSON.stringify(this.cart())))","effect(() => { this.total.set(this.items().length) })",Medium,https://angular.dev/guide/signals#effects
-18,State,Use NgRx Signal Store for complex state,NgRx Signal Store is the modern lightweight state management for Angular,@ngrx/signals SignalStore for feature state,Full NgRx reducer/action/effect boilerplate for simple state,"const Store = signalStore(withState({ count: 0 }) withMethods(s => ({ increment: () => patchState(s { count: s.count() + 1 }) })))","createReducer(on(increment state => ({ ...state count: state.count + 1 })))",Medium,https://ngrx.io/guide/signals
-19,State,Inject services for shared state,Services with signals share state across components without a store,Injectable service with signals for cross-component state,Prop drilling or @Input chains for shared state,"@Injectable({ providedIn: 'root' }) class CartService { items = signal([]) }","@Input() cartItems passed through 4 component levels",Medium,https://angular.dev/guide/di/creating-injectable-service
-20,State,Avoid mixing RxJS and signals unnecessarily,Use toSignal() to bridge RxJS into signal world at the boundary,toSignal() to convert observable to signal at component edge,Subscribing in components and storing in signal manually,"readonly user = toSignal(this.userService.user$)","this.userService.user$.subscribe(u => this.user.set(u))",Medium,https://angular.dev/guide/rxjs-interop
-21,Forms,Use typed reactive forms,FormGroup/FormControl with explicit generics for compile-time safety,FormBuilder with typed controls,Untyped FormControl or any casts,"fb.group({ email: fb.control('') password: fb.control('') })","new FormGroup({ email: new FormControl(null) })",High,https://angular.dev/guide/forms/typed-forms
-22,Forms,Use reactive forms over template-driven,Reactive forms scale better and are fully testable,ReactiveFormsModule for all non-trivial forms,FormsModule with ngModel for complex forms,"","",Medium,https://angular.dev/guide/forms/reactive-forms
-23,Forms,Write custom validators as functions,Functional validators are composable and tree-shakeable,ValidatorFn functions for custom validation,Class-based validators implementing Validator interface,"const noSpaces: ValidatorFn = ctrl => ctrl.value?.includes(' ') ? { noSpaces: true } : null","class NoSpacesValidator implements Validator { validate(c) {} }",Medium,https://angular.dev/guide/forms/form-validation#custom-validators
-24,Forms,Use updateOn for performance,Control when validation runs to avoid per-keystroke validation overhead,updateOn: 'blur' or 'submit' for expensive validators,Default updateOn: 'change' for async validators,"fb.control('' { updateOn: 'blur' validators: [Validators.email] })","fb.control('' [Validators.email]) // validates on every key",Low,https://angular.dev/api/forms/AbstractControl#updateOn
-25,Forms,Use FormArray for dynamic fields,FormArray manages variable-length lists of controls,FormArray for add/remove field scenarios,Manually tracking index-based controls,"get items(): FormArray { return this.form.get('items') as FormArray }","items: [FormControl] managed outside form",Medium,https://angular.dev/guide/forms/reactive-forms#using-the-formarray-class
-26,Forms,Display validation errors clearly,Use form control touched and dirty states to show errors at the right time,Show errors after field is touched,Show all errors on page load,"@if (email.invalid && email.touched) { Invalid email }","@if (email.invalid) { Invalid email }",Medium,https://angular.dev/guide/forms/form-validation
-27,Performance,Apply OnPush to all components,OnPush + signals eliminates most unnecessary change detection cycles,OnPush change detection everywhere,Default strategy which checks entire tree on every event,changeDetection: ChangeDetectionStrategy.OnPush,changeDetection: ChangeDetectionStrategy.Default,High,https://angular.dev/best-practices/skipping-component-subtrees
-28,Performance,Use trackBy in @for blocks,Stable identity for list items prevents full DOM re-creation on change,track item.id in @for,"@for (item of items; track item.id) {
{{ item.name }}
}","@for (item of items; track $index) {
{{ item.name }}
}",High,https://angular.dev/guide/templates/control-flow#track-and-identity
-29,Performance,Use @defer for below-the-fold content,Defer blocks lazy-load components when they enter the viewport,@defer with on viewport for non-critical UI,Eagerly loading all components at startup,"@defer (on viewport) { } @placeholder { }"," loaded at startup",High,https://angular.dev/guide/defer
-30,Performance,Use NgOptimizedImage,Enforces image best practices: lazy loading LCP hints and proper sizing,NgOptimizedImage for all img tags,Plain img tags for CMS or user content,"","",High,https://angular.dev/guide/image-optimization
-31,Performance,Tree-shake unused Angular features,Import only what you use from Angular packages,Import specific Angular modules needed,Import BrowserAnimationsModule when not using animations,"import { NgOptimizedImage } from '@angular/common'","import { CommonModule } from '@angular/common' // entire module",Medium,https://angular.dev/tools/cli/build
-32,Performance,Avoid subscribe in components,Subscriptions leak and cause bugs; prefer async pipe or toSignal,toSignal() or async pipe instead of manual subscribe,Manual subscribe without unsubscribe in ngOnDestroy,"readonly data = toSignal(this.service.data$)","this.service.data$.subscribe(d => this.data = d)",High,https://angular.dev/guide/rxjs-interop
-33,Performance,Use SSR with Angular Universal,Pre-render pages for faster LCP and better SEO,SSR or SSG for public-facing routes,Pure CSR for SEO-critical pages,"ng add @angular/ssr","// no SSR, client renders empty shell",Medium,https://angular.dev/guide/ssr
-34,Performance,Minimize bundle with standalone APIs,Standalone components + provideRouter() eliminate dead NgModule code,provideRouter() and provideHttpClient() in app.config,Root AppModule with all imports,provideRouter(routes) in app.config.ts,"@NgModule({ imports: [RouterModule.forRoot(routes)] })",Medium,https://angular.dev/guide/routing/standalone
-35,Testing,Use TestBed for component tests,TestBed sets up Angular DI for realistic component testing,TestBed.configureTestingModule for component tests,Instantiate components with new keyword,"TestBed.configureTestingModule({ imports: [MyComponent] })","const comp = new MyComponent()",High,https://angular.dev/guide/testing/components-basics
-36,Testing,Use Angular CDK component harnesses,Harnesses provide a stable testing API that survives template refactors,MatButtonHarness and custom HarnessLoader,Direct native element queries that break on template changes,"const btn = await loader.getHarness(MatButtonHarness)","fixture.debugElement.query(By.css('button'))",Medium,https://material.angular.io/cdk/test-harnesses/overview
-37,Testing,Use Spectator for less boilerplate,Spectator wraps TestBed with a cleaner API reducing test setup noise,Spectator for unit tests,Raw TestBed for every test,"const spectator = createComponentFactory(MyComponent)","TestBed.configureTestingModule({ declarations: [MyComponent] providers: [...] })",Low,https://github.com/ngneat/spectator
-38,Testing,Mock services with jasmine.createSpyObj,Isolate unit tests by providing mock implementations of dependencies,SpyObj or jest.fn() mocks for services,Real HTTP calls in unit tests,"const spy = jasmine.createSpyObj('UserService' ['getUser']); spy.getUser.and.returnValue(of(user))","providers: [UserService] // real service in unit test",High,https://angular.dev/guide/testing/services
-39,Testing,Write integration tests for routes,Test full route navigation including guards and resolvers,RouterTestingHarness for route integration tests,Mock all routing behavior in unit tests,"const harness = await RouterTestingHarness.create(); await harness.navigateByUrl('/home')","// manually calling route guard methods",Medium,https://angular.dev/api/router/testing/RouterTestingHarness
-40,Testing,Test signal-based components,Signals update synchronously; no async flush needed in most cases,Read signal value directly in test assertions,TestBed.tick() or fakeAsync for signal reads,"component.count.set(5); expect(component.double()).toBe(10)","fakeAsync(() => { component.count.set(5); tick(); expect(component.double()).toBe(10) })",Medium,https://angular.dev/guide/testing
-41,Styling,Use ViewEncapsulation.Emulated,Default emulation scopes styles to component preventing global leaks,Emulated or None for intentional global styles,ViewEncapsulation.None for component-specific styles,ViewEncapsulation.Emulated (default),ViewEncapsulation.None on feature components,Medium,https://angular.dev/guide/components/styling#style-scoping
-42,Styling,Use :host selector,Style the component's host element using :host pseudo-class,":host for host element styles",Adding wrapper div just for styling,":host { display: block; padding: 1rem }","
...
+ .wrapper { padding: 1rem }",Medium,https://angular.dev/guide/components/styling#host-element
-43,Styling,Use CSS custom properties for theming,CSS variables work across component boundaries and enable dynamic theming,CSS custom properties for colors and spacing,Hardcoded hex values in component styles,":root { --primary: #6200ee } button { background: var(--primary) }","button { background: #6200ee }",Medium,https://angular.dev/guide/components/styling
-44,Styling,Integrate Tailwind with Angular,Tailwind utilities work alongside Angular's ViewEncapsulation via global stylesheet,Add Tailwind in styles.css and use utility classes in templates,Custom CSS for layout that Tailwind already handles,"
","
/* .my-custom-flex { display: flex } */",Low,https://tailwindcss.com/docs/guides/angular
-45,Styling,Use Angular Material theming tokens,Material 3 uses design tokens for systematic theming,M3 token-based theming for Angular Material,Overriding Angular Material CSS with deep selectors,"@include mat.button-theme($my-theme)","::ng-deep .mat-button { background: red }",Medium,https://material.angular.io/guide/theming
-46,Architecture,Use injection tokens for config,Provide configuration via InjectionToken for testability and flexibility,InjectionToken for environment-specific values,Importing environment.ts directly in services,"const API_URL = new InjectionToken('apiUrl'); provide: [{ provide: API_URL useValue: env.apiUrl }]","constructor(private env: Environment) { this.url = env.apiUrl }",Medium,https://angular.dev/guide/di/dependency-injection-providers#using-an-injectiontoken-object
-47,Architecture,Use HTTP interceptors,Intercept requests for auth headers error handling and logging,Functional interceptors with withInterceptors(),Service-level header management in every request,"withInterceptors([authInterceptor errorInterceptor])","httpClient.get(url { headers: { Authorization: token } }) in every call",High,https://angular.dev/guide/http/interceptors
-48,Architecture,Organize by feature not type,Feature-based folder structure scales better than type-based,Feature folders with collocated component service and routes,Flat folders: all-components/ all-services/,"src/features/checkout/checkout.component.ts checkout.service.ts checkout.routes.ts","src/components/checkout.component.ts src/services/checkout.service.ts",Medium,https://angular.dev/style-guide#folders-by-feature-structure
-49,Architecture,Use environment configurations,Separate environment values for dev staging and prod via Angular build configs,angular.json fileReplacements for env configs,Hardcoded API URLs or feature flags in source,"fileReplacements: [{ replace: environment.ts with: environment.prod.ts }]","const API = 'https://api.example.com' // hardcoded in service",High,https://angular.dev/tools/cli/environments
-50,Architecture,Prefer inject() over constructor DI,inject() function is composable and works in more contexts than constructor injection,inject() for dependency injection,Constructor parameters for new code,"readonly http = inject(HttpClient); readonly router = inject(Router)","constructor(private http: HttpClient private router: Router) {}",Medium,https://angular.dev/api/core/inject
diff --git a/.agents/skills/ui-ux-pro-max/data/stacks/astro.csv b/.agents/skills/ui-ux-pro-max/data/stacks/astro.csv
deleted file mode 100644
index cacba81..0000000
--- a/.agents/skills/ui-ux-pro-max/data/stacks/astro.csv
+++ /dev/null
@@ -1,54 +0,0 @@
-No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
-1,Architecture,Use Islands Architecture,Astro's partial hydration only loads JS for interactive components,Interactive components with client directives,Hydrate entire page like traditional SPA,,Everything as client component,High,https://docs.astro.build/en/concepts/islands/
-2,Architecture,Default to zero JS,Astro ships zero JS by default - add only when needed,Static components without client directive,Add client:load to everything, (static), (unnecessary),High,https://docs.astro.build/en/basics/astro-components/
-3,Architecture,Choose right client directive,Different directives for different hydration timing,client:visible for below-fold client:idle for non-critical,client:load for everything,,,Medium,https://docs.astro.build/en/reference/directives-reference/#client-directives
-4,Architecture,Use content collections,Type-safe content management for blogs docs,Content collections for structured content,Loose markdown files without schema,const posts = await getCollection('blog'),import.meta.glob('./posts/*.md'),High,https://docs.astro.build/en/guides/content-collections/
-5,Architecture,Define collection schemas,Zod schemas for content validation,Schema with required fields and types,No schema validation,"defineCollection({ schema: z.object({...}) })",defineCollection({}),High,https://docs.astro.build/en/guides/content-collections/#defining-a-collection-schema
-6,Routing,Use file-based routing,Create routes by adding .astro files in pages/,pages/ directory for routes,Manual route configuration,src/pages/about.astro,Custom router setup,Medium,https://docs.astro.build/en/basics/astro-pages/
-7,Routing,Dynamic routes with brackets,Use [param] for dynamic routes,Bracket notation for params,Query strings for dynamic content,pages/blog/[slug].astro,pages/blog.astro?slug=x,Medium,https://docs.astro.build/en/guides/routing/#dynamic-routes
-8,Routing,Use getStaticPaths for SSG,Generate static pages at build time,getStaticPaths for known dynamic routes,Fetch at runtime for static content,"export async function getStaticPaths() { return [...] }",No getStaticPaths with dynamic route,High,https://docs.astro.build/en/reference/api-reference/#getstaticpaths
-9,Routing,Enable SSR when needed,Server-side rendering for dynamic content,output: 'server' or 'hybrid' for dynamic,SSR for purely static sites,"export const prerender = false;",SSR for static blog,Medium,https://docs.astro.build/en/guides/server-side-rendering/
-10,Components,Keep .astro for static,Use .astro components for static content,Astro components for layout structure,React/Vue for static markup,,{children},High,
-11,Components,Use framework components for interactivity,React Vue Svelte for complex interactivity,Framework component with client directive,Astro component with inline scripts,,",High,https://nuxt.com/docs/guide/concepts/nuxt-lifecycle
-18,Lifecycle,Use onMounted for DOM access,Access DOM only after component is mounted,onMounted for DOM manipulation,Direct DOM access in setup,"onMounted(() => { document.getElementById('el') })","",High,https://nuxt.com/docs/api/composables/on-mounted
-19,Lifecycle,Use nextTick for post-render access,Wait for DOM updates before accessing elements,await nextTick() after state changes,Immediate DOM access after state change,"count.value++; await nextTick(); el.value.focus()","count.value++; el.value.focus()",Medium,https://nuxt.com/docs/api/utils/next-tick
-20,Lifecycle,Use onPrehydrate for pre-hydration logic,Run code before Nuxt hydrates the page,onPrehydrate for client setup,onMounted for hydration-critical code,"onPrehydrate(() => { console.log(window) })",onMounted for pre-hydration needs,Low,https://nuxt.com/docs/api/composables/on-prehydrate
-21,Server,Use server/api for API routes,Create API endpoints in server/api directory,server/api/users.ts for /api/users,Manual Express setup,server/api/hello.ts -> /api/hello,app.get('/api/hello'),High,https://nuxt.com/docs/guide/directory-structure/server
-22,Server,Use defineEventHandler for handlers,Define server route handlers,defineEventHandler for all handlers,export default function,"export default defineEventHandler((event) => { return { hello: 'world' } })","export default function(req, res) {}",High,https://nuxt.com/docs/guide/directory-structure/server
-23,Server,Use server/routes for non-api routes,Routes without /api prefix,server/routes for custom paths,server/api for non-api routes,server/routes/sitemap.xml.ts,server/api/sitemap.xml.ts,Medium,https://nuxt.com/docs/guide/directory-structure/server
-24,Server,Use getQuery and readBody for input,Access query params and request body,getQuery(event) readBody(event),Direct event access,"const { id } = getQuery(event)",event.node.req.query,Medium,https://nuxt.com/docs/guide/directory-structure/server
-25,Server,Validate server input,Always validate input in server handlers,Zod or similar for validation,Trust client input,"const body = await readBody(event); schema.parse(body)",const body = await readBody(event),High,https://nuxt.com/docs/guide/directory-structure/server
-26,State,Use useState for shared reactive state,SSR-friendly shared state across components,useState for cross-component state,ref for shared state,"const count = useState('count', () => 0)",const count = ref(0) in composable,High,https://nuxt.com/docs/api/composables/use-state
-27,State,Use unique keys for useState,Prevent state conflicts with unique keys,Descriptive unique keys for each state,Generic or duplicate keys,"useState('user-preferences', () => ({}))",useState('data') in multiple places,Medium,https://nuxt.com/docs/api/composables/use-state
-28,State,Use Pinia for complex state,Pinia for advanced state management,@pinia/nuxt for complex apps,Custom state management,useMainStore() with Pinia,Custom reactive store implementation,Medium,https://nuxt.com/docs/getting-started/state-management
-29,State,Use callOnce for one-time async operations,Ensure async operations run only once,callOnce for store initialization,Direct await in component,"await callOnce(store.fetch)",await store.fetch() on every render,Medium,https://nuxt.com/docs/api/utils/call-once
-30,SEO,Use useSeoMeta for SEO tags,Type-safe SEO meta tag management,useSeoMeta for meta tags,useHead for simple meta,"useSeoMeta({ title: 'Home', ogTitle: 'Home', description: '...' })","useHead({ meta: [{ name: 'description', content: '...' }] })",High,https://nuxt.com/docs/api/composables/use-seo-meta
-31,SEO,Use reactive values in useSeoMeta,Dynamic SEO tags with refs or getters,Computed getters for dynamic values,Static values for dynamic content,"useSeoMeta({ title: () => post.value.title })","useSeoMeta({ title: post.value.title })",Medium,https://nuxt.com/docs/api/composables/use-seo-meta
-32,SEO,Use useHead for non-meta head elements,Scripts styles links in head,useHead for scripts and links,useSeoMeta for scripts,"useHead({ script: [{ src: '/analytics.js' }] })","useSeoMeta({ script: '...' })",Medium,https://nuxt.com/docs/api/composables/use-head
-33,SEO,Include OpenGraph tags,Add OG tags for social sharing,ogTitle ogDescription ogImage,Missing social preview,"useSeoMeta({ ogImage: '/og.png', twitterCard: 'summary_large_image' })",No OG configuration,Medium,https://nuxt.com/docs/api/composables/use-seo-meta
-34,Middleware,Use defineNuxtRouteMiddleware,Define route middleware properly,defineNuxtRouteMiddleware wrapper,export default function,"export default defineNuxtRouteMiddleware((to, from) => {})","export default function(to, from) {}",High,https://nuxt.com/docs/guide/directory-structure/middleware
-35,Middleware,Use navigateTo for redirects,Redirect in middleware with navigateTo,return navigateTo('/login'),router.push in middleware,"if (!auth) return navigateTo('/login')","if (!auth) router.push('/login')",High,https://nuxt.com/docs/api/utils/navigate-to
-36,Middleware,Reference middleware in definePageMeta,Apply middleware to specific pages,middleware array in definePageMeta,Global middleware for page-specific,definePageMeta({ middleware: ['auth'] }),Global auth check for one page,Medium,https://nuxt.com/docs/guide/directory-structure/middleware
-37,Middleware,Use .global suffix for global middleware,Apply middleware to all routes,auth.global.ts for app-wide auth,Manual middleware on every page,middleware/auth.global.ts,middleware: ['auth'] on every page,Medium,https://nuxt.com/docs/guide/directory-structure/middleware
-38,ErrorHandling,Use createError for errors,Create errors with proper status codes,createError with statusCode,throw new Error,"throw createError({ statusCode: 404, statusMessage: 'Not Found' })",throw new Error('Not Found'),High,https://nuxt.com/docs/api/utils/create-error
-39,ErrorHandling,Use NuxtErrorBoundary for local errors,Handle errors within component subtree,NuxtErrorBoundary for component errors,Global error page for local errors,"",error.vue for component errors,Medium,https://nuxt.com/docs/getting-started/error-handling
-40,ErrorHandling,Use clearError to recover from errors,Clear error state and optionally redirect,clearError({ redirect: '/' }),Manual error state reset,clearError({ redirect: '/home' }),error.value = null,Medium,https://nuxt.com/docs/api/utils/clear-error
-41,ErrorHandling,Use short statusMessage,Keep statusMessage brief for security,Short generic messages,Detailed error info in statusMessage,"createError({ statusCode: 400, statusMessage: 'Bad Request' })","createError({ statusMessage: 'Invalid user ID: 123' })",High,https://nuxt.com/docs/getting-started/error-handling
-42,Link,Use NuxtLink for internal navigation,Client-side navigation with prefetching, for internal links, for internal links,About,About,High,https://nuxt.com/docs/api/components/nuxt-link
-43,Link,Configure prefetch behavior,Control when prefetching occurs,prefetchOn for interaction-based,Default prefetch for low-priority,"",Always default prefetch,Low,https://nuxt.com/docs/api/components/nuxt-link
-44,Link,Use useRouter for programmatic navigation,Navigate programmatically,useRouter().push() for navigation,Direct window.location,"const router = useRouter(); router.push('/dashboard')",window.location.href = '/dashboard',Medium,https://nuxt.com/docs/api/composables/use-router
-45,Link,Use navigateTo in composables,Navigate outside components,navigateTo() in middleware or plugins,useRouter in non-component code,return navigateTo('/login'),router.push in middleware,Medium,https://nuxt.com/docs/api/utils/navigate-to
-46,AutoImports,Leverage auto-imports,Use auto-imported composables directly,Direct use of ref computed useFetch,Manual imports for Nuxt composables,"const count = ref(0)","import { ref } from 'vue'; const count = ref(0)",Medium,https://nuxt.com/docs/guide/concepts/auto-imports
-47,AutoImports,Use #imports for explicit imports,Explicit imports when needed,#imports for clarity or disabled auto-imports,"import from 'vue' when auto-import enabled","import { ref } from '#imports'","import { ref } from 'vue'",Low,https://nuxt.com/docs/guide/concepts/auto-imports
-48,AutoImports,Configure third-party auto-imports,Add external package auto-imports,imports.presets in nuxt.config,Manual imports everywhere,"imports: { presets: [{ from: 'vue-i18n', imports: ['useI18n'] }] }",import { useI18n } everywhere,Low,https://nuxt.com/docs/guide/concepts/auto-imports
-49,Plugins,Use defineNuxtPlugin,Define plugins properly,defineNuxtPlugin wrapper,export default function,"export default defineNuxtPlugin((nuxtApp) => {})","export default function(ctx) {}",High,https://nuxt.com/docs/guide/directory-structure/plugins
-50,Plugins,Use provide for injection,Provide helpers across app,return { provide: {} } for type safety,nuxtApp.provide without types,"return { provide: { hello: (name) => `Hello ${name}!` } }","nuxtApp.provide('hello', fn)",Medium,https://nuxt.com/docs/guide/directory-structure/plugins
-51,Plugins,Use .client or .server suffix,Control plugin execution environment,plugin.client.ts for client-only,if (process.client) checks,analytics.client.ts,"if (process.client) { // analytics }",Medium,https://nuxt.com/docs/guide/directory-structure/plugins
-52,Environment,Use runtimeConfig for env vars,Access environment variables safely,runtimeConfig in nuxt.config,process.env directly,"runtimeConfig: { apiSecret: '', public: { apiBase: '' } }",process.env.API_SECRET in components,High,https://nuxt.com/docs/guide/going-further/runtime-config
-53,Environment,Use NUXT_ prefix for env override,Override config with environment variables,NUXT_API_SECRET NUXT_PUBLIC_API_BASE,Custom env var names,NUXT_PUBLIC_API_BASE=https://api.example.com,API_BASE=https://api.example.com,High,https://nuxt.com/docs/guide/going-further/runtime-config
-54,Environment,Access public config with useRuntimeConfig,Get public config in components,useRuntimeConfig().public,Direct process.env access,const config = useRuntimeConfig(); config.public.apiBase,process.env.NUXT_PUBLIC_API_BASE,High,https://nuxt.com/docs/api/composables/use-runtime-config
-55,Environment,Keep secrets in private config,Server-only secrets in runtimeConfig root,runtimeConfig.apiSecret (server only),Secrets in public config,runtimeConfig: { dbPassword: '' },runtimeConfig: { public: { dbPassword: '' } },High,https://nuxt.com/docs/guide/going-further/runtime-config
-56,Performance,Use Lazy prefix for code splitting,Lazy load components with Lazy prefix, for below-fold,Eager load all components,, for hidden content,Medium,https://nuxt.com/docs/guide/directory-structure/components
-57,Performance,Use useLazyFetch for non-blocking data,Alias for useFetch with lazy: true,useLazyFetch for secondary data,useFetch for all requests,"const { data } = useLazyFetch('/api/comments')",await useFetch for comments section,Medium,https://nuxt.com/docs/api/composables/use-lazy-fetch
-58,Performance,Use lazy hydration for interactivity,Delay component hydration until needed,LazyComponent with hydration strategy,Immediate hydration for all,, in footer,Low,https://nuxt.com/docs/guide/going-further/experimental-features
diff --git a/.agents/skills/ui-ux-pro-max/data/stacks/react-native.csv b/.agents/skills/ui-ux-pro-max/data/stacks/react-native.csv
deleted file mode 100644
index 209e893..0000000
--- a/.agents/skills/ui-ux-pro-max/data/stacks/react-native.csv
+++ /dev/null
@@ -1,52 +0,0 @@
-No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
-1,Components,Use functional components,Hooks-based components are standard,Functional components with hooks,Class components,const App = () => { },class App extends Component,Medium,https://reactnative.dev/docs/intro-react
-2,Components,Keep components small,Single responsibility principle,Split into smaller components,Large monolithic components,,500+ line component,Medium,
-3,Components,Use TypeScript,Type safety for props and state,TypeScript for new projects,JavaScript without types,const Button: FC = () => { },const Button = (props) => { },Medium,
-4,Components,Colocate component files,Keep related files together,Component folder with styles,Flat structure,components/Button/index.tsx styles.ts,components/Button.tsx styles/button.ts,Low,
-5,Styling,Use StyleSheet.create,Optimized style objects,StyleSheet for all styles,Inline style objects,StyleSheet.create({ container: {} }),style={{ margin: 10 }},High,https://reactnative.dev/docs/stylesheet
-6,Styling,Avoid inline styles,Prevent object recreation,Styles in StyleSheet,Inline style objects in render,style={styles.container},"style={{ margin: 10, padding: 5 }}",Medium,
-7,Styling,Use flexbox for layout,React Native uses flexbox,flexDirection alignItems justifyContent,Absolute positioning everywhere,flexDirection: 'row',position: 'absolute' everywhere,Medium,https://reactnative.dev/docs/flexbox
-8,Styling,Handle platform differences,Platform-specific styles,Platform.select or .ios/.android files,Same styles for both platforms,"Platform.select({ ios: {}, android: {} })",Hardcoded iOS values,Medium,https://reactnative.dev/docs/platform-specific-code
-9,Styling,Use responsive dimensions,Scale for different screens,Dimensions or useWindowDimensions,Fixed pixel values,useWindowDimensions(),width: 375,Medium,
-10,Navigation,Use React Navigation,Standard navigation library,React Navigation for routing,Manual navigation management,createStackNavigator(),Custom navigation state,Medium,https://reactnavigation.org/
-11,Navigation,Type navigation params,Type-safe navigation,Typed navigation props,Untyped navigation,"navigation.navigate('Home', { id })","navigation.navigate('Home', { id })",Medium,
-12,Navigation,Use deep linking,Support URL-based navigation,Configure linking prop,No deep link support,linking: { prefixes: [] },No linking configuration,Medium,https://reactnavigation.org/docs/deep-linking/
-13,Navigation,Handle back button,Android back button handling,useFocusEffect with BackHandler,Ignore back button,BackHandler.addEventListener,No back handler,High,
-14,State,Use useState for local state,Simple component state,useState for UI state,Class component state,"const [count, setCount] = useState(0)",this.state = { count: 0 },Medium,
-15,State,Use useReducer for complex state,Complex state logic,useReducer for related state,Multiple useState for related values,useReducer(reducer initialState),5+ useState calls,Medium,
-16,State,Use context sparingly,Context for global state,Context for theme auth locale,Context for frequently changing data,ThemeContext for app theme,Context for list item data,Medium,
-17,State,Consider Zustand or Redux,External state management,Zustand for simple Redux for complex,useState for global state,create((set) => ({ })),Prop drilling global state,Medium,
-18,Lists,Use FlatList for long lists,Virtualized list rendering,FlatList for 50+ items,ScrollView with map,,{items.map()},High,https://reactnative.dev/docs/flatlist
-19,Lists,Provide keyExtractor,Unique keys for list items,keyExtractor with stable ID,Index as key,keyExtractor={(item) => item.id},"keyExtractor={(_, index) => index}",High,
-20,Lists,Optimize renderItem,Memoize list item components,React.memo for list items,Inline render function,renderItem={({ item }) => },renderItem={({ item }) => ...},High,
-21,Lists,Use getItemLayout for fixed height,Skip measurement for performance,getItemLayout when height known,Dynamic measurement for fixed items,"getItemLayout={(_, index) => ({ length: 50, offset: 50 * index, index })}",No getItemLayout for fixed height,Medium,
-22,Lists,Implement windowSize,Control render window,Smaller windowSize for memory,Default windowSize for large lists,windowSize={5},windowSize={21} for huge lists,Medium,
-23,Performance,Use React.memo,Prevent unnecessary re-renders,memo for pure components,No memoization,export default memo(MyComponent),export default MyComponent,Medium,
-24,Performance,Use useCallback for handlers,Stable function references,useCallback for props,New function on every render,"useCallback(() => {}, [deps])",() => handlePress(),Medium,
-25,Performance,Use useMemo for expensive ops,Cache expensive calculations,useMemo for heavy computations,Recalculate every render,"useMemo(() => expensive(), [deps])",const result = expensive(),Medium,
-26,Performance,Avoid anonymous functions in JSX,Prevent re-renders,Named handlers or useCallback,Inline arrow functions,onPress={handlePress},onPress={() => doSomething()},Medium,
-27,Performance,Use Hermes engine,Improved startup and memory,Enable Hermes in build,JavaScriptCore for new projects,hermes_enabled: true,hermes_enabled: false,Medium,https://reactnative.dev/docs/hermes
-28,Images,Use expo-image,Modern performant image component for React Native,"Use expo-image for caching, blurring, and performance",Use default Image for heavy lists or unmaintained libraries, (expo-image),,Medium,https://docs.expo.dev/versions/latest/sdk/image/
-29,Images,Specify image dimensions,Prevent layout shifts,width and height for remote images,No dimensions for network images,, no size,High,
-30,Images,Use resizeMode,Control image scaling,resizeMode cover contain,Stretch images,"resizeMode=""cover""",No resizeMode,Low,
-31,Forms,Use controlled inputs,State-controlled form fields,value + onChangeText,Uncontrolled inputs,,,Medium,
-32,Forms,Handle keyboard,Manage keyboard visibility,KeyboardAvoidingView,Content hidden by keyboard,"",No keyboard handling,High,https://reactnative.dev/docs/keyboardavoidingview
-33,Forms,Use proper keyboard types,Appropriate keyboard for input,keyboardType for input type,Default keyboard for all,"keyboardType=""email-address""","keyboardType=""default"" for email",Low,
-34,Touch,Use Pressable,Modern touch handling,Pressable for touch interactions,TouchableOpacity for new code,,,Low,https://reactnative.dev/docs/pressable
-35,Touch,Provide touch feedback,Visual feedback on press,Ripple or opacity change,No feedback on press,android_ripple={{ color: 'gray' }},No press feedback,Medium,
-36,Touch,Set hitSlop for small targets,Increase touch area,hitSlop for icons and small buttons,Tiny touch targets,hitSlop={{ top: 10 bottom: 10 }},44x44 with no hitSlop,Medium,
-37,Animation,Use Reanimated,High-performance animations,react-native-reanimated,Animated API for complex,useSharedValue useAnimatedStyle,Animated.timing for gesture,Medium,https://docs.swmansion.com/react-native-reanimated/
-38,Animation,Run on UI thread,worklets for smooth animation,Run animations on UI thread,JS thread animations,runOnUI(() => {}),Animated on JS thread,High,
-39,Animation,Use gesture handler,Native gesture recognition,react-native-gesture-handler,JS-based gesture handling,,,Medium,https://docs.swmansion.com/react-native-gesture-handler/
-40,Async,Handle loading states,Show loading indicators,ActivityIndicator during load,Empty screen during load,{isLoading ? : },No loading state,Medium,
-41,Async,Handle errors gracefully,Error boundaries and fallbacks,Error UI for failed requests,Crash on error,{error ? : },No error handling,High,
-42,Async,Cancel async operations,Cleanup on unmount,AbortController or cleanup,Memory leaks from async,useEffect cleanup,No cleanup for subscriptions,High,
-43,Accessibility,Add accessibility labels,Describe UI elements,accessibilityLabel for all interactive,Missing labels,"accessibilityLabel=""Submit form""", without label,High,https://reactnative.dev/docs/accessibility
-44,Accessibility,Use accessibility roles,Semantic meaning,accessibilityRole for elements,Wrong roles,"accessibilityRole=""button""",No role for button,Medium,
-45,Accessibility,Support screen readers,Test with TalkBack/VoiceOver,Test with screen readers,Skip accessibility testing,Regular TalkBack testing,No screen reader testing,High,
-46,Testing,Use React Native Testing Library,Component testing,render and fireEvent,Enzyme or manual testing,render(),shallow(),Medium,https://callstack.github.io/react-native-testing-library/
-47,Testing,Test on real devices,Real device behavior,Test on iOS and Android devices,Simulator only,Device testing in CI,Simulator only testing,High,
-48,Testing,Use Detox for E2E,End-to-end testing,Detox for critical flows,Manual E2E testing,detox test,Manual testing only,Medium,https://wix.github.io/Detox/
-49,Native,Use native modules carefully,Bridge has overhead,Batch native calls,Frequent bridge crossing,Batch updates,Call native on every keystroke,High,
-50,Native,Use Expo when possible,Simplified development,Expo for standard features,Bare RN for simple apps,expo install package,react-native link package,Low,https://docs.expo.dev/
-51,Native,Handle permissions,Request permissions properly,Check and request permissions,Assume permissions granted,PermissionsAndroid.request(),Access without permission check,High,https://reactnative.dev/docs/permissionsandroid
diff --git a/.agents/skills/ui-ux-pro-max/data/stacks/react.csv b/.agents/skills/ui-ux-pro-max/data/stacks/react.csv
deleted file mode 100644
index 9f891f4..0000000
--- a/.agents/skills/ui-ux-pro-max/data/stacks/react.csv
+++ /dev/null
@@ -1,54 +0,0 @@
-No,Category,Guideline,Description,Do,Don't,Code Good,Code Bad,Severity,Docs URL
-1,State,Use useState for local state,Simple component state should use useState hook,useState for form inputs toggles counters,Class components this.state,"const [count, setCount] = useState(0)",this.state = { count: 0 },Medium,https://react.dev/reference/react/useState
-2,State,Lift state up when needed,Share state between siblings by lifting to parent,Lift shared state to common ancestor,Prop drilling through many levels,Parent holds state passes down,Deep prop chains,Medium,https://react.dev/learn/sharing-state-between-components
-3,State,Use useReducer for complex state,Complex state logic benefits from reducer pattern,useReducer for state with multiple sub-values,Multiple useState for related values,useReducer with action types,5+ useState calls that update together,Medium,https://react.dev/reference/react/useReducer
-4,State,Avoid unnecessary state,Derive values from existing state when possible,Compute derived values in render,Store derivable values in state,const total = items.reduce(...),"const [total, setTotal] = useState(0)",High,https://react.dev/learn/choosing-the-state-structure
-5,State,Initialize state lazily,Use function form for expensive initial state,useState(() => computeExpensive()),useState(computeExpensive()),useState(() => JSON.parse(data)),useState(JSON.parse(data)),Medium,https://react.dev/reference/react/useState#avoiding-recreating-the-initial-state
-6,Effects,Clean up effects,Return cleanup function for subscriptions timers,Return cleanup function in useEffect,No cleanup for subscriptions,useEffect(() => { sub(); return unsub; }),useEffect(() => { subscribe(); }),High,https://react.dev/reference/react/useEffect#connecting-to-an-external-system
-7,Effects,Specify dependencies correctly,Include all values used inside effect in deps array,All referenced values in dependency array,Empty deps with external references,[value] when using value in effect,[] when using props/state in effect,High,https://react.dev/reference/react/useEffect#specifying-reactive-dependencies
-8,Effects,Avoid unnecessary effects,Don't use effects for transforming data or events,Transform data during render handle events directly,useEffect for derived state or event handling,const filtered = items.filter(...),useEffect(() => setFiltered(items.filter(...))),High,https://react.dev/learn/you-might-not-need-an-effect
-9,Effects,Use refs for non-reactive values,Store values that don't trigger re-renders in refs,useRef for interval IDs DOM elements,useState for values that don't need render,const intervalRef = useRef(null),"const [intervalId, setIntervalId] = useState()",Medium,https://react.dev/reference/react/useRef
-10,Rendering,Use keys properly,Stable unique keys for list items,Use stable IDs as keys,Array index as key for dynamic lists,key={item.id},key={index},High,https://react.dev/learn/rendering-lists#keeping-list-items-in-order-with-key
-11,Rendering,Memoize expensive calculations,Use useMemo for costly computations,useMemo for expensive filtering/sorting,Recalculate every render,"useMemo(() => expensive(), [deps])",const result = expensiveCalc(),Medium,https://react.dev/reference/react/useMemo
-12,Rendering,Memoize callbacks passed to children,Use useCallback for functions passed as props,useCallback for handlers passed to memoized children,New function reference every render,"useCallback(() => {}, [deps])",const handler = () => {},Medium,https://react.dev/reference/react/useCallback
-13,Rendering,Use React.memo wisely,Wrap components that render often with same props,memo for pure components with stable props,memo everything or nothing,memo(ExpensiveList),memo(SimpleButton),Low,https://react.dev/reference/react/memo
-14,Rendering,Avoid inline object/array creation in JSX,Create objects outside render or memoize,Define style objects outside component,Inline objects in props,
,
,Medium,
-15,Components,Keep components small and focused,Single responsibility for each component,One concern per component,Large multi-purpose components,, with 500 lines,Medium,
-16,Components,Use composition over inheritance,Compose components using children and props,Use children prop for flexibility,Inheritance hierarchies,{content},class SpecialCard extends Card,Medium,https://react.dev/learn/thinking-in-react
-17,Components,Colocate related code,Keep related components and hooks together,Related files in same directory,Flat structure with many files,components/User/UserCard.tsx,components/UserCard.tsx + hooks/useUser.ts,Low,
-18,Components,Use fragments to avoid extra DOM,Fragment or <> for multiple elements without wrapper,<> for grouping without DOM node,Extra div wrappers,<>{items.map(...)}>,