├── .gitignore ├── LICENSE ├── README.md ├── README_CN.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── funny │ │ └── cmaterialcolors │ │ └── test │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── funny │ │ │ └── cmaterialcolors │ │ │ └── test │ │ │ ├── MainActivity.kt │ │ │ ├── ui │ │ │ └── theme │ │ │ │ ├── Color.kt │ │ │ │ ├── Shape.kt │ │ │ │ ├── Theme.kt │ │ │ │ └── Type.kt │ │ │ └── utils │ │ │ └── CommonUtils.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ └── test │ └── java │ └── com │ └── funny │ └── cmaterialcolors │ └── test │ └── ExampleUnitTest.kt ├── demo-1.0.0.apk ├── generate_code_by_xml.py ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── lib ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro ├── repos │ └── releases │ │ └── com │ │ └── funny │ │ └── composelib │ │ └── cmaterialcolors │ │ ├── 1.0.19 │ │ ├── cmaterialcolors-1.0.19.aar │ │ ├── cmaterialcolors-1.0.19.aar.md5 │ │ ├── cmaterialcolors-1.0.19.aar.sha1 │ │ ├── cmaterialcolors-1.0.19.aar.sha256 │ │ ├── cmaterialcolors-1.0.19.aar.sha512 │ │ ├── cmaterialcolors-1.0.19.module │ │ ├── cmaterialcolors-1.0.19.module.md5 │ │ ├── cmaterialcolors-1.0.19.module.sha1 │ │ ├── cmaterialcolors-1.0.19.module.sha256 │ │ ├── cmaterialcolors-1.0.19.module.sha512 │ │ ├── cmaterialcolors-1.0.19.pom │ │ ├── cmaterialcolors-1.0.19.pom.md5 │ │ ├── cmaterialcolors-1.0.19.pom.sha1 │ │ ├── cmaterialcolors-1.0.19.pom.sha256 │ │ └── cmaterialcolors-1.0.19.pom.sha512 │ │ ├── 1.0.20 │ │ ├── cmaterialcolors-1.0.20.aar │ │ ├── cmaterialcolors-1.0.20.aar.md5 │ │ ├── cmaterialcolors-1.0.20.aar.sha1 │ │ ├── cmaterialcolors-1.0.20.aar.sha256 │ │ ├── cmaterialcolors-1.0.20.aar.sha512 │ │ ├── cmaterialcolors-1.0.20.module │ │ ├── cmaterialcolors-1.0.20.module.md5 │ │ ├── cmaterialcolors-1.0.20.module.sha1 │ │ ├── cmaterialcolors-1.0.20.module.sha256 │ │ ├── cmaterialcolors-1.0.20.module.sha512 │ │ ├── cmaterialcolors-1.0.20.pom │ │ ├── cmaterialcolors-1.0.20.pom.md5 │ │ ├── cmaterialcolors-1.0.20.pom.sha1 │ │ ├── cmaterialcolors-1.0.20.pom.sha256 │ │ └── cmaterialcolors-1.0.20.pom.sha512 │ │ ├── 1.0.21 │ │ ├── cmaterialcolors-1.0.21.aar │ │ ├── cmaterialcolors-1.0.21.aar.md5 │ │ ├── cmaterialcolors-1.0.21.aar.sha1 │ │ ├── cmaterialcolors-1.0.21.aar.sha256 │ │ ├── cmaterialcolors-1.0.21.aar.sha512 │ │ ├── cmaterialcolors-1.0.21.module │ │ ├── cmaterialcolors-1.0.21.module.md5 │ │ ├── cmaterialcolors-1.0.21.module.sha1 │ │ ├── cmaterialcolors-1.0.21.module.sha256 │ │ ├── cmaterialcolors-1.0.21.module.sha512 │ │ ├── cmaterialcolors-1.0.21.pom │ │ ├── cmaterialcolors-1.0.21.pom.md5 │ │ ├── cmaterialcolors-1.0.21.pom.sha1 │ │ ├── cmaterialcolors-1.0.21.pom.sha256 │ │ └── cmaterialcolors-1.0.21.pom.sha512 │ │ ├── maven-metadata.xml │ │ ├── maven-metadata.xml.md5 │ │ ├── maven-metadata.xml.sha1 │ │ ├── maven-metadata.xml.sha256 │ │ └── maven-metadata.xml.sha512 └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── funny │ └── cmaterialcolors │ └── CMaterialColors.kt ├── screen_1.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/README_CN.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/funny/cmaterialcolors/test/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/androidTest/java/com/funny/cmaterialcolors/test/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/funny/cmaterialcolors/test/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/java/com/funny/cmaterialcolors/test/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Shape.kt -------------------------------------------------------------------------------- /app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/java/com/funny/cmaterialcolors/test/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/java/com/funny/cmaterialcolors/test/utils/CommonUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/java/com/funny/cmaterialcolors/test/utils/CommonUtils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/test/java/com/funny/cmaterialcolors/test/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/app/src/test/java/com/funny/cmaterialcolors/test/ExampleUnitTest.kt -------------------------------------------------------------------------------- /demo-1.0.0.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/demo-1.0.0.apk -------------------------------------------------------------------------------- /generate_code_by_xml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/generate_code_by_xml.py -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk11 -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /lib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/build.gradle -------------------------------------------------------------------------------- /lib/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/proguard-rules.pro -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.md5: -------------------------------------------------------------------------------- 1 | 8c5da814b072f935b6d01919a1f9301a -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.aar.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.md5: -------------------------------------------------------------------------------- 1 | a393d2f5a0e293b7da066126f0597110 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.module.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.md5: -------------------------------------------------------------------------------- 1 | f772512639cb9d85669ec6d5b079f5ef -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.19/cmaterialcolors-1.0.19.pom.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.md5: -------------------------------------------------------------------------------- 1 | 8c5da814b072f935b6d01919a1f9301a -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.aar.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.md5: -------------------------------------------------------------------------------- 1 | b6873f4dcce854fbf255dea566118234 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.module.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom.md5: -------------------------------------------------------------------------------- 1 | 0e00a1693caffeb0c3ed01debdeafc0e -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom.sha1: -------------------------------------------------------------------------------- 1 | c7b7c4cf1dd270daf2c9f4e08907738bd4cfa9aa -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.20/cmaterialcolors-1.0.20.pom.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.md5: -------------------------------------------------------------------------------- 1 | 2124d9f3c061a6a3c8e616ab11417269 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.aar.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module.md5: -------------------------------------------------------------------------------- 1 | f1d987c8ae02502a1eea37107d458ba5 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module.sha1: -------------------------------------------------------------------------------- 1 | 653c099c43c2bdf4855a5566a6cd33723b66a8fe -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.module.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.md5: -------------------------------------------------------------------------------- 1 | 600244b3c506e66e488bf5c9192e05f1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/1.0.21/cmaterialcolors-1.0.21.pom.sha512 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.md5: -------------------------------------------------------------------------------- 1 | 0adc46cc9ae9eeff67ec335348b8a48c -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.sha1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.sha1 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.sha256: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.sha256 -------------------------------------------------------------------------------- /lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.sha512: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/repos/releases/com/funny/composelib/cmaterialcolors/maven-metadata.xml.sha512 -------------------------------------------------------------------------------- /lib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /lib/src/main/java/com/funny/cmaterialcolors/CMaterialColors.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/lib/src/main/java/com/funny/cmaterialcolors/CMaterialColors.kt -------------------------------------------------------------------------------- /screen_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/screen_1.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FunnySaltyFish/CMaterialColors/HEAD/settings.gradle --------------------------------------------------------------------------------