Customizing the color palette for your project.
In Motif, colors are mainly dealt with in two ways:
Since Tailwind CSS 2.1+, arbitrary classes are supported, and we therefore highly recommend solely using Tailwind CSS, even for special cases, and completely drop the use of vanilla CSS, as Tailwind provides much better consistency and conciseness.
Via the style
property of a component, you can use arbitrary CSS color specifications for background, text, border color and so on.
Custom colors with CSS.
<div
style={{
backgroundColor: "#FEF3C7",
borderColor: "#FDE68A",
color: "#D97706",
}}
>
Custom colors with CSS.
</div>
Via the className
property of a component, you can use classes from the Tailwind CSS framework.
Custom colors with Tailwind CSS.
<div className={`
bg-gradient-to-br
from-cyan-400
to-sky-500
text-cyan-100
`}>
Custom colors with Tailwind CSS.
</div>
Each Tailwind color comes in 10 variants, e.g. red-400
or coolGray-900
. To apply to a specific property, e.g. text color, prepend with the appopriate keyword. For instance, to apply a background color, use the bg-
prefix, e.g. bg-red-400
. To apply a text color, use the text-
prefix, e.g. text-coolGray-900
. Supported prefixes are:
text-
bg-
border-
to-
, from-
and via-
when using gradients.The color specifiers can be customized in your project's tailwind.config.js
file. For instance, the following configuration includes the default blueGray
, lime
and indigo
colors provided by Tailwind (see below for the complete palettte), and introduce a custom turquoise
color in three variants:
module.exports = {
theme: {
colors: {
blueGray: colors.blueGray,
lime: colors.lime,
indigo: colors.indigo
turquoise: {
200: "#aaf0f4",
500: "#14b4c6",
900: "#0d4f5a"
}
}
}
}
Read more about colors in the Tailwind CSS documentation.
The following colors are provided out-of-the-box by Tailwind.
Slate
slate
#F8FAFC
#F1F5F9
#E2E8F0
#CBD5E1
#94A3B8
#64748B
#475569
#334155
#1E293B
#0F172A
Gray
gray
#F9FAFB
#F3F4F6
#E5E7EB
#D1D5DB
#9CA3AF
#6B7280
#4B5563
#374151
#1F2937
#111827
Zinc
zinc
#FAFAFA
#F4F4F5
#E4E4E7
#D4D4D8
#A1A1AA
#71717A
#52525B
#3F3F46
#27272A
#18181B
Neutral
neutral
#FAFAFA
#F5F5F5
#E5E5E5
#D4D4D4
#A3A3A3
#737373
#525252
#404040
#262626
#171717
Stone
stone
#FAFAF9
#F5F5F4
#E7E5E4
#D6D3D1
#A8A29E
#78716C
#57534E
#44403C
#292524
#1C1917
Red
red
#FEF2F2
#FEE2E2
#FECACA
#FCA5A5
#F87171
#EF4444
#DC2626
#B91C1C
#991B1B
#7F1D1D
Orange
orange
#FFF7ED
#FFEDD5
#FED7AA
#FDBA74
#FB923C
#F97316
#EA580C
#C2410C
#9A3412
#7C2D12
Amber
amber
#FFFBEB
#FEF3C7
#FDE68A
#FCD34D
#FBBF24
#F59E0B
#D97706
#B45309
#92400E
#78350F
Yellow
yellow
#FEFCE8
#FEF9C3
#FEF08A
#FDE047
#FACC15
#EAB308
#CA8A04
#A16207
#854D0E
#713F12
Lime
lime
#F7FEE7
#ECFCCB
#D9F99D
#BEF264
#A3E635
#84CC16
#65A30D
#4D7C0F
#3F6212
#365314
Green
green
#F0FDF4
#DCFCE7
#BBF7D0
#86EFAC
#4ADE80
#22C55E
#16A34A
#15803D
#166534
#14532D
Emerald
emerald
#ECFDF5
#D1FAE5
#A7F3D0
#6EE7B7
#34D399
#10B981
#059669
#047857
#065F46
#064E3B
Teal
teal
#F0FDFA
#CCFBF1
#99F6E4
#5EEAD4
#2DD4BF
#14B8A6
#0D9488
#0F766E
#115E59
#134E4A
Cyan
cyan
#ECFEFF
#CFFAFE
#A5F3FC
#67E8F9
#22D3EE
#06B6D4
#0891B2
#0E7490
#155E75
#164E63
Sky
sky
#F0F9FF
#E0F2FE
#BAE6FD
#7DD3FC
#38BDF8
#0EA5E9
#0284C7
#0369A1
#075985
#0C4A6E
Blue
blue
#EFF6FF
#DBEAFE
#BFDBFE
#93C5FD
#60A5FA
#3B82F6
#2563EB
#1D4ED8
#1E40AF
#1E3A8A
Indigo
indigo
#EEF2FF
#E0E7FF
#C7D2FE
#A5B4FC
#818CF8
#6366F1
#4F46E5
#4338CA
#3730A3
#312E81
Violet
violet
#F5F3FF
#EDE9FE
#DDD6FE
#C4B5FD
#A78BFA
#8B5CF6
#7C3AED
#6D28D9
#5B21B6
#4C1D95
Purple
purple
#FAF5FF
#F3E8FF
#E9D5FF
#D8B4FE
#C084FC
#A855F7
#9333EA
#7E22CE
#6B21A8
#581C87
Fuchsia
fuchsia
#FDF4FF
#FAE8FF
#F5D0FE
#F0ABFC
#E879F9
#D946EF
#C026D3
#A21CAF
#86198F
#701A75
Pink
pink
#FDF2F8
#FCE7F3
#FBCFE8
#F9A8D4
#F472B6
#EC4899
#DB2777
#BE185D
#9D174D
#831843
Rose
rose
#FFF1F2
#FFE4E6
#FECDD3
#FDA4AF
#FB7185
#F43F5E
#E11D48
#BE123C
#9F1239
#881337