brutalist-typography

Implements brutalist typography layouts with oversized fonts and broken grids across web and mobile frameworks.

3|Updated Jul 17, 2026
One-click install
npx skills add https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore --skill brutalist-typography-javeria-javaid
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: brutalist-typography
Source: https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore/tree/main/Users/Javeria/Desktop/Alkhidmat_foundation_lahore/.agents/skills/design-it/brutalist-typography
Command: npx skills add https://github.com/Javeria-Javaid/Alkhidmat_foundation_lahore --skill brutalist-typography-javeria-javaid

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Designers and developers often struggle to translate the raw, rule-breaking aesthetic of brutalist typography into working code across different platforms, since standard layout systems enforce grids, safe areas, and spacing that fight against the style. ## Core Features & Use Cases - Cross-Platform Code Examples: Provides ready-to-adapt implementations in CSS, SwiftUI, Flutter, React Native, and Jetpack Compose. - Visual DNA Guidelines: Defines the color palettes, system font choices, and styling rules (marquees, harsh contrast, clipped text) that characterize the brutalist look. - Use Case: A developer building a landing page that needs a 15vw headline bleeding off the screen edge with clashing red highlights can copy the CSS patterns directly and adapt the same approach to a companion mobile app. ## Quick Start Apply brutalist typography styling to my landing page with an oversized headline that bleeds off the screen edge.

Frequently Asked Questions about brutalist-typography

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create brutalist typography in CSS?▼

Use system fonts like Times New Roman or Courier New at extreme sizes such as 15vw, combined with negative margins to bleed text off screen. Break the grid with absolute positioning and add harsh contrast through solid color highlight blocks.

How to make text overlap in SwiftUI?▼

Use negative spacing in a VStack or explicit negative offset modifiers to force text elements to overlap. Apply ignoresSafeArea so text can clip into the notch and status bar areas.

How do I create outlined text in Flutter and React Native?▼

In Flutter, use a Paint object with PaintingStyle.stroke in the TextStyle foreground property. React Native lacks native text stroke, so simulate it with text shadows or use @shopify/react-native-skia for true stroked text.

Does Jetpack Compose support stroked text?▼

Yes, Jetpack Compose TextStyle supports drawStyle with Stroke(width), making outlined typography straightforward. Combine it with a Box layout and Modifier.offset for freeform overlapping placement.

When should I avoid brutalist typography design?▼

Avoid it when accessibility and readability are primary concerns, since clipped text, harsh contrast, and broken layouts can fail contrast ratio requirements. Always verify responsive behavior and accessibility separately from the styling reference.