forje-tailwind 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- forje_tailwind-1.0.0/.gitignore +224 -0
- forje_tailwind-1.0.0/PKG-INFO +45 -0
- forje_tailwind-1.0.0/README.md +33 -0
- forje_tailwind-1.0.0/pyproject.toml +26 -0
- forje_tailwind-1.0.0/src/forje_tailwind/__init__.py +1 -0
- forje_tailwind-1.0.0/src/forje_tailwind/dsl.py +8 -0
- forje_tailwind-1.0.0/src/forje_tailwind/py.typed +0 -0
- forje_tailwind-1.0.0/src/forje_tailwind/tailwind.star +360 -0
|
@@ -0,0 +1,224 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
# Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
# poetry.lock
|
|
109
|
+
# poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
# pdm.lock
|
|
116
|
+
# pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
# pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# Redis
|
|
135
|
+
*.rdb
|
|
136
|
+
*.aof
|
|
137
|
+
*.pid
|
|
138
|
+
|
|
139
|
+
# RabbitMQ
|
|
140
|
+
mnesia/
|
|
141
|
+
rabbitmq/
|
|
142
|
+
rabbitmq-data/
|
|
143
|
+
|
|
144
|
+
# ActiveMQ
|
|
145
|
+
activemq-data/
|
|
146
|
+
|
|
147
|
+
# SageMath parsed files
|
|
148
|
+
*.sage.py
|
|
149
|
+
|
|
150
|
+
# Environments
|
|
151
|
+
.env
|
|
152
|
+
.envrc
|
|
153
|
+
.venv
|
|
154
|
+
env/
|
|
155
|
+
venv/
|
|
156
|
+
ENV/
|
|
157
|
+
env.bak/
|
|
158
|
+
venv.bak/
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# pytype static type analyzer
|
|
179
|
+
.pytype/
|
|
180
|
+
|
|
181
|
+
# Cython debug symbols
|
|
182
|
+
cython_debug/
|
|
183
|
+
|
|
184
|
+
# PyCharm
|
|
185
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
186
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
188
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
189
|
+
# .idea/
|
|
190
|
+
|
|
191
|
+
# Abstra
|
|
192
|
+
# Abstra is an AI-powered process automation framework.
|
|
193
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
194
|
+
# Learn more at https://abstra.io/docs
|
|
195
|
+
.abstra/
|
|
196
|
+
|
|
197
|
+
# Visual Studio Code
|
|
198
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
199
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
200
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
201
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
202
|
+
# .vscode/
|
|
203
|
+
# Temporary file for partial code execution
|
|
204
|
+
tempCodeRunnerFile.py
|
|
205
|
+
|
|
206
|
+
# Ruff stuff:
|
|
207
|
+
.ruff_cache/
|
|
208
|
+
|
|
209
|
+
# PyPI configuration file
|
|
210
|
+
.pypirc
|
|
211
|
+
|
|
212
|
+
# Marimo
|
|
213
|
+
marimo/_static/
|
|
214
|
+
marimo/_lsp/
|
|
215
|
+
__marimo__/
|
|
216
|
+
|
|
217
|
+
# Streamlit
|
|
218
|
+
.streamlit/secrets.toml
|
|
219
|
+
|
|
220
|
+
# Forje build files
|
|
221
|
+
*.forje
|
|
222
|
+
|
|
223
|
+
# macOS
|
|
224
|
+
.DS_Store
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: forje-tailwind
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Tailwind plugin for Forje
|
|
5
|
+
Project-URL: Homepage, https://kipila.dev
|
|
6
|
+
Project-URL: Repository, https://github.com/kipila-dev/forje
|
|
7
|
+
Author-email: Kipila Ltd <hello@kipila.dev>
|
|
8
|
+
License: MIT
|
|
9
|
+
Requires-Python: >=3.12
|
|
10
|
+
Requires-Dist: forje
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
|
|
13
|
+
# forje-tailwind
|
|
14
|
+
|
|
15
|
+
Tailwind CSS color palette plugin for Forje.
|
|
16
|
+
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
```sh
|
|
20
|
+
pip install forje-tailwind
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
Load the plugin in your `build.forje` and reference colors via
|
|
26
|
+
`tailwind.color.<name>.<shade>`:
|
|
27
|
+
|
|
28
|
+
```starlark
|
|
29
|
+
load("tailwind", "tailwind")
|
|
30
|
+
|
|
31
|
+
primary = Token("primary", tailwind.color.blue.c500)
|
|
32
|
+
|
|
33
|
+
target(
|
|
34
|
+
id="acme",
|
|
35
|
+
tokens=[primary],
|
|
36
|
+
artifacts=[Artifact("css", "dist/assets")],
|
|
37
|
+
)
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
For the full list of available colors, see the
|
|
41
|
+
[Tailwind CSS documentation](https://tailwindcss.com/docs/colors).
|
|
42
|
+
|
|
43
|
+
## License
|
|
44
|
+
|
|
45
|
+
MIT
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# forje-tailwind
|
|
2
|
+
|
|
3
|
+
Tailwind CSS color palette plugin for Forje.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```sh
|
|
8
|
+
pip install forje-tailwind
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
Load the plugin in your `build.forje` and reference colors via
|
|
14
|
+
`tailwind.color.<name>.<shade>`:
|
|
15
|
+
|
|
16
|
+
```starlark
|
|
17
|
+
load("tailwind", "tailwind")
|
|
18
|
+
|
|
19
|
+
primary = Token("primary", tailwind.color.blue.c500)
|
|
20
|
+
|
|
21
|
+
target(
|
|
22
|
+
id="acme",
|
|
23
|
+
tokens=[primary],
|
|
24
|
+
artifacts=[Artifact("css", "dist/assets")],
|
|
25
|
+
)
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
For the full list of available colors, see the
|
|
29
|
+
[Tailwind CSS documentation](https://tailwindcss.com/docs/colors).
|
|
30
|
+
|
|
31
|
+
## License
|
|
32
|
+
|
|
33
|
+
MIT
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "forje-tailwind"
|
|
7
|
+
dynamic = ["version"]
|
|
8
|
+
description = "Tailwind plugin for Forje"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Kipila Ltd", email = "hello@kipila.dev" }]
|
|
13
|
+
dependencies = ["forje"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://kipila.dev"
|
|
17
|
+
Repository = "https://github.com/kipila-dev/forje"
|
|
18
|
+
|
|
19
|
+
[tool.hatch.version]
|
|
20
|
+
path = "src/forje_tailwind/__init__.py"
|
|
21
|
+
|
|
22
|
+
[project.entry-points."forje.dsl"]
|
|
23
|
+
tailwind = "forje_tailwind.dsl:module"
|
|
24
|
+
|
|
25
|
+
[tool.uv.sources]
|
|
26
|
+
forje = { workspace = true }
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "1.0.0"
|
|
File without changes
|
|
@@ -0,0 +1,360 @@
|
|
|
1
|
+
load("core", "Color", "ColorSpace", "ColorType")
|
|
2
|
+
|
|
3
|
+
_Ramp = record(
|
|
4
|
+
c50=ColorType,
|
|
5
|
+
c100=ColorType,
|
|
6
|
+
c200=ColorType,
|
|
7
|
+
c300=ColorType,
|
|
8
|
+
c400=ColorType,
|
|
9
|
+
c500=ColorType,
|
|
10
|
+
c600=ColorType,
|
|
11
|
+
c700=ColorType,
|
|
12
|
+
c800=ColorType,
|
|
13
|
+
c900=ColorType,
|
|
14
|
+
c950=ColorType,
|
|
15
|
+
)
|
|
16
|
+
|
|
17
|
+
_palette = struct(
|
|
18
|
+
red=_Ramp(
|
|
19
|
+
c50=Color(0.971, 0.013, 17.38, space=ColorSpace.OKLCH),
|
|
20
|
+
c100=Color(0.936, 0.032, 17.717, space=ColorSpace.OKLCH),
|
|
21
|
+
c200=Color(0.885, 0.062, 18.334, space=ColorSpace.OKLCH),
|
|
22
|
+
c300=Color(0.808, 0.114, 19.571, space=ColorSpace.OKLCH),
|
|
23
|
+
c400=Color(0.704, 0.191, 22.216, space=ColorSpace.OKLCH),
|
|
24
|
+
c500=Color(0.637, 0.237, 25.331, space=ColorSpace.OKLCH),
|
|
25
|
+
c600=Color(0.577, 0.245, 27.325, space=ColorSpace.OKLCH),
|
|
26
|
+
c700=Color(0.505, 0.213, 27.518, space=ColorSpace.OKLCH),
|
|
27
|
+
c800=Color(0.444, 0.177, 26.899, space=ColorSpace.OKLCH),
|
|
28
|
+
c900=Color(0.396, 0.141, 25.723, space=ColorSpace.OKLCH),
|
|
29
|
+
c950=Color(0.258, 0.092, 26.042, space=ColorSpace.OKLCH),
|
|
30
|
+
),
|
|
31
|
+
orange=_Ramp(
|
|
32
|
+
c50=Color(0.98, 0.016, 73.684, space=ColorSpace.OKLCH),
|
|
33
|
+
c100=Color(0.954, 0.038, 75.164, space=ColorSpace.OKLCH),
|
|
34
|
+
c200=Color(0.901, 0.076, 70.697, space=ColorSpace.OKLCH),
|
|
35
|
+
c300=Color(0.837, 0.128, 66.29, space=ColorSpace.OKLCH),
|
|
36
|
+
c400=Color(0.75, 0.183, 55.934, space=ColorSpace.OKLCH),
|
|
37
|
+
c500=Color(0.705, 0.213, 47.604, space=ColorSpace.OKLCH),
|
|
38
|
+
c600=Color(0.646, 0.222, 41.116, space=ColorSpace.OKLCH),
|
|
39
|
+
c700=Color(0.553, 0.195, 38.402, space=ColorSpace.OKLCH),
|
|
40
|
+
c800=Color(0.47, 0.157, 37.304, space=ColorSpace.OKLCH),
|
|
41
|
+
c900=Color(0.408, 0.123, 38.172, space=ColorSpace.OKLCH),
|
|
42
|
+
c950=Color(0.266, 0.079, 36.259, space=ColorSpace.OKLCH),
|
|
43
|
+
),
|
|
44
|
+
amber=_Ramp(
|
|
45
|
+
c50=Color(0.987, 0.022, 95.277, space=ColorSpace.OKLCH),
|
|
46
|
+
c100=Color(0.962, 0.059, 95.617, space=ColorSpace.OKLCH),
|
|
47
|
+
c200=Color(0.924, 0.12, 95.746, space=ColorSpace.OKLCH),
|
|
48
|
+
c300=Color(0.879, 0.169, 91.605, space=ColorSpace.OKLCH),
|
|
49
|
+
c400=Color(0.828, 0.189, 84.429, space=ColorSpace.OKLCH),
|
|
50
|
+
c500=Color(0.769, 0.188, 70.08, space=ColorSpace.OKLCH),
|
|
51
|
+
c600=Color(0.666, 0.179, 58.318, space=ColorSpace.OKLCH),
|
|
52
|
+
c700=Color(0.555, 0.163, 48.998, space=ColorSpace.OKLCH),
|
|
53
|
+
c800=Color(0.473, 0.137, 46.201, space=ColorSpace.OKLCH),
|
|
54
|
+
c900=Color(0.414, 0.112, 45.904, space=ColorSpace.OKLCH),
|
|
55
|
+
c950=Color(0.279, 0.077, 45.635, space=ColorSpace.OKLCH),
|
|
56
|
+
),
|
|
57
|
+
yellow=_Ramp(
|
|
58
|
+
c50=Color(0.987, 0.026, 102.212, space=ColorSpace.OKLCH),
|
|
59
|
+
c100=Color(0.973, 0.071, 103.193, space=ColorSpace.OKLCH),
|
|
60
|
+
c200=Color(0.945, 0.129, 101.54, space=ColorSpace.OKLCH),
|
|
61
|
+
c300=Color(0.905, 0.182, 98.111, space=ColorSpace.OKLCH),
|
|
62
|
+
c400=Color(0.852, 0.199, 91.936, space=ColorSpace.OKLCH),
|
|
63
|
+
c500=Color(0.795, 0.184, 86.047, space=ColorSpace.OKLCH),
|
|
64
|
+
c600=Color(0.681, 0.162, 75.834, space=ColorSpace.OKLCH),
|
|
65
|
+
c700=Color(0.554, 0.135, 66.442, space=ColorSpace.OKLCH),
|
|
66
|
+
c800=Color(0.476, 0.114, 61.907, space=ColorSpace.OKLCH),
|
|
67
|
+
c900=Color(0.421, 0.095, 57.708, space=ColorSpace.OKLCH),
|
|
68
|
+
c950=Color(0.286, 0.066, 53.813, space=ColorSpace.OKLCH),
|
|
69
|
+
),
|
|
70
|
+
lime=_Ramp(
|
|
71
|
+
c50=Color(0.986, 0.031, 120.757, space=ColorSpace.OKLCH),
|
|
72
|
+
c100=Color(0.967, 0.067, 122.328, space=ColorSpace.OKLCH),
|
|
73
|
+
c200=Color(0.938, 0.127, 124.321, space=ColorSpace.OKLCH),
|
|
74
|
+
c300=Color(0.897, 0.196, 126.665, space=ColorSpace.OKLCH),
|
|
75
|
+
c400=Color(0.841, 0.238, 128.85, space=ColorSpace.OKLCH),
|
|
76
|
+
c500=Color(0.768, 0.233, 130.85, space=ColorSpace.OKLCH),
|
|
77
|
+
c600=Color(0.648, 0.2, 131.684, space=ColorSpace.OKLCH),
|
|
78
|
+
c700=Color(0.532, 0.157, 131.589, space=ColorSpace.OKLCH),
|
|
79
|
+
c800=Color(0.453, 0.124, 130.933, space=ColorSpace.OKLCH),
|
|
80
|
+
c900=Color(0.405, 0.101, 131.063, space=ColorSpace.OKLCH),
|
|
81
|
+
c950=Color(0.274, 0.072, 132.109, space=ColorSpace.OKLCH),
|
|
82
|
+
),
|
|
83
|
+
green=_Ramp(
|
|
84
|
+
c50=Color(0.982, 0.018, 155.826, space=ColorSpace.OKLCH),
|
|
85
|
+
c100=Color(0.962, 0.044, 156.743, space=ColorSpace.OKLCH),
|
|
86
|
+
c200=Color(0.925, 0.084, 155.995, space=ColorSpace.OKLCH),
|
|
87
|
+
c300=Color(0.871, 0.15, 154.449, space=ColorSpace.OKLCH),
|
|
88
|
+
c400=Color(0.792, 0.209, 151.711, space=ColorSpace.OKLCH),
|
|
89
|
+
c500=Color(0.723, 0.219, 149.579, space=ColorSpace.OKLCH),
|
|
90
|
+
c600=Color(0.627, 0.194, 149.214, space=ColorSpace.OKLCH),
|
|
91
|
+
c700=Color(0.527, 0.154, 150.069, space=ColorSpace.OKLCH),
|
|
92
|
+
c800=Color(0.448, 0.119, 151.328, space=ColorSpace.OKLCH),
|
|
93
|
+
c900=Color(0.393, 0.095, 152.535, space=ColorSpace.OKLCH),
|
|
94
|
+
c950=Color(0.266, 0.065, 152.934, space=ColorSpace.OKLCH),
|
|
95
|
+
),
|
|
96
|
+
emerald=_Ramp(
|
|
97
|
+
c50=Color(0.979, 0.021, 166.113, space=ColorSpace.OKLCH),
|
|
98
|
+
c100=Color(0.95, 0.052, 163.051, space=ColorSpace.OKLCH),
|
|
99
|
+
c200=Color(0.905, 0.093, 164.15, space=ColorSpace.OKLCH),
|
|
100
|
+
c300=Color(0.845, 0.143, 164.978, space=ColorSpace.OKLCH),
|
|
101
|
+
c400=Color(0.765, 0.177, 163.223, space=ColorSpace.OKLCH),
|
|
102
|
+
c500=Color(0.696, 0.17, 162.48, space=ColorSpace.OKLCH),
|
|
103
|
+
c600=Color(0.596, 0.145, 163.225, space=ColorSpace.OKLCH),
|
|
104
|
+
c700=Color(0.508, 0.118, 165.612, space=ColorSpace.OKLCH),
|
|
105
|
+
c800=Color(0.432, 0.095, 166.913, space=ColorSpace.OKLCH),
|
|
106
|
+
c900=Color(0.378, 0.077, 168.94, space=ColorSpace.OKLCH),
|
|
107
|
+
c950=Color(0.262, 0.051, 172.552, space=ColorSpace.OKLCH),
|
|
108
|
+
),
|
|
109
|
+
teal=_Ramp(
|
|
110
|
+
c50=Color(0.984, 0.014, 180.72, space=ColorSpace.OKLCH),
|
|
111
|
+
c100=Color(0.953, 0.051, 180.801, space=ColorSpace.OKLCH),
|
|
112
|
+
c200=Color(0.91, 0.096, 180.426, space=ColorSpace.OKLCH),
|
|
113
|
+
c300=Color(0.855, 0.138, 181.071, space=ColorSpace.OKLCH),
|
|
114
|
+
c400=Color(0.777, 0.152, 181.912, space=ColorSpace.OKLCH),
|
|
115
|
+
c500=Color(0.704, 0.14, 182.503, space=ColorSpace.OKLCH),
|
|
116
|
+
c600=Color(0.6, 0.118, 184.704, space=ColorSpace.OKLCH),
|
|
117
|
+
c700=Color(0.511, 0.096, 186.391, space=ColorSpace.OKLCH),
|
|
118
|
+
c800=Color(0.437, 0.078, 188.216, space=ColorSpace.OKLCH),
|
|
119
|
+
c900=Color(0.386, 0.063, 188.416, space=ColorSpace.OKLCH),
|
|
120
|
+
c950=Color(0.277, 0.046, 192.524, space=ColorSpace.OKLCH),
|
|
121
|
+
),
|
|
122
|
+
cyan=_Ramp(
|
|
123
|
+
c50=Color(0.984, 0.019, 200.873, space=ColorSpace.OKLCH),
|
|
124
|
+
c100=Color(0.956, 0.045, 203.388, space=ColorSpace.OKLCH),
|
|
125
|
+
c200=Color(0.917, 0.08, 205.041, space=ColorSpace.OKLCH),
|
|
126
|
+
c300=Color(0.865, 0.127, 207.078, space=ColorSpace.OKLCH),
|
|
127
|
+
c400=Color(0.789, 0.154, 211.53, space=ColorSpace.OKLCH),
|
|
128
|
+
c500=Color(0.715, 0.143, 215.221, space=ColorSpace.OKLCH),
|
|
129
|
+
c600=Color(0.609, 0.126, 221.723, space=ColorSpace.OKLCH),
|
|
130
|
+
c700=Color(0.52, 0.105, 223.128, space=ColorSpace.OKLCH),
|
|
131
|
+
c800=Color(0.45, 0.085, 224.283, space=ColorSpace.OKLCH),
|
|
132
|
+
c900=Color(0.398, 0.07, 227.392, space=ColorSpace.OKLCH),
|
|
133
|
+
c950=Color(0.302, 0.056, 229.695, space=ColorSpace.OKLCH),
|
|
134
|
+
),
|
|
135
|
+
sky=_Ramp(
|
|
136
|
+
c50=Color(0.977, 0.013, 236.62, space=ColorSpace.OKLCH),
|
|
137
|
+
c100=Color(0.951, 0.026, 236.824, space=ColorSpace.OKLCH),
|
|
138
|
+
c200=Color(0.901, 0.058, 230.902, space=ColorSpace.OKLCH),
|
|
139
|
+
c300=Color(0.828, 0.111, 230.318, space=ColorSpace.OKLCH),
|
|
140
|
+
c400=Color(0.746, 0.16, 232.661, space=ColorSpace.OKLCH),
|
|
141
|
+
c500=Color(0.685, 0.169, 237.323, space=ColorSpace.OKLCH),
|
|
142
|
+
c600=Color(0.588, 0.158, 241.966, space=ColorSpace.OKLCH),
|
|
143
|
+
c700=Color(0.5, 0.134, 242.749, space=ColorSpace.OKLCH),
|
|
144
|
+
c800=Color(0.443, 0.11, 240.79, space=ColorSpace.OKLCH),
|
|
145
|
+
c900=Color(0.391, 0.09, 240.876, space=ColorSpace.OKLCH),
|
|
146
|
+
c950=Color(0.293, 0.066, 243.157, space=ColorSpace.OKLCH),
|
|
147
|
+
),
|
|
148
|
+
blue=_Ramp(
|
|
149
|
+
c50=Color(0.97, 0.014, 254.604, space=ColorSpace.OKLCH),
|
|
150
|
+
c100=Color(0.932, 0.032, 255.585, space=ColorSpace.OKLCH),
|
|
151
|
+
c200=Color(0.882, 0.059, 254.128, space=ColorSpace.OKLCH),
|
|
152
|
+
c300=Color(0.809, 0.105, 251.813, space=ColorSpace.OKLCH),
|
|
153
|
+
c400=Color(0.707, 0.165, 254.624, space=ColorSpace.OKLCH),
|
|
154
|
+
c500=Color(0.623, 0.214, 259.815, space=ColorSpace.OKLCH),
|
|
155
|
+
c600=Color(0.546, 0.245, 262.881, space=ColorSpace.OKLCH),
|
|
156
|
+
c700=Color(0.488, 0.243, 264.376, space=ColorSpace.OKLCH),
|
|
157
|
+
c800=Color(0.424, 0.199, 265.638, space=ColorSpace.OKLCH),
|
|
158
|
+
c900=Color(0.379, 0.146, 265.522, space=ColorSpace.OKLCH),
|
|
159
|
+
c950=Color(0.282, 0.091, 267.935, space=ColorSpace.OKLCH),
|
|
160
|
+
),
|
|
161
|
+
indigo=_Ramp(
|
|
162
|
+
c50=Color(0.962, 0.018, 272.314, space=ColorSpace.OKLCH),
|
|
163
|
+
c100=Color(0.93, 0.034, 272.788, space=ColorSpace.OKLCH),
|
|
164
|
+
c200=Color(0.87, 0.065, 274.039, space=ColorSpace.OKLCH),
|
|
165
|
+
c300=Color(0.785, 0.115, 274.713, space=ColorSpace.OKLCH),
|
|
166
|
+
c400=Color(0.673, 0.182, 276.935, space=ColorSpace.OKLCH),
|
|
167
|
+
c500=Color(0.585, 0.233, 277.117, space=ColorSpace.OKLCH),
|
|
168
|
+
c600=Color(0.511, 0.262, 276.966, space=ColorSpace.OKLCH),
|
|
169
|
+
c700=Color(0.457, 0.24, 277.023, space=ColorSpace.OKLCH),
|
|
170
|
+
c800=Color(0.398, 0.195, 277.366, space=ColorSpace.OKLCH),
|
|
171
|
+
c900=Color(0.359, 0.144, 278.697, space=ColorSpace.OKLCH),
|
|
172
|
+
c950=Color(0.257, 0.09, 281.288, space=ColorSpace.OKLCH),
|
|
173
|
+
),
|
|
174
|
+
violet=_Ramp(
|
|
175
|
+
c50=Color(0.969, 0.016, 293.756, space=ColorSpace.OKLCH),
|
|
176
|
+
c100=Color(0.943, 0.029, 294.588, space=ColorSpace.OKLCH),
|
|
177
|
+
c200=Color(0.894, 0.057, 293.283, space=ColorSpace.OKLCH),
|
|
178
|
+
c300=Color(0.811, 0.111, 293.571, space=ColorSpace.OKLCH),
|
|
179
|
+
c400=Color(0.702, 0.183, 293.541, space=ColorSpace.OKLCH),
|
|
180
|
+
c500=Color(0.606, 0.25, 292.717, space=ColorSpace.OKLCH),
|
|
181
|
+
c600=Color(0.541, 0.281, 293.009, space=ColorSpace.OKLCH),
|
|
182
|
+
c700=Color(0.491, 0.27, 292.581, space=ColorSpace.OKLCH),
|
|
183
|
+
c800=Color(0.432, 0.232, 292.759, space=ColorSpace.OKLCH),
|
|
184
|
+
c900=Color(0.38, 0.189, 293.745, space=ColorSpace.OKLCH),
|
|
185
|
+
c950=Color(0.283, 0.141, 291.089, space=ColorSpace.OKLCH),
|
|
186
|
+
),
|
|
187
|
+
purple=_Ramp(
|
|
188
|
+
c50=Color(0.977, 0.014, 308.299, space=ColorSpace.OKLCH),
|
|
189
|
+
c100=Color(0.946, 0.033, 307.174, space=ColorSpace.OKLCH),
|
|
190
|
+
c200=Color(0.902, 0.063, 306.703, space=ColorSpace.OKLCH),
|
|
191
|
+
c300=Color(0.827, 0.119, 306.383, space=ColorSpace.OKLCH),
|
|
192
|
+
c400=Color(0.714, 0.203, 305.504, space=ColorSpace.OKLCH),
|
|
193
|
+
c500=Color(0.627, 0.265, 303.9, space=ColorSpace.OKLCH),
|
|
194
|
+
c600=Color(0.558, 0.288, 302.321, space=ColorSpace.OKLCH),
|
|
195
|
+
c700=Color(0.496, 0.265, 301.924, space=ColorSpace.OKLCH),
|
|
196
|
+
c800=Color(0.438, 0.218, 303.724, space=ColorSpace.OKLCH),
|
|
197
|
+
c900=Color(0.381, 0.176, 304.987, space=ColorSpace.OKLCH),
|
|
198
|
+
c950=Color(0.291, 0.149, 302.717, space=ColorSpace.OKLCH),
|
|
199
|
+
),
|
|
200
|
+
fuchsia=_Ramp(
|
|
201
|
+
c50=Color(0.977, 0.017, 320.058, space=ColorSpace.OKLCH),
|
|
202
|
+
c100=Color(0.952, 0.037, 318.852, space=ColorSpace.OKLCH),
|
|
203
|
+
c200=Color(0.903, 0.076, 319.62, space=ColorSpace.OKLCH),
|
|
204
|
+
c300=Color(0.833, 0.145, 321.434, space=ColorSpace.OKLCH),
|
|
205
|
+
c400=Color(0.74, 0.238, 322.16, space=ColorSpace.OKLCH),
|
|
206
|
+
c500=Color(0.667, 0.295, 322.15, space=ColorSpace.OKLCH),
|
|
207
|
+
c600=Color(0.591, 0.293, 322.896, space=ColorSpace.OKLCH),
|
|
208
|
+
c700=Color(0.518, 0.253, 323.949, space=ColorSpace.OKLCH),
|
|
209
|
+
c800=Color(0.452, 0.211, 324.591, space=ColorSpace.OKLCH),
|
|
210
|
+
c900=Color(0.401, 0.17, 325.612, space=ColorSpace.OKLCH),
|
|
211
|
+
c950=Color(0.293, 0.136, 325.661, space=ColorSpace.OKLCH),
|
|
212
|
+
),
|
|
213
|
+
pink=_Ramp(
|
|
214
|
+
c50=Color(0.971, 0.014, 343.198, space=ColorSpace.OKLCH),
|
|
215
|
+
c100=Color(0.948, 0.028, 342.258, space=ColorSpace.OKLCH),
|
|
216
|
+
c200=Color(0.899, 0.061, 343.231, space=ColorSpace.OKLCH),
|
|
217
|
+
c300=Color(0.823, 0.12, 346.018, space=ColorSpace.OKLCH),
|
|
218
|
+
c400=Color(0.718, 0.202, 349.761, space=ColorSpace.OKLCH),
|
|
219
|
+
c500=Color(0.656, 0.241, 354.308, space=ColorSpace.OKLCH),
|
|
220
|
+
c600=Color(0.592, 0.249, 0.584, space=ColorSpace.OKLCH),
|
|
221
|
+
c700=Color(0.525, 0.223, 3.958, space=ColorSpace.OKLCH),
|
|
222
|
+
c800=Color(0.459, 0.187, 3.815, space=ColorSpace.OKLCH),
|
|
223
|
+
c900=Color(0.408, 0.153, 2.432, space=ColorSpace.OKLCH),
|
|
224
|
+
c950=Color(0.284, 0.109, 3.907, space=ColorSpace.OKLCH),
|
|
225
|
+
),
|
|
226
|
+
rose=_Ramp(
|
|
227
|
+
c50=Color(0.969, 0.015, 12.422, space=ColorSpace.OKLCH),
|
|
228
|
+
c100=Color(0.941, 0.03, 12.58, space=ColorSpace.OKLCH),
|
|
229
|
+
c200=Color(0.892, 0.058, 10.001, space=ColorSpace.OKLCH),
|
|
230
|
+
c300=Color(0.81, 0.117, 11.638, space=ColorSpace.OKLCH),
|
|
231
|
+
c400=Color(0.712, 0.194, 13.428, space=ColorSpace.OKLCH),
|
|
232
|
+
c500=Color(0.645, 0.246, 16.439, space=ColorSpace.OKLCH),
|
|
233
|
+
c600=Color(0.586, 0.253, 17.585, space=ColorSpace.OKLCH),
|
|
234
|
+
c700=Color(0.514, 0.222, 16.935, space=ColorSpace.OKLCH),
|
|
235
|
+
c800=Color(0.455, 0.188, 13.697, space=ColorSpace.OKLCH),
|
|
236
|
+
c900=Color(0.41, 0.159, 10.272, space=ColorSpace.OKLCH),
|
|
237
|
+
c950=Color(0.271, 0.105, 12.094, space=ColorSpace.OKLCH),
|
|
238
|
+
),
|
|
239
|
+
slate=_Ramp(
|
|
240
|
+
c50=Color(0.984, 0.003, 247.858, space=ColorSpace.OKLCH),
|
|
241
|
+
c100=Color(0.968, 0.007, 247.896, space=ColorSpace.OKLCH),
|
|
242
|
+
c200=Color(0.929, 0.013, 255.508, space=ColorSpace.OKLCH),
|
|
243
|
+
c300=Color(0.869, 0.022, 252.894, space=ColorSpace.OKLCH),
|
|
244
|
+
c400=Color(0.704, 0.04, 256.788, space=ColorSpace.OKLCH),
|
|
245
|
+
c500=Color(0.554, 0.046, 257.417, space=ColorSpace.OKLCH),
|
|
246
|
+
c600=Color(0.446, 0.043, 257.281, space=ColorSpace.OKLCH),
|
|
247
|
+
c700=Color(0.372, 0.044, 257.287, space=ColorSpace.OKLCH),
|
|
248
|
+
c800=Color(0.279, 0.041, 260.031, space=ColorSpace.OKLCH),
|
|
249
|
+
c900=Color(0.208, 0.042, 265.755, space=ColorSpace.OKLCH),
|
|
250
|
+
c950=Color(0.129, 0.042, 264.695, space=ColorSpace.OKLCH),
|
|
251
|
+
),
|
|
252
|
+
gray=_Ramp(
|
|
253
|
+
c50=Color(0.985, 0.002, 247.839, space=ColorSpace.OKLCH),
|
|
254
|
+
c100=Color(0.967, 0.003, 264.542, space=ColorSpace.OKLCH),
|
|
255
|
+
c200=Color(0.928, 0.006, 264.531, space=ColorSpace.OKLCH),
|
|
256
|
+
c300=Color(0.872, 0.01, 258.338, space=ColorSpace.OKLCH),
|
|
257
|
+
c400=Color(0.707, 0.022, 261.325, space=ColorSpace.OKLCH),
|
|
258
|
+
c500=Color(0.551, 0.027, 264.364, space=ColorSpace.OKLCH),
|
|
259
|
+
c600=Color(0.446, 0.03, 256.802, space=ColorSpace.OKLCH),
|
|
260
|
+
c700=Color(0.373, 0.034, 259.733, space=ColorSpace.OKLCH),
|
|
261
|
+
c800=Color(0.278, 0.033, 256.848, space=ColorSpace.OKLCH),
|
|
262
|
+
c900=Color(0.21, 0.034, 264.665, space=ColorSpace.OKLCH),
|
|
263
|
+
c950=Color(0.13, 0.028, 261.692, space=ColorSpace.OKLCH),
|
|
264
|
+
),
|
|
265
|
+
zinc=_Ramp(
|
|
266
|
+
c50=Color(0.985, 0, 0, space=ColorSpace.OKLCH),
|
|
267
|
+
c100=Color(0.967, 0.001, 286.375, space=ColorSpace.OKLCH),
|
|
268
|
+
c200=Color(0.92, 0.004, 286.32, space=ColorSpace.OKLCH),
|
|
269
|
+
c300=Color(0.871, 0.006, 286.286, space=ColorSpace.OKLCH),
|
|
270
|
+
c400=Color(0.705, 0.015, 286.067, space=ColorSpace.OKLCH),
|
|
271
|
+
c500=Color(0.552, 0.016, 285.938, space=ColorSpace.OKLCH),
|
|
272
|
+
c600=Color(0.442, 0.017, 285.786, space=ColorSpace.OKLCH),
|
|
273
|
+
c700=Color(0.37, 0.013, 285.805, space=ColorSpace.OKLCH),
|
|
274
|
+
c800=Color(0.274, 0.006, 286.033, space=ColorSpace.OKLCH),
|
|
275
|
+
c900=Color(0.21, 0.006, 285.885, space=ColorSpace.OKLCH),
|
|
276
|
+
c950=Color(0.141, 0.005, 285.823, space=ColorSpace.OKLCH),
|
|
277
|
+
),
|
|
278
|
+
neutral=_Ramp(
|
|
279
|
+
c50=Color(0.985, 0, 0, space=ColorSpace.OKLCH),
|
|
280
|
+
c100=Color(0.97, 0, 0, space=ColorSpace.OKLCH),
|
|
281
|
+
c200=Color(0.922, 0, 0, space=ColorSpace.OKLCH),
|
|
282
|
+
c300=Color(0.87, 0, 0, space=ColorSpace.OKLCH),
|
|
283
|
+
c400=Color(0.708, 0, 0, space=ColorSpace.OKLCH),
|
|
284
|
+
c500=Color(0.556, 0, 0, space=ColorSpace.OKLCH),
|
|
285
|
+
c600=Color(0.439, 0, 0, space=ColorSpace.OKLCH),
|
|
286
|
+
c700=Color(0.371, 0, 0, space=ColorSpace.OKLCH),
|
|
287
|
+
c800=Color(0.269, 0, 0, space=ColorSpace.OKLCH),
|
|
288
|
+
c900=Color(0.205, 0, 0, space=ColorSpace.OKLCH),
|
|
289
|
+
c950=Color(0.145, 0, 0, space=ColorSpace.OKLCH),
|
|
290
|
+
),
|
|
291
|
+
stone=_Ramp(
|
|
292
|
+
c50=Color(0.985, 0.001, 106.423, space=ColorSpace.OKLCH),
|
|
293
|
+
c100=Color(0.97, 0.001, 106.424, space=ColorSpace.OKLCH),
|
|
294
|
+
c200=Color(0.923, 0.003, 48.717, space=ColorSpace.OKLCH),
|
|
295
|
+
c300=Color(0.869, 0.005, 56.366, space=ColorSpace.OKLCH),
|
|
296
|
+
c400=Color(0.709, 0.01, 56.259, space=ColorSpace.OKLCH),
|
|
297
|
+
c500=Color(0.553, 0.013, 58.071, space=ColorSpace.OKLCH),
|
|
298
|
+
c600=Color(0.444, 0.011, 73.639, space=ColorSpace.OKLCH),
|
|
299
|
+
c700=Color(0.374, 0.01, 67.558, space=ColorSpace.OKLCH),
|
|
300
|
+
c800=Color(0.268, 0.007, 34.298, space=ColorSpace.OKLCH),
|
|
301
|
+
c900=Color(0.216, 0.006, 56.043, space=ColorSpace.OKLCH),
|
|
302
|
+
c950=Color(0.147, 0.004, 49.25, space=ColorSpace.OKLCH),
|
|
303
|
+
),
|
|
304
|
+
mauve=_Ramp(
|
|
305
|
+
c50=Color(0.985, 0, 0, space=ColorSpace.OKLCH),
|
|
306
|
+
c100=Color(0.96, 0.003, 325.6, space=ColorSpace.OKLCH),
|
|
307
|
+
c200=Color(0.922, 0.005, 325.62, space=ColorSpace.OKLCH),
|
|
308
|
+
c300=Color(0.865, 0.012, 325.68, space=ColorSpace.OKLCH),
|
|
309
|
+
c400=Color(0.711, 0.019, 323.02, space=ColorSpace.OKLCH),
|
|
310
|
+
c500=Color(0.542, 0.034, 322.5, space=ColorSpace.OKLCH),
|
|
311
|
+
c600=Color(0.435, 0.029, 321.78, space=ColorSpace.OKLCH),
|
|
312
|
+
c700=Color(0.364, 0.029, 323.89, space=ColorSpace.OKLCH),
|
|
313
|
+
c800=Color(0.263, 0.024, 320.12, space=ColorSpace.OKLCH),
|
|
314
|
+
c900=Color(0.212, 0.019, 322.12, space=ColorSpace.OKLCH),
|
|
315
|
+
c950=Color(0.145, 0.008, 326, space=ColorSpace.OKLCH),
|
|
316
|
+
),
|
|
317
|
+
olive=_Ramp(
|
|
318
|
+
c50=Color(0.988, 0.003, 106.5, space=ColorSpace.OKLCH),
|
|
319
|
+
c100=Color(0.966, 0.005, 106.5, space=ColorSpace.OKLCH),
|
|
320
|
+
c200=Color(0.93, 0.007, 106.5, space=ColorSpace.OKLCH),
|
|
321
|
+
c300=Color(0.88, 0.011, 106.6, space=ColorSpace.OKLCH),
|
|
322
|
+
c400=Color(0.737, 0.021, 106.9, space=ColorSpace.OKLCH),
|
|
323
|
+
c500=Color(0.58, 0.031, 107.3, space=ColorSpace.OKLCH),
|
|
324
|
+
c600=Color(0.466, 0.025, 107.3, space=ColorSpace.OKLCH),
|
|
325
|
+
c700=Color(0.394, 0.023, 107.4, space=ColorSpace.OKLCH),
|
|
326
|
+
c800=Color(0.286, 0.016, 107.4, space=ColorSpace.OKLCH),
|
|
327
|
+
c900=Color(0.228, 0.013, 107.4, space=ColorSpace.OKLCH),
|
|
328
|
+
c950=Color(0.153, 0.006, 107.1, space=ColorSpace.OKLCH),
|
|
329
|
+
),
|
|
330
|
+
mist=_Ramp(
|
|
331
|
+
c50=Color(0.987, 0.002, 197.1, space=ColorSpace.OKLCH),
|
|
332
|
+
c100=Color(0.963, 0.002, 197.1, space=ColorSpace.OKLCH),
|
|
333
|
+
c200=Color(0.925, 0.005, 214.3, space=ColorSpace.OKLCH),
|
|
334
|
+
c300=Color(0.872, 0.007, 219.6, space=ColorSpace.OKLCH),
|
|
335
|
+
c400=Color(0.723, 0.014, 214.4, space=ColorSpace.OKLCH),
|
|
336
|
+
c500=Color(0.56, 0.021, 213.5, space=ColorSpace.OKLCH),
|
|
337
|
+
c600=Color(0.45, 0.017, 213.2, space=ColorSpace.OKLCH),
|
|
338
|
+
c700=Color(0.378, 0.015, 216, space=ColorSpace.OKLCH),
|
|
339
|
+
c800=Color(0.275, 0.011, 216.9, space=ColorSpace.OKLCH),
|
|
340
|
+
c900=Color(0.218, 0.008, 223.9, space=ColorSpace.OKLCH),
|
|
341
|
+
c950=Color(0.148, 0.004, 228.8, space=ColorSpace.OKLCH),
|
|
342
|
+
),
|
|
343
|
+
taupe=_Ramp(
|
|
344
|
+
c50=Color(0.986, 0.002, 67.8, space=ColorSpace.OKLCH),
|
|
345
|
+
c100=Color(0.96, 0.002, 17.2, space=ColorSpace.OKLCH),
|
|
346
|
+
c200=Color(0.922, 0.005, 34.3, space=ColorSpace.OKLCH),
|
|
347
|
+
c300=Color(0.868, 0.007, 39.5, space=ColorSpace.OKLCH),
|
|
348
|
+
c400=Color(0.714, 0.014, 41.2, space=ColorSpace.OKLCH),
|
|
349
|
+
c500=Color(0.547, 0.021, 43.1, space=ColorSpace.OKLCH),
|
|
350
|
+
c600=Color(0.438, 0.017, 39.3, space=ColorSpace.OKLCH),
|
|
351
|
+
c700=Color(0.367, 0.016, 35.7, space=ColorSpace.OKLCH),
|
|
352
|
+
c800=Color(0.268, 0.011, 36.5, space=ColorSpace.OKLCH),
|
|
353
|
+
c900=Color(0.214, 0.009, 43.1, space=ColorSpace.OKLCH),
|
|
354
|
+
c950=Color(0.147, 0.004, 49.3, space=ColorSpace.OKLCH),
|
|
355
|
+
),
|
|
356
|
+
black=Color("#000"),
|
|
357
|
+
white=Color("#fff"),
|
|
358
|
+
)
|
|
359
|
+
|
|
360
|
+
tailwind = struct(color=_palette)
|