Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ The CSS Working Group creates and defines CSS specifications. These specificatio
* [Milligram](http://milligram.io) - A minimalist CSS framework.
* [Numl](https://numl.design) - An HTML-based language and design system that lets you create responsive and accessible high-quality web interfaces with any look.
* [Pure.css](http://purecss.io/) - A set of small, responsive CSS modules that you can use in every web project.
* [SantyCss](https://santycss.santy.in) - India's first utility-first CSS framework with plain-English class names. 8,500+ classes, zero build step.

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the SantyCss website is accessible and check for basic project information

# Check if the website is accessible
echo "Checking website accessibility..."
curl -I -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://santycss.santy.in

# Check if CDN link is accessible
echo "Checking CDN accessibility..."
curl -I -s -o /dev/null -w "HTTP Status: %{http_code}\n" https://cdn.jsdelivr.net/npm/santycss/dist/santy-start.css

# Check npm package existence
echo "Checking npm package..."
curl -s https://registry.npmjs.org/santycss | jq -r '.name, .description, "Latest version: " + (.["dist-tags"].latest // "N/A"), "Last modified: " + (.time.modified // "N/A")'

Repository: awesome-css-group/awesome-css

Length of output: 337


Revise the description to focus on objective technical features rather than geographical claims.

The description includes "India's first," which is a subjective marketing claim not present in the official NPM package description. The official project description emphasizes objective technical characteristics: "Plain-English utility-first CSS framework — no build step, just classes."

Align the README entry with the project's technical focus and other framework entries in the list:

✍️ Suggested revision
-* [SantyCss](https://santycss.santy.in) - India's first utility-first CSS framework with plain-English class names. 8,500+ classes, zero build step.
+* [SantyCss](https://santycss.santy.in) - A utility-first CSS framework with plain-English class names. No build step, works via CDN.
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@README.md` at line 118, Update the README entry for "SantyCss" to remove the
subjective geographic claim ("India's first") and replace it with an objective,
technical description matching the NPM/project blurb; specifically change the
existing list line that contains "SantyCss" and the current phrase "India's
first utility-first CSS framework with plain-English class names. 8,500+
classes, zero build step." to something like "SantyCss — Plain-English
utility-first CSS framework: no build step, just classes (8,500+ classes)."
Ensure the entry focuses on technical features (plain-English classes,
utility-first, no build step, class count) and mirrors the style used for other
framework entries.

* [Semantic UI](http://semantic-ui.com/) - Powerful framework that uses human-friendly HTML.
* [Shorthand Framework](https://github.com/shorthandcss/shorthand) - Feature rich CSS framework for the new decade.
* [Spectre.css](https://picturepan2.github.io/spectre/index.html) - A lightweight, responsive and modern CSS framework.
Expand Down