Skip to content

Commit cd11d8e

Browse files
authored
Merge pull request #538 from movableink/gs/update-colors
add deep purple
2 parents 5891ac3 + f444d5b commit cd11d8e

File tree

6 files changed

+37
-15
lines changed

6 files changed

+37
-15
lines changed

.github/workflows/commit-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
env:
99
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v4
1212
with:
1313
fetch-depth: 0
1414
- uses: wagoid/commitlint-github-action@v1

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1414
with:
1515
persist-credentials: false
1616
- uses: volta-cli/action@v1
1717
- name: Get yarn cache directory path
1818
id: yarn-cache-dir-path
1919
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
20-
- uses: actions/cache@v2
20+
- uses: actions/cache@v4
2121
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2222
with:
2323
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/release-it.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
release:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0 # Necessary to generate changelog from commit history
1818
- uses: volta-cli/action@v1
@@ -25,7 +25,7 @@ jobs:
2525
- name: Get yarn cache directory path
2626
id: yarn-cache-dir-path
2727
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
28-
- uses: actions/cache@v2
28+
- uses: actions/cache@v4
2929
with:
3030
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
3131
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}

.github/workflows/report-file-size.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
# Shared Setup
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v4
1515
with:
1616
ref: master
1717
- uses: volta-cli/action@v1
1818
- name: Get yarn cache directory path
1919
id: yarn-cache-dir-path
2020
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
21-
- uses: actions/cache@v2
21+
- uses: actions/cache@v4
2222
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2323
with:
2424
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -38,12 +38,12 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
# Shared Setup
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v4
4242
- uses: volta-cli/action@v1
4343
- name: Get yarn cache directory path
4444
id: yarn-cache-dir-path
4545
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
46-
- uses: actions/cache@v2
46+
- uses: actions/cache@v4
4747
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
4848
with:
4949
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

.github/workflows/verify.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
lint:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v1
14+
- uses: actions/checkout@v4
1515
- uses: volta-cli/action@v1
1616
- name: Get yarn cache directory path
1717
id: yarn-cache-dir-path
1818
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
19-
- uses: actions/cache@v2
19+
- uses: actions/cache@v4
2020
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
2121
with:
2222
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -30,12 +30,12 @@ jobs:
3030
test:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v1
33+
- uses: actions/checkout@v4
3434
- uses: volta-cli/action@v1
3535
- name: Get yarn cache directory path
3636
id: yarn-cache-dir-path
3737
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
38-
- uses: actions/cache@v2
38+
- uses: actions/cache@v4
3939
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
4040
with:
4141
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
@@ -49,12 +49,12 @@ jobs:
4949
snapshot:
5050
runs-on: ubuntu-latest
5151
steps:
52-
- uses: actions/checkout@v1
52+
- uses: actions/checkout@v4
5353
- uses: volta-cli/action@v1
5454
- name: Get yarn cache directory path
5555
id: yarn-cache-dir-path
5656
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
57-
- uses: actions/cache@v2
57+
- uses: actions/cache@v4
5858
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
5959
with:
6060
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}

config/colors.js

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,27 @@ const purple = addDefault({
7575
a700: '#aa00ff',
7676
});
7777

78+
const deepPurple = addDefault(
79+
{
80+
50: '#ede7f6',
81+
100: '#d1c4e9',
82+
200: '#b39ddb',
83+
300: '#9575cd',
84+
400: '#7e57c2',
85+
500: '#673ab7',
86+
600: '#5e35b1',
87+
700: '#512da8',
88+
800: '#4527a0',
89+
900: '#311b92',
90+
// alternatives
91+
a100: '#b388ff',
92+
a200: '#7c4dff',
93+
a400: '#651fff',
94+
a700: '#6200ea',
95+
},
96+
500
97+
);
98+
7899
const lightblue = addDefault(
79100
{
80101
50: '#e1f5fe',
@@ -186,6 +207,7 @@ module.exports = {
186207
neutral,
187208
blue,
188209
purple,
210+
deepPurple,
189211
lightblue,
190212
green,
191213
yellow,

0 commit comments

Comments
 (0)