https://github.com/danielshervheim/unity-color-palettes
A system to keep UnityEngine.Graphic colors consistent throughout a project.
https://github.com/danielshervheim/unity-color-palettes
color-palettes colors tools unity utilities
Last synced: 12 months ago
JSON representation
A system to keep UnityEngine.Graphic colors consistent throughout a project.
- Host: GitHub
- URL: https://github.com/danielshervheim/unity-color-palettes
- Owner: danielshervheim
- License: bsd-3-clause
- Created: 2021-03-05T23:23:51.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-11-26T21:42:58.000Z (over 2 years ago)
- Last Synced: 2025-06-11T02:51:05.279Z (about 1 year ago)
- Topics: color-palettes, colors, tools, unity, utilities
- Language: ShaderLab
- Homepage:
- Size: 3.11 MB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unity-color-palettes
Please see the [readme](Packages/com.dss.color-palettes/README.md) in the package directory for information on all of the included scripts.
## How To Install
The color-palettes package uses the [scoped registry](https://docs.unity3d.com/Manual/upm-scoped.html) feature to import
dependent packages. Please add the following sections to the package manifest
file (`Packages/manifest.json`).
To the `scopedRegistries` section:
```
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
```
To the `dependencies` section:
```
"com.dss.color-palettes": "1.3.2"
```
After changes, the manifest file should look like below:
```
{
"scopedRegistries": [
{
"name": "DSS",
"url": "https://registry.npmjs.com",
"scopes": [ "com.dss" ]
}
],
"dependencies": {
"com.dss.color-palettes": "1.3.2",
...
```