Skip to content

haneenmahd/apple-colors

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Ā 

History

69 Commits
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 
Ā 

Repository files navigation

apple-colors

A Library for using Colors used by applešŸŽ in your User InterfacešŸŒŒ and Getting use of the Color API functions.

Support

apple-colors is supported mostly across all Javascript Frameworks and libraries.

How to Install

Using npm

npm i apple-colors

Using yarn

yard add apple-colors

Usage

Using Colors on Your Web App Probably in this case we Have both Light and Dark Mode Colors For You.

For Eg :-

  • Using with Styled Components
import { Colors } from "apple-colors";

const Button = styled.button`
  background: ${Colors.iOS.Dark.Blue};
  color: ${Colors.iOS.Light.Grey1}
  ...Your Styling
`;
  • Using with React inline Styling
const MyColor = () => <h1 style={{ background: Colors.iOS.Dark.Teal }}>Using Apple Colors</h1>;

There are Colors on these Platforms too...

  • MacOS
  • iOS
  • WatchOS(This contains the most colors);

API

  • mixUp: a simple function to mix colors and turn them into gradients so easily.
    import { Color } from "apple-colors";
    
    const color = Color.mixUp(["#fff", /* More colors here */], 20 /* rotation degree */)

Developer

Give us a star šŸŒŸ on GitHub

LICENSE

Apple Colors is licensed under MIT License.