Skip to content

lightlibs/LegacyColorCodeParser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LegacyColorCodeParser

Description

A simple library to parse hex formats (&#rrggbb) into the legacy (&x&r&r&g&g&b&b) format.

Maven

    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
    <dependency>
        <groupId>com.github.lightlibs</groupId>
        <artifactId>LegacyColorCodeParser</artifactId>
        <version>INSERT VERSION HERE</version>
    </dependency>

Gradle

    repositories {
        maven { url 'https://jitpack.io' }
    }
    dependencies {
        implementation 'com.github.lightlibs:LegacyColorCodeParser:INSERT VERSION HERE'
    }