Skip to content

Instantly share code, notes, and snippets.

View 0x254's full-sized avatar
🌴
On vacation

x254 0x254

🌴
On vacation
View GitHub Profile
@potch
potch / README.md
Last active June 30, 2018 16:56
JSON Style Sheets. Because why not.

JSS: JSON Style Sheets

“Wait, what?”

Sometimes you want to include some CSS in a JavaScript file. Maybe it's a standalone widget. A big ol' string is a pain to manage, and won't minify so pretty. Especially if you want your CSS safely namespaced. For example:

.widget {
    background: #abc123;
    width: 100px;

/* ... */