Skip to content

Instantly share code, notes, and snippets.

View Squix's full-sized avatar

SquixTech Squix

View GitHub Profile
@Squix
Squix / tailwind_penpot_tokens.json
Last active July 15, 2025 16:06
TailwindCSS default theme design tokens for Penpot implementation. There are spacing, border-width, border-radius and sizing tokens.
{
"Global": {
"spacing-01": { "$value": "4px", "$type": "spacing", "$description": "p-1, m-1, ..." },
"spacing-02": { "$value": "8px", "$type": "spacing", "$description": "p-2, m-2, ..." },
"spacing-03": { "$value": "12px", "$type": "spacing", "$description": "p-3, m-3, ..." },
"spacing-04": { "$value": "16px", "$type": "spacing", "$description": "p-4, m-4, ..." },
"spacing-05": { "$value": "20px", "$type": "spacing", "$description": "p-5, m-5, ..." },
"spacing-06": { "$value": "24px", "$type": "spacing", "$description": "p-6, m-6, ..." },
"spacing-07": { "$value": "28px", "$type": "spacing", "$description": "p-7, m-7, ..." },
"spacing-08": { "$value": "32px", "$type": "spacing", "$description": "p-8, m-8, ..." },
@Squix
Squix / open_ai_custom_gpt_schema.json
Last active February 19, 2025 10:44
Json schema to setup an OpenAI Custom GPT. Helps archiving and deploying.
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "OPENAI CustomGPT",
"description": "Setup config for OPENAI visual CustomGPT platform.",
"type": "object",
"properties": {
"name": {
"description": "The name of the CustomGPT.",
"type": "string"
},