Skip to content

Instantly share code, notes, and snippets.

View billygrant24's full-sized avatar

Billy Grant billygrant24

View GitHub Profile
@billygrant24
billygrant24 / tailwind-colors.js
Created July 5, 2024 03:45 — forked from trulymittal/tailwind-colors.js
List of all default Tailwind CSS colors from the default theme
export const colors = {
black: '#000',
white: '#fff',
rose: {
'50': '#fff1f2',
'100': '#ffe4e6',
'200': '#fecdd3',
'300': '#fda4af',
'400': '#fb7185',
'500': '#f43f5e',
### Keybase proof
I hereby claim:
* I am untangledev on github.
* I am billgrant88 (https://keybase.io/billgrant88) on keybase.
* I have a public key ASCGH4ZIOhTQC60czZ09hxTl5pxqAN7n1gtdNgDA574itgo
To claim this, I am signing this object:
@billygrant24
billygrant24 / plugin.groovy
Created February 9, 2017 17:31 — forked from dkandalov/plugin.groovy
IntelliJ plugin to collapse java keywords into symbols.
import com.intellij.codeInsight.folding.impl.EditorFoldingInfo
import com.intellij.codeInsight.folding.impl.FoldingUtil
import com.intellij.openapi.actionSystem.AnActionEvent
import com.intellij.openapi.editor.Document
import com.intellij.openapi.editor.Editor
import com.intellij.openapi.editor.FoldRegion
import com.intellij.openapi.editor.ex.FoldingModelEx
import java.util.regex.Pattern
@billygrant24
billygrant24 / Caddyfile
Created July 7, 2016 08:08 — forked from jpoehls/Caddyfile
Proxy + Static File serving with caddy
# Caddyfile
localhost:2015 {
startup "go run ./server.go" &
root ./static_files
proxy / localhost:2016
}
# FILE TREE
#
$ {'/'} = () ==> {
return
<html>
<head>
<title>Homepage</title>
</head>
<body>
<p>Welcome to my Homepage.</p>
</body>
</html>;