Skip to content

Commit

Permalink
remove fr description, change english description and add text when no
Browse files Browse the repository at this point in the history
color palettes are present in the home screen
  • Loading branch information
kamalkishor1991 committed Mar 23, 2024
1 parent cfd688b commit 05c31cb
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 66 deletions.
23 changes: 12 additions & 11 deletions android/fastlane/metadata/android/en-US/full_description.txt
Original file line number Diff line number Diff line change
@@ -1,21 +1,22 @@
Croma is a simple color palette manager and color picker made for designers, aiming to make it quick and fun to create and share color palettes on the go.
HueHive is a color palette manager(powered by AI) and color picker made for designers, aiming to make it quick and fun to create and share color palettes on the go.


KEY FEATURES

• Generate, preview and modify color palettes using HueHive AI using a chat assistant.
• Automatically extract prominent colors from an image from your gallery or camera.
• Manually pick any number of colors in an object with your camera.
• Manually pick any number of colors from images.
• Recognize and save hex color codes in the text using your camera.
• Generate palettes with various color models such as complementary, split-complementary, triadic, tetradic, analogous, monochromatic etc.
• Generate palettes with various color models such as complementary, split complementary, Split complementary CW, split complementary CCW, triadic, Clash, natural, analogous, four tone CW,four tone CCW, Five tone A to E, Six tone CW, Six tone CCW, monochromatic.
• Share palettes with a link for quick preview.
• View various information about a color and convert to other color codes.
• HEX, RGB, HSL, HSV, HWB, CMYK, CIELAB, Lumninance and darkness
• Copy color codes to your clipboard with a tap.
• Add colors using various color code formats including CSS named colors.
• A color palette library including Material design palettes, CSS named colors etc.
• A color palette library including Material design palettes, CSS named colors, tailwind color palettes
• Download PNG of the palette
• Rearange colors in a palette
• Generate color palettes using ChatGPT(AI)
• Rearange colors in a palette with ease


PRO BENEFITS
Expand All @@ -35,24 +36,24 @@ Grab color codes from any random text, such as an email your client sent, or som
Generate harmonious color schemes from an existing color using various models such as complementary, split-complementary, triadic, tetradic, analogous, monochromatic etc. and save them to your library.


Sharing is important, so we made it easier than ever to share color palettes. The recipient gets a link to quickly preview the colors in Croma. Even if he doesn't have the app.
Sharing is important, so we made it easier than ever to share color palettes. The recipient gets a link to quickly preview the colors in HueHive. Even if they doesn't have the app.


See all sorts of details about a color. Convert any color code to various color code formats easily. When adding a color, you can use any color code format including the CSS named colors. Copy the color code to your clipboard with just a tap.


We made Croma to help designers manage colors easily, because colors matter. While it's very easy to have lots of features and be bloated, we like to keep things simple, helping you with the things you need the most and allow you to work seamlessly without getting in your way.
We made HueHive to help designers manage colors easily, because colors matter. While it's very easy to have lots of features and be bloated, we like to keep things simple, helping you with the things you need the most and allow you to work seamlessly without getting in your way.


Croma can be helpful in various tasks, such as web and graphic design, anywhere colors are needed. It's a must-have productivity tool for designers.
HueHive can be helpful in various tasks, such as web and graphic design, anywhere colors are needed. It's a must-have productivity tool for designers.

Generate color palettes in our website huehive using ChatGPT and view and edit palettes in the app.
You can also generate color palettes in our website huehive using AI (ChatGPT) and view and edit palettes in the app.


OPEN SOURCE

We believe in open source. The source code for Croma is hosted at:
https://github.com/croma-app/croma-react
We believe in open source. The source code for HueHive is hosted at:
https://github.com/croma-app/huehive-mobile-app

Support:
Have any question or suggestion? Please join our discord channel:
Expand Down
51 changes: 0 additions & 51 deletions android/fastlane/metadata/android/fr-FR/full_description.txt

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

1 change: 0 additions & 1 deletion android/fastlane/metadata/android/fr-FR/title.txt

This file was deleted.

1 change: 0 additions & 1 deletion android/fastlane/metadata/android/fr-FR/video.txt

This file was deleted.

1 change: 1 addition & 0 deletions components/PaletteCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export const PaletteCard = (props) => {
onPress={(event) => {
event.preventDefault();
event.stopPropagation();
logEvent('home_screen_palette_card_delete');
setAnimationType('fadeOutRightBig');
setTimeout(() => {
deletePaletteLocal();
Expand Down
21 changes: 20 additions & 1 deletion screens/HomeScreen.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
import React, { useEffect, useState } from 'react';
import Color from 'pigment/full';
import { ActivityIndicator, Linking, Platform, ScrollView, StyleSheet, View } from 'react-native';
import {
ActivityIndicator,
Linking,
Platform,
ScrollView,
StyleSheet,
View,
Text
} from 'react-native';
import { PaletteCard } from '../components/PaletteCard';
import GridActionButton from '../components/GridActionButton';
import { CromaContext } from '../store/store';
Expand All @@ -9,6 +17,7 @@ import EmptyView from '../components/EmptyView';
import ShareMenu from '../libs/ShareMenu';
import { logEvent } from '../libs/Helpers';
import PropTypes from 'prop-types';
import { material } from 'react-native-typography';

const HomeScreen = function ({ navigation, route }) {
const { isLoading, allPalettes, isPro, setColorList, setSuggestedName, clearPalette } =
Expand Down Expand Up @@ -72,6 +81,11 @@ const HomeScreen = function ({ navigation, route }) {
<View style={styles.container}>
{pickImageLoading ? <ActivityIndicator /> : <View />}
<ScrollView showsVerticalScrollIndicator={false}>
{allPalettes.length == 0 && (
<Text style={styles.noColorPaletteMessage}>
No color palettes found. Tap the + button below to create a new one.
</Text>
)}
{allPalettes.map((palette) => {
return (
<PaletteCard
Expand Down Expand Up @@ -108,5 +122,10 @@ const styles = StyleSheet.create({
padding: 8,
justifyContent: 'center',
position: 'relative'
},
noColorPaletteMessage: {
...material.headline,
textAlign: 'center',
marginTop: 100
}
});

0 comments on commit 05c31cb

Please sign in to comment.