Examples
App elements
Assets and media
Fundamentals
Intents
Design interaction
Drag and drop
Design elements
Localization
Content replacement
Color
Color picker for Brand, Document, and custom colors.
Running this example
To run this example locally:
-
If you haven't already, create a new app in the Developer Portal(opens in a new tab or window). For more information, refer to our Quickstart guide.
-
In your app's configuration on the Developer Portal(opens in a new tab or window), ensure the "Development URL" is set to
http://localhost:8080
. -
Clone the starter kit:
git clone https://github.com/canva-sdks/canva-apps-sdk-starter-kit.gitcd canva-apps-sdk-starter-kitSHELL -
Install dependencies:
npm installSHELL -
Run the example:
npm run start colorSHELL -
Click the Preview URL link shown in the terminal to open the example in the Canva editor.
Example app source code
// For usage information, see the README.md file.import { Rows, Swatch, Text } from "@canva/app-ui-kit";import type {Anchor,ColorSelectionEvent,ColorSelectionScope,} from "@canva/asset";import { openColorSelector } from "@canva/asset";import { useState } from "react";import * as styles from "styles/components.css";export const App = () => {const [color, setColor] = useState<string | undefined>(undefined);const onColorSelect = async <T extends ColorSelectionScope>(e: ColorSelectionEvent<T>,) => {if (e.selection.type === "solid") {setColor(e.selection.hexString);}};const onRequestOpenColorSelector = (boundingRect: Anchor) => {openColorSelector(boundingRect, {onColorSelect,scopes: ["solid"],});};return (<div className={styles.scrollContainer}><Rows spacing="2u"><Text>This example demonstrates how apps can pick Brand, Document, andcustom colors in an app.</Text><Swatchfill={[color]}onClick={(e) =>onRequestOpenColorSelector(e.currentTarget.getBoundingClientRect())}/></Rows></div>);};
TYPESCRIPT
import { createRoot } from "react-dom/client";import { App } from "./app";import "@canva/app-ui-kit/styles.css";import { AppUiProvider } from "@canva/app-ui-kit";const root = createRoot(document.getElementById("root") as Element);function render() {root.render(<AppUiProvider><App /></AppUiProvider>,);}render();if (module.hot) {module.hot.accept("./app", render);}
TYPESCRIPT
# UI color selectionDemonstrates how to implement color selection using the color selector interface. Shows color picker integration, brand color access, and color swatch functionality for design consistency.For API reference docs and instructions on running this example, see: https://www.canva.dev/docs/apps/examples/color/.Related examples: See design_elements/text_elements for applying selected colors to elements, or other UI examples for design system integration.NOTE: This example differs from what is expected for public apps to pass a Canva review:- Color accessibility validation is not implemented. Production apps must ensure color combinations meet WCAG 2.0 AA contrast standards- Brand guideline integration is not demonstrated. Production apps should respect brand colors when available- Error handling is simplified for demonstration. Production apps must implement comprehensive error handling with clear user feedback and graceful failure modes- Internationalization is not implemented. Production apps must support multiple languages using the `@canva/app-i18n-kit` package to pass Canva review requirements
MARKDOWN
API Reference
Need Help?
- Join our Community Forum(opens in a new tab or window)
- Report issues with this example on GitHub(opens in a new tab or window)