Use Sketch mockups to design Retool internal tools before building them. There is no direct Sketch-to-Retool export — the workflow is a design handoff: use Sketch's Inspect panel to extract colors, typography, and spacing, then manually recreate the layout in Retool's component library. For design token automation, connect Sketch's Cloud API as a REST API Resource to pull design assets programmatically into Retool.
| Fact | Value |
|---|---|
| Tool | Sketch |
| Category | Design |
| Method | Design-to-Code Bridge |
| Difficulty | Beginner |
| Time required | Varies by project complexity |
| Last updated | April 2026 |
How Sketch and Retool Work Together
Sketch and Retool serve complementary roles in internal tool development. Sketch is the design layer — a macOS-native application where designers create high-fidelity mockups, develop component libraries, and establish the visual language for internal tools. Retool is the implementation layer — where engineers connect those designs to real data sources and business logic. The connection between them is a design handoff process: the Sketch Inspect panel documents the exact measurements and values engineers use to configure Retool components.
Sketch's approach to this handoff differs from Figma's in a few important ways. Sketch files are local .sketch files (macOS only), shared via Sketch Cloud or third-party version control. The Inspect panel is accessible in Sketch's right-side panel when viewing shared links on sketch.cloud or when opening files directly in the macOS app. Unlike Figma's web-based Inspect that any browser can access, Sketch inspection requires either the macOS app or a Cloud link. Teams that use Sketch with Zeplin (a dedicated design handoff tool) can publish from Sketch to Zeplin to give engineers a browser-based inspection interface — this is a common workflow for Sketch-using teams working with Retool developers who may not have Sketch installed.
For teams interested in automating design-to-Retool consistency, Sketch Cloud's API provides programmatic access to documents, artboards, and design token data. This makes it possible to build a Retool dashboard that tracks Sketch file updates, extracts the latest design token values, and helps teams identify when Retool app styling has drifted from the approved Sketch design system — a valuable governance tool for large organizations maintaining multiple Retool apps.
Integration method
Sketch and Retool are connected through a design handoff workflow rather than a direct technical integration. Designers create Retool app layouts in Sketch using its Inspect panel to document spacing, colors, and typography for engineers to implement in Retool's component library. For teams that want programmatic access to Sketch design data, Sketch's Cloud API can be connected as a REST API Resource in Retool, enabling dashboards that track design file activity and extract design tokens automatically.
Prerequisites
- Sketch installed on macOS (or access to Sketch Cloud shared document links) with the designs you want to implement in Retool
- A Retool account (Cloud or self-hosted) with permission to create and edit apps
- Basic familiarity with Retool's component library — understanding what Table, Container, Form, Modal, and Chart components do and how the grid layout works
- For Sketch Cloud API integration: a Sketch Cloud account with Personal Access Token from sketch.com/me/apps (developer settings)
- For teams using Zeplin for handoff: a Zeplin account with the relevant Sketch project published
Step-by-step guide
Analyze your Sketch mockup and plan the Retool component mapping
Before opening Retool, invest time understanding the Sketch design and creating a systematic mapping from Sketch elements to Retool components. Open your Sketch file (or the Sketch Cloud shared link) and activate the Inspect panel by selecting a layer and looking at the right-side panel, which automatically shows inspection details when you click any element. Work through the artboard systematically, identifying each element and its Retool equivalent: - Sketch Artboard (top-level screen container) → Retool app canvas - Sketch Group with fixed position (sidebar, header, footer) → Retool Container with fixed layout - Sketch Rectangle with content (card component) → Retool Container with background color, border-radius, and shadow from Sketch Inspect - Sketch Table / data grid pattern → Retool Table component (configure columns to match Sketch's column headers) - Sketch Input/Form elements → Retool Form, Text Input, Select, or Date Picker components - Sketch Button (with background fill) → Retool Button component — map Sketch's fill color to Retool's button background color override - Sketch Text layers → Retool Text component — match Sketch's font size, weight, and color from the Inspect panel - Sketch Dropdown/Select → Retool Select component - Sketch Modal/Overlay artboard → Retool Modal component - Sketch Chart/Graph artboard → Retool Chart component (Plotly.js-based) - Sketch Icon layers (SVG) → Retool Icon component (check if the icon name matches Retool's Ant Design icon set) or embedded SVG in a Text component For Sketch Symbols (reusable components in Sketch) that have no direct Retool equivalent — custom data visualizations, branded card patterns, specialized input controls — flag them as Custom Component candidates. Custom Components are React components embedded in an iframe and require significantly more implementation effort than native Retool components. Document this mapping before starting implementation. A simple list in Notion, Confluence, or even a Sketch comment annotation serves as the implementation spec. Share it with the designer so they can validate the planned approach before engineering begins.
Pro tip: Ask your designer to use a Retool-aware component kit in Sketch that maps directly to Retool's component library — several community-created Sketch UI kits exist that use Retool's actual component shapes and sizes. Designing with these kit components prevents implementation gaps where a Sketch design assumes UI patterns Retool can't reproduce natively.
Expected result: You have a documented component mapping from each significant Sketch layer or group to its Retool component equivalent, plus a list of custom UI patterns that require Custom Component implementation. Designers have reviewed and validated the mapping.
Extract design values from Sketch's Inspect panel
Sketch's Inspect panel is your source of truth for all visual styling values. Select any layer in Sketch and the right panel switches to inspection mode, showing the exact CSS-compatible values for that element. For colors: select any shape or text layer and look at the Fill section in Inspect. Colors appear as hex codes (e.g., #1E40AF) or RGBA values. Retool's component color pickers accept hex values directly. For design systems with defined color styles, Sketch shows the style name alongside the hex value — document both the semantic name (primary, secondary, surface) and the hex code. For typography: select any text layer and Inspect shows Font Family (e.g., 'Inter'), Font Weight (Regular, Medium, SemiBold, Bold), Font Size (in points, equivalent to px in web), Line Height, and Letter Spacing. Apply these to Retool Text components in their properties panel. If the font is a non-system font, you'll need to add it as a Custom CSS import in Retool's App Themes settings (Settings → Appearance → Custom CSS). For spacing: select a parent group or frame and Inspect shows the padding values and the gaps between child elements. In Sketch, layout spacing often comes from Auto Layout (Sketch's version of CSS flexbox) — the padding and spacing values from Sketch's Auto Layout panel translate directly to Retool container padding and component spacing settings. For border and border-radius: Inspect shows Border color, Border width, and Corner radius for any rectangle or shape. Apply these to Retool Container components in their Border and Appearance settings. Retool's Container component supports border color, border width, and border radius. For shadows: Sketch's Inspect shows box shadow as 'x: y: blur: spread: color:' values — this is the same CSS box-shadow syntax. Apply these as Custom CSS on specific containers in your Retool app by adding a class name to the component and defining the shadow in the App Themes Custom CSS section. Create a reference document listing your design system's core values: background colors, surface colors, text colors, primary action color, border color, base font family, body and heading sizes, and the standard spacing scale. You'll reference this throughout Retool configuration.
1/* Custom CSS for Retool App — derived from Sketch design system values */2/* Apply in Retool: Settings → Appearance → Custom CSS */34/* Import custom font used in Sketch design */5@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');67:root {8 --color-primary: #3B82F6;9 --color-primary-dark: #1D4ED8;10 --color-surface: #FFFFFF;11 --color-background: #F8FAFC;12 --color-sidebar: #1E293B;13 --color-sidebar-text: #94A3B8;14 --color-sidebar-active: #3B82F6;15 --color-border: #E2E8F0;16 --color-text-primary: #0F172A;17 --color-text-secondary: #64748B;18 --border-radius-card: 8px;19 --shadow-card: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);20 --font-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;21}2223body {24 font-family: var(--font-base);25 background-color: var(--color-background);26}2728/* Sidebar navigation items */29.sidebar-nav-item {30 padding: 8px 16px;31 border-radius: 6px;32 color: var(--color-sidebar-text);33 font-size: 14px;34 font-weight: 500;35}3637/* Data card styling */38.data-card {39 background: var(--color-surface);40 border-radius: var(--border-radius-card);41 box-shadow: var(--shadow-card);42 border: 1px solid var(--color-border);43}Pro tip: Sketch's Color Variables (Shared Color Styles) are the most reliable values to extract — these represent the intentional design system choices rather than one-off color uses. Export these first and build your Retool color reference from them, then fill in specific component values as needed.
Expected result: You have a reference document with all color hex values, font specifications, spacing values, and border radius/shadow values from the Sketch design. A Custom CSS stylesheet incorporating these values is prepared for application in Retool's Appearance settings.
Implement the layout structure in Retool using Container and Columns components
Retool's layout system uses a 12-column grid on the app canvas, with Container components grouping elements and Columns components creating horizontal splits. Understanding how to translate Sketch's artboard structure into this system is the key implementation skill. For a typical Sketch admin dashboard layout with a fixed-width sidebar and a main content area: 1. Drag a Columns component onto the Retool canvas. Set the left column to a fixed width matching the Sketch sidebar width (e.g., 240px or the equivalent fraction of the canvas width). The right column takes the remaining space. 2. Inside the left Columns section, drag a Container component. Set its background color to the Sketch sidebar color extracted from the Inspect panel. Fill the container with Text components (menu labels) and Icon components (nav icons), styled to match the Sketch sidebar design. 3. Inside the right Columns section, add your main content — typically a Table component for the data grid, with any action Buttons and Filter components above it. For card-based layouts from Sketch (a grid of metric cards, for example): 1. Add another Columns component inside the main content area, set to equal-width columns matching the number of cards in the Sketch design. 2. Inside each column, add a Container component and configure it as a card — background color, border-radius (from Sketch Inspect corner radius), optional border (from Sketch Inspect border settings), and padding matching the Sketch auto-layout padding. 3. Inside each card Container, add Text components for the metric value and label, styled with the typography values from Sketch Inspect. For Sketch modal screens (separate artboards showing overlay dialogs): 1. Use Retool's Modal component. Right-click the canvas or find Modal in the Component panel. 2. Configure the Modal width to match the Sketch dialog artboard width. 3. Populate the Modal's content with components matching the Sketch dialog layout — form inputs, buttons, text sections. 4. Attach the Modal's open trigger to a button's event handler: Button → On Click → Show modal. For complex Sketch layouts with absolute-positioned elements that don't fit the 12-column grid, switch specific Containers to Freeform layout mode (Container → Layout settings → Freeform). This allows pixel-level positioning similar to Sketch's free-form canvas, at the cost of reduced responsiveness.
Pro tip: Sketch Auto Layout's 'spacing between items' value translates to the gap between components in Retool. When two components in Retool appear visually too close or too far apart compared to the Sketch mockup, adjust by dragging the component boundary handles in the Retool canvas editor to match the Sketch spacing.
Expected result: The Retool canvas shows a structural layout that matches the Sketch design — sidebar proportions, content area divisions, and card grid arrangements are correctly positioned and sized. Detailed styling is applied in the next step.
Apply Sketch design values to Retool component styling
With the layout structure in place, apply the specific visual values from your Sketch Inspect reference document to each Retool component. Open a Retool app and click any component to open its Properties inspector on the right side of the canvas. For Container components acting as cards or panels: in the Properties panel, find the Style section. Set Background Color using the hex value from Sketch. Set Border to the color and width from Sketch Inspect. Set Border Radius to the corner radius value from Sketch. For shadows, use the Class Names field and define a shadow class in the Custom CSS (as set up in the previous step). For Button components: set the Button's variant (Primary, Secondary, Danger) and override the background color using the Sketch primary action color. Match the border radius to Sketch's button corner radius. Select the size (small/medium/large) that closest matches the Sketch button height. For Table components: configure column header background color and text style in the Table's Style section. Set row height to match the Sketch table row height. Configure alternating row colors if the Sketch design shows them. Apply border style to match Sketch's table border design. For Text components: in the Properties panel, find the text formatting options — Font Size, Font Weight, Text Color. Apply the values from your Sketch typography reference. For multiple text styles, use Retool's built-in heading, body, and label presets as starting points and override the specific values. For the app-wide theme: navigate to Settings → App Themes in the top menu of your Retool app. Here you can set base font family (paste the font name from Sketch, e.g., 'Inter'), default text size, and theme colors. These apply globally to all components and reduce the number of individual overrides needed.
1/* Targeted component style overrides */2/* Add class names to components via Properties panel,3 then define styles in Settings → Appearance → Custom CSS */45/* Navigation sidebar item - active state */6.nav-item-active {7 background-color: rgba(59, 130, 246, 0.12);8 color: #3B82F6;9 font-weight: 600;10}1112/* KPI metric card */13.kpi-card {14 background: #FFFFFF;15 border-radius: 8px;16 border: 1px solid #E2E8F0;17 padding: 20px 24px;18 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);19}2021/* KPI value text */22.kpi-value {23 font-size: 28px;24 font-weight: 700;25 color: #0F172A;26 line-height: 1.2;27 margin-bottom: 4px;28}2930/* Status badge */31.badge-active {32 background: #D1FAE5;33 color: #065F46;34 border-radius: 9999px;35 padding: 2px 10px;36 font-size: 12px;37 font-weight: 500;38}Pro tip: Before writing Custom CSS for a styling requirement, check Retool's Properties panel thoroughly — many styling options that appear to require CSS (border-radius, background color, text color, padding) have direct settings in the Properties panel that are easier to configure and more maintainable than CSS overrides.
Expected result: Retool components visually match the Sketch design specifications. Colors, typography, border-radius, and shadows from the Sketch Inspect panel are applied to the corresponding Retool components. The overall visual result is recognizably close to the approved Sketch mockup.
Connect the Sketch Cloud API to Retool for design system automation
For teams that want programmatic access to their Sketch design files — to build design system tracking dashboards, extract design tokens automatically, or monitor design file activity — Sketch Cloud provides a REST API. This step is optional and applies to teams with Sketch for Teams subscriptions. First, generate a Personal Access Token from the Sketch web app: log into sketch.com, go to your profile settings, then API Tokens, and create a new token. Store this in a Retool configuration variable (Settings → Configuration Variables) marked as secret. In Retool, navigate to the Resources tab and click Add Resource → REST API. Configure: - Name: 'Sketch Cloud API' - Base URL: https://api.sketch.com - Authentication: Bearer Token with {{ environment.variables.SKETCH_CLOUD_TOKEN }} Click Save Changes. With the resource configured, create queries to access Sketch Cloud data: - GET /workspaces — lists all Sketch workspaces your account belongs to - GET /workspace/{workspace_id}/shares — lists all shared documents in the workspace - GET /shares/{share_id}/versions — lists document version history - GET /share/{share_id}/document — retrieves the document's artboard data Bind these queries to Table components in a Retool dashboard. Show all Sketch files in the workspace with their last-updated timestamps, artboard counts, and current version. Add a 'Approved for Dev' status column backed by your own PostgreSQL database — when a designer marks a file as approved, write a record to your database and display the status next to each file. This creates a lightweight design governance workflow where engineering teams can see which Sketch designs are approved for implementation without requiring back-and-forth messages.
1// JavaScript transformer for Sketch Cloud shares response2// Formats workspace documents for the Retool governance dashboard3const shares = data.shares || data || [];45return shares.map(share => ({6 document_name: share.name || 'Unnamed',7 document_id: share.shortId || share.id,8 cloud_url: share.webUrl || `https://www.sketch.com/s/${share.shortId}`,9 last_updated: share.updatedAt10 ? new Date(share.updatedAt).toLocaleDateString()11 : 'Unknown',12 created_by: share.user ? share.user.name : 'Unknown',13 is_public: share.isPublic ? 'Public' : 'Private',14 artboard_count: share.artboardCount || 'N/A'15}));Pro tip: The Sketch Cloud API is primarily designed for Sketch's own ecosystem tools. Its documentation is less comprehensive than APIs from dedicated platforms. Test endpoints carefully and check the API response structure before writing transformers — the response schema may differ between document types and workspace configurations.
Expected result: A Retool design governance dashboard shows all Sketch Cloud documents in your workspace with name, last updated date, creator, and custom approval status. The Sketch Cloud API Resource is available for future design data queries.
Common use cases
Translate a Sketch admin panel mockup into a Retool app
A designer has created a Sketch mockup of an internal admin dashboard with a left navigation sidebar, a main data table area, and a right-side detail panel. Use Sketch's Inspect panel to extract the exact color values, font sizes, spacing, and component dimensions. Map each Sketch artboard layer to its Retool equivalent, configure the layout using Retool's Container and Columns system, and apply extracted styling values to match the approved design. Document the component mapping in the Sketch file as annotations for the development team.
Translate this Sketch admin dashboard into Retool: the artboard has a left sidebar (240px, #1E293B background) with navigation icons and labels, a main content area with a data Table spanning full height, and a right detail panel (320px) that slides in when a Table row is selected. Extract from Sketch: primary color #3B82F6, surface color #FFFFFF, body font 14px Inter Regular, heading font 16px Inter SemiBold. Implement using Retool's Container for the sidebar, Columns for the layout, Table for the data grid, and Modal for the detail panel.
Copy this prompt to try it in Retool
Create a Sketch-to-Retool design token synchronization dashboard
Build a Retool internal tool that connects to the Sketch Cloud API to fetch the latest version of your design system document. Extract color and typography tokens from the Sketch file's shared Library data and display them in Retool alongside the current values applied in your Retool apps. Highlight discrepancies where a Retool app's styling has diverged from the Sketch design system, helping designers and engineers maintain visual consistency across all internal tools.
Create a Retool design token dashboard that queries the Sketch Cloud API for the latest version of our Design System document (document_id from Sketch Cloud URL). Display all color variables from the document's assets in a Table with their hex values, token names, and usage descriptions. Load the applied colors from our Retool apps (stored in a theme_configs table in PostgreSQL) and compare them. Highlight rows where the Retool app color value doesn't match the Sketch design token value.
Copy this prompt to try it in Retool
Build a design review and asset management panel from Sketch Cloud data
Create a Retool app that tracks design file activity across all Sketch Cloud documents in your organization. Show recent file updates, artboard counts, and which designers are actively working on which files. Allow design leads to mark specific file versions as 'approved for development' and notify engineers via Slack. This creates a lightweight design governance workflow without requiring additional project management tools.
Build a Retool design review panel that queries the Sketch Cloud API for all documents in the organization. Show files in a Table with name, last updated, last updated by, artboard count, and a 'Status' column (draft, in-review, approved). Add an 'Approve for Development' button that updates the status in a PostgreSQL tracking table and posts a Slack message to the #engineering channel with the file name, Sketch Cloud URL, and key design notes.
Copy this prompt to try it in Retool
Troubleshooting
Retool layout doesn't match the Sketch mockup — components overlap or appear in wrong positions
Cause: Sketch supports free-form absolute positioning of elements anywhere on the artboard, while Retool uses a grid-based layout system that constrains component placement to grid cells. Designs with elements positioned at arbitrary coordinates in Sketch may not translate directly to Retool's grid.
Solution: For sections that require non-grid-aligned positioning, switch the parent Container to Freeform layout mode (select Container → Layout tab in Properties → set Layout to Freeform). This allows pixel-level placement similar to Sketch. For most dashboard sections, restructure the implementation to use Retool's Columns system rather than trying to replicate absolute Sketch positions — redesigning for grid-alignment is usually faster than fighting the layout engine.
Custom font from Sketch design is not applying in Retool — components show a fallback font
Cause: Retool uses Roboto as its default font. Sketch designs that use custom fonts (Inter, DM Sans, Poppins, etc.) require explicit font loading in Retool's Custom CSS.
Solution: Navigate to Settings → Appearance → Custom CSS in your Retool app. Add an @import statement for the font from Google Fonts or your self-hosted font URL. Then add a CSS rule setting the body font-family to the custom font. Also update the App Theme font setting (Settings → App Themes) to match. Some Retool components override the global font-family with their own inline styles — these may require component-level CSS class overrides to apply the custom font.
1/* In Retool Custom CSS: Settings → Appearance → Custom CSS */2@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');34body, .retool-container, [class*='retool'] {5 font-family: 'Inter', -apple-system, sans-serif !important;6}Sketch Cloud API queries return 401 Unauthorized despite the Personal Access Token being set
Cause: The Sketch Cloud Personal Access Token may have been incorrectly formatted in the configuration variable, the token may have expired, or the API endpoint format has changed.
Solution: Verify the token in your Retool configuration variable has no extra whitespace or quote characters — copy-paste directly from sketch.com. In the Bearer Token field of your resource, confirm it references {{ environment.variables.SKETCH_CLOUD_TOKEN }} without any extra characters. Test the token directly using curl: curl -H 'Authorization: Bearer YOUR_TOKEN' https://api.sketch.com/workspaces to verify it works outside Retool.
Best practices
- Create a Sketch component library using shapes and styles that map to Retool's actual component dimensions and behavior — this ensures designs are implementable and prevents mismatched expectations between design and engineering.
- Use Sketch's Shared Color Styles and Shared Text Styles to define your design system tokens, then document these values in a shared reference (Notion, Confluence, or a Sketch annotation page) that engineers can use when configuring Retool component styles.
- Extract styling values from the Sketch Inspect panel directly — never estimate or approximate spacing, colors, or font sizes by visual inspection. Pixel-accurate extraction from Inspect prevents implementation drift.
- Treat Retool Custom CSS as a last resort — exhaust all options in Retool's Properties panel before writing CSS overrides. CSS overrides are harder to maintain and may break when Retool updates component HTML structure.
- When a Sketch design includes UI patterns Retool cannot implement natively, flag these early in the project (before engineering starts) so there is time to either simplify the design or plan the Custom Component development effort.
- For teams using Zeplin as a handoff bridge from Sketch, publish Sketch files to Zeplin before engineering begins — Zeplin's web-based Inspect tool is more accessible than Sketch for engineers who don't have the macOS app installed.
- Build a shared Retool app theme (Settings → App Themes) with your Sketch design system colors and base typography, and reuse this theme across all internal Retool apps to maintain visual consistency.
Alternatives
Choose Figma if your team works across operating systems — Figma is browser-based and works on Windows, macOS, and Linux, while Sketch is macOS-only; the design handoff workflow for Retool implementation is identical regardless of tool choice.
Choose Adobe XD if your organization uses the Adobe Creative Cloud suite and prefers Adobe's ecosystem for design — the Retool implementation process from Adobe XD design specs is the same as from Sketch.
Use Zeplin alongside Sketch rather than instead of it — Zeplin is a dedicated design handoff tool that publishes from Sketch and provides a browser-based Inspect view accessible to engineers without the Sketch app.
Frequently asked questions
Is there a plugin that automatically converts Sketch designs to Retool apps?
No. As of 2026, there is no tool that converts Sketch designs directly to working Retool apps. Retool is a data-driven platform where the primary work is connecting components to real data sources — this cannot be automated from visual design alone. The design-to-Retool process described in this guide is a manual translation workflow based on Sketch's Inspect panel values and a systematic component mapping approach.
How does Sketch's design handoff compare to Figma's for Retool implementation?
The core design handoff process is identical — both tools provide an Inspect panel that shows exact color, typography, and spacing values. The main practical difference is access: Figma's Inspect is browser-based and works for anyone with the share link, while Sketch requires either the macOS app or published Sketch Cloud links. Teams where all engineers have macOS can work with Sketch files directly; cross-platform teams often use Zeplin as a browser-based handoff bridge for Sketch files.
Can I access Sketch design file contents from a Retool app using the Sketch Cloud API?
Yes. Sketch Cloud provides a REST API that Retool can access via a REST API Resource. You can query workspace documents, version history, and artboard metadata. However, the Sketch Cloud API does not expose the full vector design data (layer positions, exact style values) in a format that would enable automated Retool component generation — it's primarily useful for governance dashboards that track file activity, approval workflows, and design system documentation.
Should I use Sketch or Zeplin for the design handoff to my Retool development team?
If your engineering team has macOS with Sketch installed, working directly from Sketch files is the simplest approach. If engineers use Windows or don't have Sketch, publish your Sketch designs to Zeplin before engineering begins. Zeplin provides a browser-based inspection interface showing the same spacing, color, and typography values as Sketch's Inspect panel, accessible to anyone with a browser regardless of operating system. Both workflows produce the same implementation quality in Retool.
Can Retool use Sketch's design tokens or CSS variables directly?
Retool supports Custom CSS via the App Themes settings, where you can define CSS custom properties (variables) derived from your Sketch design system. Export your Sketch Shared Color Styles as hex values, define them as CSS custom properties in Retool's Custom CSS block, and reference them in component-specific style overrides. While Retool doesn't import Sketch token files directly, this manual process achieves the same result of a centralized, maintainable color and typography system applied across all Retool components.
Talk to an Expert
Our team has built 600+ apps. Get personalized help with your project.
Book a free consultation