docs(README): Add eventual instructions for java
This commit is contained in:
parent
952e03013e
commit
9a45e09f4c
1 changed files with 26 additions and 0 deletions
26
README.md
26
README.md
|
@ -19,6 +19,7 @@
|
|||
|
||||
- Development
|
||||
- [Node Package](#node-package)
|
||||
- [Java Library](#java-library)
|
||||
- [CSS](#css)
|
||||
- [Sass](#sass)
|
||||
- [Tailwind CSS](https://github.com/catppuccin/tailwindcss) (separate repository)
|
||||
|
@ -54,6 +55,31 @@ console.log(variants.latte.lavender.hex) // #7287FD
|
|||
console.log(labels.base.macchiato.hex) // #24273A
|
||||
```
|
||||
|
||||
### Java Library
|
||||
|
||||
**Maven**
|
||||
```xml
|
||||
<!-- https://mvnrepository.com/artifact/catppuccin/palette -->
|
||||
<dependency>
|
||||
<groupId>com.catppuccin</groupId>
|
||||
<artifactId>palette</artifactId>
|
||||
<version>VERSION</version>
|
||||
</dependency>
|
||||
|
||||
```
|
||||
|
||||
**Gradle**
|
||||
```gradle
|
||||
repositories {
|
||||
mavenCentral()
|
||||
}
|
||||
|
||||
dependencies {
|
||||
// https://mvnrepository.com/artifact/catppuccin/palette
|
||||
implementation group: 'com.catppuccin', name: 'palette', version: 'VERSION'
|
||||
}
|
||||
```
|
||||
|
||||
### CSS
|
||||
|
||||
Import the palettes:
|
||||
|
|
Loading…
Reference in a new issue