Skip to content
Merged
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions styles/dist/blue.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@
--stroke-default-rgb: var(--base-neutral-300-rgb);
--stroke-default: rgb(var(--stroke-default-rgb));

--stroke-hover-rgb: var(--base-neutral-400-rgb);
--stroke-hover: rgb(var(--stroke-hover-rgb));

--stroke-secondary-rgb: var(--base-neutral-200-rgb);
--stroke-secondary: rgb(var(--stroke-secondary-rgb));

Expand Down
1 change: 1 addition & 0 deletions styles/dist/blue.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ graph RL
```mermaid
graph RL
base-neutral-400 --> #404647:::base-neutral-400
stroke-hover --> base-neutral-400

classDef base-neutral-400 stroke-width:5,stroke:#404647
```
Expand Down
3 changes: 3 additions & 0 deletions styles/dist/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,9 @@
--stroke-default-rgb: var(--base-neutral-300-rgb);
--stroke-default: rgb(var(--stroke-default-rgb));

--stroke-hover-rgb: var(--base-neutral-400-rgb);
--stroke-hover: rgb(var(--stroke-hover-rgb));

--stroke-secondary-rgb: var(--base-neutral-200-rgb);
--stroke-secondary: rgb(var(--stroke-secondary-rgb));

Expand Down
1 change: 1 addition & 0 deletions styles/dist/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ graph RL
```mermaid
graph RL
base-neutral-400 --> #404647:::base-neutral-400
stroke-hover --> base-neutral-400

classDef base-neutral-400 stroke-width:5,stroke:#404647
```
Expand Down
3 changes: 3 additions & 0 deletions styles/dist/purple.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@
--stroke-default-rgb: var(--base-neutral-300-rgb);
--stroke-default: rgb(var(--stroke-default-rgb));

--stroke-hover-rgb: var(--base-neutral-400-rgb);
--stroke-hover: rgb(var(--stroke-hover-rgb));

--stroke-secondary-rgb: var(--base-neutral-200-rgb);
--stroke-secondary: rgb(var(--stroke-secondary-rgb));

Expand Down
1 change: 1 addition & 0 deletions styles/dist/purple.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ graph RL
```mermaid
graph RL
base-neutral-400 --> #404647:::base-neutral-400
stroke-hover --> base-neutral-400

classDef base-neutral-400 stroke-width:5,stroke:#404647
```
Expand Down
29 changes: 29 additions & 0 deletions styles/dist/tailwind-tokens.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,9 @@ module.exports.colorUtilities = {
'.border-default': {
'border-color': 'var(--stroke-default)',
},
'.border-hover': {
'border-color': 'var(--stroke-hover)',
},
'.border-secondary': {
'border-color': 'var(--stroke-secondary)',
},
Expand Down Expand Up @@ -350,6 +353,9 @@ module.exports.colorUtilities = {
'.border-l-default': {
'border-left-color': 'var(--stroke-default)',
},
'.border-l-hover': {
'border-left-color': 'var(--stroke-hover)',
},
'.border-l-secondary': {
'border-left-color': 'var(--stroke-secondary)',
},
Expand Down Expand Up @@ -425,6 +431,9 @@ module.exports.colorUtilities = {
'.border-r-default': {
'border-right-color': 'var(--stroke-default)',
},
'.border-r-hover': {
'border-right-color': 'var(--stroke-hover)',
},
'.border-r-secondary': {
'border-right-color': 'var(--stroke-secondary)',
},
Expand Down Expand Up @@ -500,6 +509,9 @@ module.exports.colorUtilities = {
'.border-t-default': {
'border-top-color': 'var(--stroke-default)',
},
'.border-t-hover': {
'border-top-color': 'var(--stroke-hover)',
},
'.border-t-secondary': {
'border-top-color': 'var(--stroke-secondary)',
},
Expand Down Expand Up @@ -575,6 +587,9 @@ module.exports.colorUtilities = {
'.border-b-default': {
'border-bottom-color': 'var(--stroke-default)',
},
'.border-b-hover': {
'border-bottom-color': 'var(--stroke-hover)',
},
'.border-b-secondary': {
'border-bottom-color': 'var(--stroke-secondary)',
},
Expand Down Expand Up @@ -651,6 +666,10 @@ module.exports.colorUtilities = {
'border-left-color': 'var(--stroke-default)',
'border-right-color': 'var(--stroke-default)',
},
'.border-x-hover': {
'border-left-color': 'var(--stroke-hover)',
'border-right-color': 'var(--stroke-hover)',
},
'.border-x-secondary': {
'border-left-color': 'var(--stroke-secondary)',
'border-right-color': 'var(--stroke-secondary)',
Expand Down Expand Up @@ -751,6 +770,10 @@ module.exports.colorUtilities = {
'border-top-color': 'var(--stroke-default)',
'border-bottom-color': 'var(--stroke-default)',
},
'.border-y-hover': {
'border-top-color': 'var(--stroke-hover)',
'border-bottom-color': 'var(--stroke-hover)',
},
'.border-y-secondary': {
'border-top-color': 'var(--stroke-secondary)',
'border-bottom-color': 'var(--stroke-secondary)',
Expand Down Expand Up @@ -850,6 +873,9 @@ module.exports.colorUtilities = {
'.ring-default': {
'--tw-ring-color': 'var(--stroke-default)',
},
'.ring-hover': {
'--tw-ring-color': 'var(--stroke-hover)',
},
'.ring-secondary': {
'--tw-ring-color': 'var(--stroke-secondary)',
},
Expand Down Expand Up @@ -925,6 +951,9 @@ module.exports.colorUtilities = {
'.outline-default': {
'outline-color': 'var(--stroke-default)',
},
'.outline-hover': {
'outline-color': 'var(--stroke-hover)',
},
'.outline-secondary': {
'outline-color': 'var(--stroke-secondary)',
},
Expand Down
3 changes: 3 additions & 0 deletions styles/dist/yellow.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,9 @@
--stroke-default-rgb: var(--base-neutral-300-rgb);
--stroke-default: rgb(var(--stroke-default-rgb));

--stroke-hover-rgb: var(--base-neutral-400-rgb);
--stroke-hover: rgb(var(--stroke-hover-rgb));

--stroke-secondary-rgb: var(--base-neutral-200-rgb);
--stroke-secondary: rgb(var(--stroke-secondary-rgb));

Expand Down
1 change: 1 addition & 0 deletions styles/dist/yellow.md
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,7 @@ graph RL
```mermaid
graph RL
base-neutral-400 --> #404647:::base-neutral-400
stroke-hover --> base-neutral-400

classDef base-neutral-400 stroke-width:5,stroke:#404647
```
Expand Down
4 changes: 4 additions & 0 deletions styles/src/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -1113,6 +1113,10 @@
"value": "{base.neutral.300}",
"type": "color"
},
"hover": {
"value": "{base.neutral.400}",
"type": "color"
},
"secondary": {
"value": "{base.neutral.200}",
"type": "color"
Expand Down