Skip to content

Commit 2a2637a

Browse files
committed
chore: add new color to tokens
1 parent d8a8476 commit 2a2637a

4 files changed

Lines changed: 61 additions & 15 deletions

File tree

.github/workflows/release.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
concurrency: ${{ github.workflow }}-${{ github.ref }}
9+
10+
jobs:
11+
release:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
steps:
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
19+
- name: Setup Node.js
20+
uses: actions/setup-node@v3
21+
with:
22+
node-version: 16
23+
cache: 'npm'
24+
cache-dependency-path: '**/package-lock.json'
25+
26+
- run: npm ci
27+
28+
- name: Publish to NPM
29+
id: changesets
30+
uses: changesets/action@v1
31+
with:
32+
# This expects you to have a script called release which does a build for your packages and calls changeset publish
33+
publish: npm run release
34+
env:
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
37+
TURBO_TOKEN: uxcAW0l2k5tgAZZTkPOriXky
38+
TURBO_TEAM: pedr0d1as

packages/tokens/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @pearl-ui/tokens
22

3+
## 2.1.0
4+
5+
### Minor Changes
6+
7+
- Add new Color
8+
39
## 2.0.0
410

511
### Major Changes

packages/tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@pearl-ui/tokens",
3-
"version": "2.0.0",
3+
"version": "2.1.0",
44
"description": "",
55
"main": "dist/index.js",
66
"module": "dist/index.mjs",

packages/tokens/src/colors.ts

Lines changed: 16 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
export const colors = {
2-
white: '#FFF',
3-
black: '#000',
2+
white: '#FFF',
3+
black: '#000',
44

5-
gray100: '#E1E1E6',
6-
gray200: '#A9A9B2',
7-
gray400: '#7C7C8A',
8-
gray500: '#505059',
9-
gray600: '#323238',
10-
gray700: '#29292E',
11-
gray800: '#202024',
12-
gray900: '#121214',
5+
gray100: '#E1E1E6',
6+
gray200: '#A9A9B2',
7+
gray400: '#7C7C8A',
8+
gray500: '#505059',
9+
gray600: '#323238',
10+
gray700: '#29292E',
11+
gray800: '#202024',
12+
gray900: '#121214',
1313

14-
pearl300: '#00B37E',
15-
pearl500: '#00875F',
16-
pearl700: '#015F43',
17-
pearl900: '#00291D',
14+
pearl300: '#00B37E',
15+
pearl500: '#00875F',
16+
pearl700: '#015F43',
17+
pearl900: '#00291D',
18+
19+
red500: '#ff0000',
1820
}

0 commit comments

Comments
 (0)