Royal Blue#2563EB
Violet#7C3AED
Cyan#06B6D4
Slate Blue#8B9BB4
Blue Gray#B7C3D0
Palette direction

Startup Inspired Tech Color Palette

This startup-inspired palette pairs a crisp electric blue with a forward-looking violet and a sharp cyan for a clean, ambitious digital identity. The neutrals keep the system fast, readable, and product-friendly across interfaces and brand touchpoints.

AnalogousTechstartuptech branddigital productventure-backed
palette-preview.example
Tech color direction

Startup Inspired Tech Color Palette

This startup-inspired palette pairs a crisp electric blue with a forward-looking violet and a sharp cyan for a clean, ambitious digital identity. The neutrals keep the system fast, readable, and product-friendly across interfaces and brand touchpoints.

Explore the color system
Logo contrast guide

Logo color pairings

ColorFly checks the palette colors against each other and suggests the clearest logo/background combinations.

Logo Charcoal #0F172Aon Cyan #06B6D47.4:1 Excellent
Logo White #FFFFFFon Violet #7C3AED5.7:1 Strong
Logo White #FFFFFFon Royal Blue #2563EB5.2:1 Strong
Logo Charcoal #0F172Aon White #FFFFFF17.9:1 Excellent
Icon color
BackgroundRoyal Blue#2563EBTextWhite#FFFFFF
Primary Button5.17:1
AA

Best for the main action users should notice first.

BackgroundCyan#06B6D4TextCharcoal#0F172A
Secondary Button7.35:1
AAA

Useful for softer choices and secondary paths.

BackgroundWhite#FFFFFFTextCyan#06B6D4
Outlined Button2.43:1
Low

Good for lower-emphasis actions on light surfaces.

BackgroundWhite#FFFFFFTextCyan#06B6D4
Text Button2.43:1
Low

A quiet action for links, navigation, and inline decisions.

Palette composition8 colorsAnalogous color relationship
9:41Startup Inspired Tech Color Palette Color role balance
Analogous system
60% DominantNeutrals

Backgrounds, large surfaces, whitespace, and reading comfort.

30% SecondarySupport colors

Sections, secondary UI, illustrations, and repeated brand moments.

10% AccentMain colors

High-attention moments like primary actions and memorable highlights.

CStartup Inspired Tech Color PaletteTech brand direction ColorFly.design
Strategic palette preview
Why it works

A usable
color system.

Electric blue, violet, and cyan create a high-energy startup system that feels agile, innovative, and product-ready without relying on a generic corporate blue scheme. The relationship stays recognizable across brand and interface use while still feeling distinct and contemporary.

Clear roles create a consistent brand experience.

Color Roles and Usage Map

Assign existing palette colors to brand, typography, and interface roles.

Brand identity

LogoUsed for logo marks and core brand symbols.Royal Blue #2563EB
HeadlineUsed for main titles and key messages.Violet #7C3AED
LinkUsed for links and interactive text.Cyan #06B6D4

Buttons

Primary Button
BackgroundRoyal Blue #2563EB
TextWhite #FFFFFF
Secondary Button
BackgroundCyan #06B6D4
TextCharcoal #0F172A
Outlined Button
BackgroundCyan #06B6D4
TextCyan #06B6D4

Interface

TextDefault readable body text.Charcoal #0F172A
Bg LightLight page or section background.White #FFFFFF
Bg DarkDark page or section background.Charcoal #0F172A
IconSmall interface icons and marks.Slate Blue #8B9BB4
BorderCards, inputs, and component borders.Blue Gray #B7C3D0
DividerSubtle separators between content.Charcoal #0F172A
OutlineFocus rings and emphasis outlines.Charcoal #0F172A

Palette Colors

A compact view of the brand, support, and neutral colors that make up this system.

Main (Brand) Colors

Electric blue, violet, and cyan create a high-energy startup system that feels agile, innovative, and product-ready without relying on a generic corporate blue scheme. The relationship stays recognizable across brand and interface use while still feeling distinct and contemporary.

PrimaryRoyal Blue

RolesLogo, Btn Primary Bg

Royal Blue gives the brand its confident core and communicates speed, trust, and technical clarity.

HEX#2563EB
RGB37, 99, 235
HSL221, 83, 53
CMYK84, 58, 0, 8
SecondaryViolet

RolesHeadline

Violet adds a venture-scale sense of innovation and helps key messaging feel more ambitious.

HEX#7C3AED
RGB124, 58, 237
HSL262, 83, 58
CMYK48, 76, 0, 7
SecondaryCyan

RolesLink, Btn Secondary Bg, Btn Outlined Border, Btn Outlined Text

Cyan adds an alert, digital edge that keeps the system lively and gives secondary actions strong visibility.

HEX#06B6D4
RGB6, 182, 212
HSL189, 94, 43
CMYK97, 14, 0, 17

Support Colors

The support colors stay restrained and reinforce the startup energy without competing with the main blues and violet. They add structure, clarity, and subtle depth for UI accents and brand details.

Slate Blue

RolesIcon

Slate Blue softens the interface and supports icons with a cool, product-oriented tone.

HEX#8B9BB4
RGB139, 155, 180
HSL217, 21, 63
CMYK23, 14, 0, 29
Blue Gray

RolesBorder

Blue Gray provides clean separation for components while staying quiet beside the brighter accents.

HEX#B7C3D0
RGB183, 195, 208
HSL211, 21, 77
CMYK12, 6, 0, 18

Neutral Colors

Utility colors for backgrounds, text, borders, and balance.

White

RolesBg Light, Btn Primary Text

HEX#FFFFFF
RGB255, 255, 255
HSL0, 0, 100
CMYK0, 0, 0, 0
Snow
HEX#F5F7FA
RGB245, 247, 250
HSL216, 33, 97
CMYK2, 1, 0, 2
Charcoal

RolesBg Dark, Divider, Outline, Text, Btn Secondary Text

HEX#0F172A
RGB15, 23, 42
HSL222, 47, 11
CMYK64, 45, 0, 84

Export and Handoff

Copy palette values for design systems, websites, and client handoff.

Color tokens

Use these in CSS when you want every raw palette color available by name. Best for websites, landing pages, and design system variables.

Use when: you need the actual colors.
:root {
  --color-royal-blue: #2563EB;
  --color-violet: #7C3AED;
  --color-cyan: #06B6D4;
  --color-slate-blue: #8B9BB4;
  --color-blue-gray: #B7C3D0;
  --color-white: #FFFFFF;
  --color-snow: #F5F7FA;
  --color-charcoal: #0F172A;
}

Role tokens

Use these in CSS when colors are assigned to practical jobs like text, buttons, borders, links, and backgrounds.

Use when: you need UI roles, not just swatches.
:root {
  --role-logo: #2563EB;
  --role-btn-primary-bg: #2563EB;
  --role-headline: #7C3AED;
  --role-link: #06B6D4;
  --role-btn-secondary-bg: #06B6D4;
  --role-btn-outlined-border: #06B6D4;
  --role-btn-outlined-text: #06B6D4;
  --role-icon: #8B9BB4;
  --role-border: #B7C3D0;
  --role-bg-light: #FFFFFF;
  --role-btn-primary-text: #FFFFFF;
  --role-bg-dark: #0F172A;
  --role-divider: #0F172A;
  --role-outline: #0F172A;
  --role-text: #0F172A;
  --role-btn-secondary-text: #0F172A;
}

JSON

Use this structured palette data in apps, generators, plugins, or tools that need to read the palette programmatically.

Use when: a developer or app needs data.
{
    "royal-blue": "#2563EB",
    "violet": "#7C3AED",
    "cyan": "#06B6D4",
    "slate-blue": "#8B9BB4",
    "blue-gray": "#B7C3D0",
    "white": "#FFFFFF",
    "snow": "#F5F7FA",
    "charcoal": "#0F172A"
}
Press Space to load new palette