Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Canvas
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ategon Dev
Canvas
Commits
5f00ca94
Commit
5f00ca94
authored
8 months ago
by
Grant
Browse files
Options
Downloads
Patches
Plain Diff
update seed_palette to use pxls palette 13
parent
13cb9803
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
packages/server/src/tools/seed_palette.ts
+33
-31
33 additions, 31 deletions
packages/server/src/tools/seed_palette.ts
with
33 additions
and
31 deletions
packages/server/src/tools/seed_palette.ts
+
33
−
31
View file @
5f00ca94
...
...
@@ -6,6 +6,8 @@ const prisma = new PrismaClient();
const
log
=
(...
msg
:
any
[])
=>
console
.
log
(...
msg
);
async
function
main
()
{
// pxls palette 13
// https://github.com/pxlsspace/Pxls/commit/1e0d85ddfc1258e6fc0ff9a0c1b1bff06cd9ee21
const
palette
:
{
name
:
string
;
hex
:
string
}[]
=
[
{
name
:
"
White
"
,
...
...
@@ -13,15 +15,15 @@ async function main() {
},
{
name
:
"
Light Grey
"
,
hex
:
"
C2CBD4
"
,
hex
:
"
B9C3CF
"
,
},
{
name
:
"
Medium Grey
"
,
hex
:
"
858D98
"
,
hex
:
"
777F8C
"
,
},
{
name
:
"
Deep Grey
"
,
hex
:
"
4
B4F58
"
,
hex
:
"
4
24651
"
,
},
{
name
:
"
Dark Grey
"
,
...
...
@@ -33,115 +35,115 @@ async function main() {
},
{
name
:
"
Dark Chocolate
"
,
hex
:
"
382
71D
"
,
hex
:
"
382
215
"
,
},
{
name
:
"
Chocolate
"
,
hex
:
"
6C422C
"
,
hex
:
"
7C3F20
"
,
},
{
name
:
"
Brown
"
,
hex
:
"
BC7541
"
,
hex
:
"
C06F37
"
,
},
{
name
:
"
Peach
"
,
hex
:
"
F
FB27F
"
,
hex
:
"
F
EAD6C
"
,
},
{
name
:
"
Beige
"
,
hex
:
"
FFD
68F
"
,
hex
:
"
FFD
2B1
"
,
},
{
name
:
"
Pink
"
,
hex
:
"
F
EB2D9
"
,
hex
:
"
F
FA4D0
"
,
},
{
name
:
"
Magenta
"
,
hex
:
"
F
854CF
"
,
hex
:
"
F
14FB4
"
,
},
{
name
:
"
Mauve
"
,
hex
:
"
C785F3
"
,
hex
:
"
E973FF
"
,
},
{
name
:
"
Purple
"
,
hex
:
"
9C29BC
"
,
hex
:
"
A630D2
"
,
},
{
name
:
"
Dark Purple
"
,
hex
:
"
5
62972
"
,
hex
:
"
5
31D8C
"
,
},
{
name
:
"
Navy
"
,
hex
:
"
1E1E5B
"
,
hex
:
"
242367
"
,
},
{
name
:
"
Blue
"
,
hex
:
"
153FA2
"
,
hex
:
"
0334BF
"
,
},
{
name
:
"
Azure
"
,
hex
:
"
1
C95D
F
"
,
hex
:
"
1
49CF
F
"
,
},
{
name
:
"
Aqua
"
,
hex
:
"
A0E8
FF
"
,
hex
:
"
8DF5
FF
"
,
},
{
name
:
"
Light Teal
"
,
hex
:
"
17A8A3
"
,
hex
:
"
01BFA5
"
,
},
{
name
:
"
Dark Teal
"
,
hex
:
"
226
677
"
,
hex
:
"
1
677
7E
"
,
},
{
name
:
"
Forest
"
,
hex
:
"
0
94C45
"
,
hex
:
"
0
54523
"
,
},
{
name
:
"
Dark Green
"
,
hex
:
"
278242
"
,
hex
:
"
18862F
"
,
},
{
name
:
"
Green
"
,
hex
:
"
43C91E
"
,
hex
:
"
61E021
"
,
},
{
name
:
"
Lime
"
,
hex
:
"
B
7F954
"
,
hex
:
"
B
1FF37
"
,
},
{
name
:
"
Pastel Yellow
"
,
hex
:
"
FFFFA
F
"
,
hex
:
"
FFFFA
5
"
,
},
{
name
:
"
Yellow
"
,
hex
:
"
F
AE70F
"
,
hex
:
"
F
DE111
"
,
},
{
name
:
"
Orange
"
,
hex
:
"
F
EA815
"
,
hex
:
"
F
F9F17
"
,
},
{
name
:
"
Rust
"
,
hex
:
"
EA5B15
"
,
hex
:
"
F66E08
"
,
},
{
name
:
"
Maroon
"
,
hex
:
"
5
A0400
"
,
hex
:
"
5
50022
"
,
},
{
name
:
"
Rose
"
,
hex
:
"
990
700
"
,
hex
:
"
990
11A
"
,
},
{
name
:
"
Red
"
,
hex
:
"
D81515
"
,
hex
:
"
F30F0C
"
,
},
{
name
:
"
Watermelon
"
,
hex
:
"
FF
635E
"
,
hex
:
"
FF
7872
"
,
},
];
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment