Skip to content

Commit

Permalink
feat: add temp hawaiian theme #190
Browse files Browse the repository at this point in the history
  • Loading branch information
Jason Baker authored and Jason Baker committed Nov 20, 2024
1 parent 301fbef commit 8f5784f
Show file tree
Hide file tree
Showing 5 changed files with 157 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/themes/hawaiian/color/background.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"color": {
"background": {
"lightest": {
"value": "#F1F3F3",
"public": true,
"usage": "Used for creating light backgrounds",
"wcag": "n/a",
"deprecated": true,
"version": "4.5.0",
"reference": "n/a"
}
}
}
}
18 changes: 18 additions & 0 deletions src/themes/hawaiian/color/border.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"color": {
"border": {
"ui": {
"active": {
"default": {
"value": "#CE0C88",
"public": true,
"default": true,
"usage": "Active UI border color on light backgrounds",
"wcag": "n/a",
"deprecated": false
}
}
}
}
}
}
56 changes: 56 additions & 0 deletions src/themes/hawaiian/color/container.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"color": {
"container": {
"primary": {
"default": {
"value": "#ffffff",
"public": true,
"default": true,
"usage": "Primary color for containers on light backgrounds",
"wcag": "n/a",
"deprecated": false
}
},
"ui": {
"primary": {
"default": {
"default": {
"value": "#CE0C88",
"public": true,
"default": true,
"usage": "Primary active color for containers on light backgrounds",
"wcag": "n/a",
"deprecated": false
},
"inverse": {
"value": "#F358B0",
"public": true,
"inverse": true,
"usage": "Primary active color for containers on dark backgrounds",
"wcag": "n/a",
"deprecated": false
}
},
"active": {
"default": {
"value": "#CE0C88",
"public": true,
"default": true,
"usage": "Primary active color for containers on light backgrounds",
"wcag": "n/a",
"deprecated": false
},
"inverse": {
"value": "#F358B0",
"public": true,
"inverse": true,
"usage": "Primary active color for containers on dark backgrounds",
"wcag": "n/a",
"deprecated": false
}
}
}
}
}
}
}
24 changes: 24 additions & 0 deletions src/themes/hawaiian/color/icon.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"color": {
"icon": {
"primary": {
"default": {
"value": "#463C8F",
"public": true,
"default": true,
"usage": "Primary color for icons on light backgrounds",
"wcag": "n/a",
"deprecated": false
},
"inverse": {
"value": "#9B9DCA",
"public": true,
"inverse": true,
"usage": "Primary color for icons on dark backgrounds",
"wcag": "n/a",
"deprecated": false
}
}
}
}
}
44 changes: 44 additions & 0 deletions src/themes/hawaiian/color/text.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"color": {
"text": {
"primary": {
"default": {
"value": "#000000",
"public": true,
"default": true,
"usage": "Primary color for body and header text light mode and light backgrounds",
"wcag": "n/a",
"deprecated": false
},
"inverse": {
"value": "rgba(255, 255, 255, 0.87)",
"public": true,
"inverse": true,
"usage": "Primary color for body and header text for dark mode and dark backgrounds",
"wcag": "AAA",
"deprecated": false
}
},
"ui": {
"default": {
"default": {
"value": "#CE0C88",
"public": true,
"default": true,
"usage": "Default UI text color on light backgrounds",
"wcag": "n/a",
"deprecated": false
},
"inverse": {
"value": "#F358B0",
"public": true,
"inverse": true,
"usage": "Default UI text color on dark backgrounds",
"wcag": "n/a",
"deprecated": false
}
}
}
}
}
}

0 comments on commit 8f5784f

Please sign in to comment.