Skip to Content

Color

At the cornerstone of ActiveCampaign’s color palette is Camp’s AC Blue. We support AC Blue with a palette that guides our users toward action and provides meaningful insights along the way.

Applying color

Semantic tokens apply color in a consistent and meaningful way across the ActiveCampaign platform.

Design tokens

Semantic tokens for color represent small, repeatable design decisions. Instead of using raw hex values, we refer to a token that describes how and where it should be used. This makes it easy to make centralized changes and continue to modernize the ActiveCampaign interface at a broad scale.

Semantic color token structure

How tokens are grouped

Camp color tokens are grouped by category, property, role, intensity, and state. The further into the structure you go, the more specific the groupings become.

Semantic color token grouping

Category

Category represents a broad color grouping, such as SemanticColors. Camp also ships PrimitiveColors, but SemanticColors should be used wherever possible.

Property

Properties are sub-divisions within the SemanticColors category that describe what the color should be applied to. The following properties can be applied to designs:

  • Background
  • Border
  • Text
  • Icon

Role

Foundational colors

Neutral midnight is used as the base of the ActiveCampaign platform. Neutral colors, denoted in our tokens as having a role of default or supportive, can be used with any property to create the base of ActiveCampaign’s UI.

eg. bg-default, bg-supportive, border-default, border-supportive, text-default, text-supportive, icon-decorative, icon-interactive

Functional colors

Functional colors communicate role with a specific meaning, including status, alerts, and actions that request attention.

eg. success, warning, danger, AI, upgrade, educational

Intensity

Emphasis denotes that a particular element should hold more weight, or emphasis, within the UI. emphasis backgrounds should always be paired with on-emphasis text or foreground.

The most common use cases for emphasis are Camp’s primary and destructive buttons. They utilize bright, bold background colors to grab the user’s attention.

Semantic color token intensity

State

State represents the current state of the element. An element may retain its property, role, and intensity with varying states.

Semantic color tokens

Install

To get started using Camp’s new SemanticColors tokens in development, you’ll need to begin by installing the @camp/tokens package:yarn add @camp/tokens

Consumers are able to access the corresponding hex values via the object and can apply them to their styles directly. To access the SemanticColors object, you’ll need to import it like so:

import { SemanticColors } from "@camp/tokens" const StyledButton = styled('button')({ backgroundColor: SemanticColors['bg-success'], ... })

Background

bg-default
#ffffff
bg-hover
#EEF0F2
bg-active
#D4D7DC
bg-disabled
#EEF0F2
bg-supportive
#F9F9F9
bg-success
#F4FAF5
bg-success-hover
#D4ECD6
bg-warning
#FFFCF5
bg-warning-hover
#FEE8B5
bg-danger
#FFF5F5
bg-danger-hover
#FFCACA
bg-informational
#F5F9FF
bg-informational-hover
#D7E5FF
bg-educational
#F7F8FF
bg-educational-hover
#D6D8FF
bg-upgrade
#F2FAFD
bg-upgrade-hover
#D7E8EF
bg-ai-hover
#F0F5FF
bg-ai-active
#D7E5FF
bg-primary-emphasis
#004CFF
bg-primary-emphasis-hover
#0031A9
bg-primary-emphasis-active
#001961
bg-primary-emphasis-disabled
#D4D7DC
bg-primary-hover
#F0F5FF
bg-primary-active
#D7E5FF
bg-default-emphasis
#394863
bg-destructive-emphasis
#CD2929
bg-destructive-emphasis-hover
#A61515
bg-destructive-emphasis-active
#8F0606
bg-destructive-hover
#FFEDED
bg-destructive-active
#FFCACA

Text

text-default
#00002D
text-supportive
#394863
text-success
#368141
text-on-emphasis
#ffffff
text-disabled
#7D8799
text-primary
#004CFF
text-primary-on-emphasis
#ffffff
text-destructive
#CD2929
text-destructive-on-emphasis
#ffffff

Border

border-ai-active
#D7E5FF
border-default
#9EA5B2
border-default-active
#D4D7DC
border-supportive
#D4D7DC
border-focus
#004CFF
border-focus-highlight
#D7E5FF
border-informational
#D7E5FF
border-upgrade
#D7E8EF
border-educational
#D6D8FF
border-success
#D4ECD6
border-warning
#FEE8B5
border-danger
#FFCACA
border-disabled
#D4D7DC
border-primary-default-active
#D7E5FF
border-primary-default-hover
#F0F5FF
border-primary-emphasis
#004CFF
border-primary-emphasis-active
#001961
border-primary-emphasis-hover
#0031A9
border-primary-on-emphasis
#ffffff
border-destructive-default-active
#FFCACA
border-destructive-focus
#CD2929
border-destructive-default-hover
#FFEDED
border-destructive-emphasis
#CD2929
border-destructive-emphasis-hover
#A61515
border-destructive-emphasis-active
#8F0606

Icon

icon-decorative
#5D6981
icon-decorative-informational
#004CFF
icon-decorative-success
#368141
icon-decorative-warning
#DEA310
icon-decorative-danger
#CD2929
icon-decorative-educational
#6152CA
icon-decorative-upgrade
#367287
icon-decorative-on-emphasis
#ffffff
icon-interactive
#28354F
icon-interactive-hover
#004CFF
icon-interactive-on-emphasis
#ffffff

Primitive color tokens

Install

To use Camp’s new PrimitiveColors tokens in development, you’ll need to begin by installing the @camp/tokens package:yarn add @camp/tokens

Consumers are able to access the corresponding hex values via the object and can apply them to their styles directly. To access the PrimitiveColors object, you’ll need to import it like so:

import { PrimitiveColors } from "@camp/tokens" const StyledButton = styled('button')({ color: PrimitiveColors['dusk']['1000'], ... })

ac-blue

PrimitiveColors['ac-blue']['100']
#F5F9FF
PrimitiveColors['ac-blue']['200']
#F0F5FF
PrimitiveColors['ac-blue']['300']
#D7E5FF
PrimitiveColors['ac-blue']['400']
#AEC1FF
PrimitiveColors['ac-blue']['500']
#819EFF
PrimitiveColors['ac-blue']['600']
#517FFF
PrimitiveColors['ac-blue']['700']
#004CFF
PrimitiveColors['ac-blue']['800']
#0031A9
PrimitiveColors['ac-blue']['900']
#001961
PrimitiveColors['ac-blue']['1000']
#00002D

dawn

PrimitiveColors['dawn']['100']
#FFF9F4
PrimitiveColors['dawn']['200']
#FFECDF
PrimitiveColors['dawn']['300']
#F8D7C4
PrimitiveColors['dawn']['400']
#F9A287
PrimitiveColors['dawn']['500']
#FC7950
PrimitiveColors['dawn']['600']
#E1572C
PrimitiveColors['dawn']['700']
#CC4A00
PrimitiveColors['dawn']['800']
#823104
PrimitiveColors['dawn']['900']
#652400
PrimitiveColors['dawn']['1000']
#461601

dusk

PrimitiveColors['dusk']['100']
#F2FAFD
PrimitiveColors['dusk']['200']
#EAF5FA
PrimitiveColors['dusk']['300']
#D7E8EF
PrimitiveColors['dusk']['400']
#B0C9D3
PrimitiveColors['dusk']['500']
#8AABB7
PrimitiveColors['dusk']['600']
#658D9D
PrimitiveColors['dusk']['700']
#367287
PrimitiveColors['dusk']['800']
#0D4F64
PrimitiveColors['dusk']['900']
#033C4C
PrimitiveColors['dusk']['1000']
#0A2832

violet

PrimitiveColors['violet']['100']
#F7F8FF
PrimitiveColors['violet']['200']
#F4F4FF
PrimitiveColors['violet']['300']
#D6D8FF
PrimitiveColors['violet']['400']
#BDBEF7
PrimitiveColors['violet']['500']
#9B98F3
PrimitiveColors['violet']['600']
#7C73E7
PrimitiveColors['violet']['700']
#6152CA
PrimitiveColors['violet']['800']
#432E9D
PrimitiveColors['violet']['900']
#312279
PrimitiveColors['violet']['1000']
#211556

magenta

PrimitiveColors['magenta']['100']
#FFF1F4
PrimitiveColors['magenta']['200']
#FFF1F4
PrimitiveColors['magenta']['300']
#FFD9E3
PrimitiveColors['magenta']['400']
#FBA9C0
PrimitiveColors['magenta']['500']
#FB6C9E
PrimitiveColors['magenta']['600']
#DB467F
PrimitiveColors['magenta']['700']
#B82062
PrimitiveColors['magenta']['800']
#850343
PrimitiveColors['magenta']['900']
#620D32
PrimitiveColors['magenta']['1000']
#440921

maroon

PrimitiveColors['maroon']['100']
#FDF6FB
PrimitiveColors['maroon']['200']
#FEF0FB
PrimitiveColors['maroon']['300']
#FED6F6
PrimitiveColors['maroon']['400']
#FF9CEF
PrimitiveColors['maroon']['500']
#EB6DD9
PrimitiveColors['maroon']['600']
#D335C2
PrimitiveColors['maroon']['700']
#A42F96
PrimitiveColors['maroon']['800']
#780C6D
PrimitiveColors['maroon']['900']
#5B0753
PrimitiveColors['maroon']['1000']
#40043A

midday

PrimitiveColors['midday']['100']
#FFFCF5
PrimitiveColors['midday']['200']
#FFF5DE
PrimitiveColors['midday']['300']
#FEE8B5
PrimitiveColors['midday']['400']
#FFDC8D
PrimitiveColors['midday']['500']
#FFCE54
PrimitiveColors['midday']['600']
#F3BB30
PrimitiveColors['midday']['700']
#DEA310
PrimitiveColors['midday']['800']
#80621F
PrimitiveColors['midday']['900']
#53411A
PrimitiveColors['midday']['1000']
#312306

midnight

PrimitiveColors['midnight']['100']
#F9F9F9
PrimitiveColors['midnight']['200']
#EEF0F2
PrimitiveColors['midnight']['300']
#D4D7DC
PrimitiveColors['midnight']['400']
#C1C4CB
PrimitiveColors['midnight']['500']
#9EA5B2
PrimitiveColors['midnight']['600']
#7D8799
PrimitiveColors['midnight']['700']
#5D6981
PrimitiveColors['midnight']['800']
#394863
PrimitiveColors['midnight']['900']
#28354F
PrimitiveColors['midnight']['1000']
#142341

moss

PrimitiveColors['moss']['100']
#F4FAF5
PrimitiveColors['moss']['200']
#F1F7F1
PrimitiveColors['moss']['300']
#D4ECD6
PrimitiveColors['moss']['400']
#ABCFAF
PrimitiveColors['moss']['500']
#7DB485
PrimitiveColors['moss']['600']
#60A76A
PrimitiveColors['moss']['700']
#368141
PrimitiveColors['moss']['800']
#2B5232
PrimitiveColors['moss']['900']
#233C27
PrimitiveColors['moss']['1000']
#162919

red

PrimitiveColors['red']['100']
#FFF5F5
PrimitiveColors['red']['200']
#FFEDED
PrimitiveColors['red']['300']
#FFCACA
PrimitiveColors['red']['400']
#FFAAAA
PrimitiveColors['red']['500']
#FF8686
PrimitiveColors['red']['600']
#FF6D6D
PrimitiveColors['red']['700']
#CD2929
PrimitiveColors['red']['800']
#A61515
PrimitiveColors['red']['900']
#8F0606
PrimitiveColors['red']['1000']
#550000

white

PrimitiveColors['white']
#ffffff

black

PrimitiveColors['black']
#000000
Last updated on