Skip to content

Commit

Permalink
feat(bezier-tokens): add missing fg-{color}-dark alpha version toke…
Browse files Browse the repository at this point in the history
…ns (#2212)

<!--
  How to write a good PR title:
- Follow [the Conventional Commits
specification](https://www.conventionalcommits.org/en/v1.0.0/).
  - Give as much context as necessary and as little as possible
  - Prefix it with [WIP] while it’s a work in progress
-->

## Self Checklist

- [x] I wrote a PR title in **English** and added an appropriate
**label** to the PR.
- [x] I wrote the commit message in **English** and to follow [**the
Conventional Commits
specification**](https://www.conventionalcommits.org/en/v1.0.0/).
- [x] I [added the
**changeset**](https://github.com/changesets/changesets/blob/main/docs/adding-a-changeset.md)
about the changes that needed to be released. (or didn't have to)
- [x] I wrote or updated **documentation** related to the changes. (or
didn't have to)
- [x] I wrote or updated **tests** related to the changes. (or didn't
have to)
- [x] I tested the changes in various browsers. (or didn't have to)
  - Windows: Chrome, Edge, (Optional) Firefox
  - macOS: Chrome, Edge, Safari, (Optional) Firefox

## Summary

<!-- Please brief explanation of the changes made -->

Add missing `fg-{color}-dark` alpha version tokens

## Details

<!-- Please elaborate description of the changes -->

생략

### Breaking change? (Yes/No)

<!-- If Yes, please describe the impact and migration path for users -->

No
  • Loading branch information
sungik-choi authored May 13, 2024
1 parent 621b3eb commit 9bb4810
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/happy-pears-tan.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@channel.io/bezier-tokens": patch
---

Add missing `fg-{color}-dark` alpha version color tokens.
24 changes: 24 additions & 0 deletions packages/bezier-tokens/src/alpha/functional/dark-theme/color.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@
"light": {
"value": "{color.teal.300-45}",
"type": "color"
},
"dark": {
"value": "{color.teal.300}",
"type": "color"
}
},
"olive": {
Expand All @@ -121,6 +125,10 @@
"light": {
"value": "{color.olive.300-45}",
"type": "color"
},
"dark": {
"value": "{color.olive.300}",
"type": "color"
}
},
"yellow": {
Expand All @@ -131,6 +139,10 @@
"light": {
"value": "{color.yellow.300-45}",
"type": "color"
},
"dark": {
"value": "{color.yellow.300}",
"type": "color"
}
},
"pink": {
Expand All @@ -141,6 +153,10 @@
"light": {
"value": "{color.pink.300-45}",
"type": "color"
},
"dark": {
"value": "{color.pink.300}",
"type": "color"
}
},
"purple": {
Expand All @@ -151,6 +167,10 @@
"light": {
"value": "{color.purple.300-45}",
"type": "color"
},
"dark": {
"value": "{color.purple.300}",
"type": "color"
}
},
"navy": {
Expand All @@ -161,6 +181,10 @@
"light": {
"value": "{color.navy.300-45}",
"type": "color"
},
"dark": {
"value": "{color.navy.300}",
"type": "color"
}
},
"absolute": {
Expand Down
24 changes: 24 additions & 0 deletions packages/bezier-tokens/src/alpha/functional/light-theme/color.json
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@
"light": {
"value": "{color.teal.400-30}",
"type": "color"
},
"dark": {
"value": "{color.teal.500}",
"type": "color"
}
},
"olive": {
Expand All @@ -121,6 +125,10 @@
"light": {
"value": "{color.olive.400-30}",
"type": "color"
},
"dark": {
"value": "{color.olive.500}",
"type": "color"
}
},
"yellow": {
Expand All @@ -131,6 +139,10 @@
"light": {
"value": "{color.yellow.400-30}",
"type": "color"
},
"dark": {
"value": "{color.yellow.500}",
"type": "color"
}
},
"pink": {
Expand All @@ -141,6 +153,10 @@
"light": {
"value": "{color.pink.400-30}",
"type": "color"
},
"dark": {
"value": "{color.pink.500}",
"type": "color"
}
},
"purple": {
Expand All @@ -151,6 +167,10 @@
"light": {
"value": "{color.purple.400-30}",
"type": "color"
},
"dark": {
"value": "{color.purple.500}",
"type": "color"
}
},
"navy": {
Expand All @@ -161,6 +181,10 @@
"light": {
"value": "{color.navy.400-30}",
"type": "color"
},
"dark": {
"value": "{color.navy.500}",
"type": "color"
}
},
"absolute": {
Expand Down

0 comments on commit 9bb4810

Please sign in to comment.