Skip to main content

LazaiTrader Brand Guidelines

The definitive guide to LazaiTrader's visual identity, design principles, and brand expression.


Table of Contents

  1. Brand Overview
  2. Logo Usage
  3. Color Palette
  4. Typography
  5. Gradients & Effects
  6. UI Components
  7. Iconography
  8. Spacing & Layout
  9. Animation & Motion
  10. Voice & Tone
  11. Do's and Don'ts

Brand Overview

Mission

LazaiTrader empowers traders with AI-driven intelligence, making sophisticated trading strategies accessible to everyone. We bridge the gap between complex market analysis and actionable insights through seamless Telegram integration.

Brand Personality

TraitExpression
InnovativeCutting-edge AI technology, modern design
TrustworthyClean interfaces, professional aesthetics
AccessibleSimple interactions, clear communication
DynamicEnergetic accents, smooth animations
SophisticatedDark themes, refined typography

Brand Values

  • Precision — Every pixel, every trade, every decision matters
  • Transparency — Clear communication, honest design
  • Innovation — Constantly pushing boundaries in AI trading
  • Community — Building together with our users

Logo Usage

The LazaiTrader logo represents the fusion of artificial intelligence and trading excellence. It should be used consistently across all brand touchpoints.

Primary Logo: lazaitrader.png
Dimensions: Minimum 48x48px for digital
Clear Space: Maintain padding equal to the logo height on all sides

Logo Placement

ContextSizeNotes
Navigation48x48pxAccompanied by brand name
Favicon32x32pxSimplified mark only
Social Media200x200pxCentered with padding
PrintMinimum 1 inchVector format required

Logo Variations

  • Full Color — Primary usage on dark backgrounds
  • Monochrome White — For solid colored backgrounds
  • Monochrome Dark — For light backgrounds (rare usage)

Clear Space Requirements

Always maintain a minimum clear space around the logo equal to the height of the logo icon. This ensures the logo remains visually impactful and uncluttered.


Color Palette

Primary Colors

NameHexRGBUsage
Midnight Navy#00040frgb(0, 4, 15)Primary background
Electric Cyan#00f6ffrgb(0, 246, 255)Primary accent, CTAs
Pure White#ffffffrgb(255, 255, 255)Primary text

Secondary Colors

NameHexRGBUsage
Deep Charcoal#11101drgb(17, 16, 29)Card backgrounds
Shadow Navy#14101drgb(20, 16, 29)Overlays
Ocean Teal#33bbcfrgb(51, 187, 207)Gradient endpoints
Ice Cyan#def9fargb(222, 249, 250)Gradient highlights

Semantic Colors

NameHexUsage
Success#10b981Positive actions, profit indicators
Warning#f59e0bAlerts, caution states
Error#ef4444Error states, loss indicators
Info#3b82f6Informational elements

Text Colors

NameValueUsage
Primary Text#ffffffHeadings, important content
Secondary Textrgba(255, 255, 255, 0.7)Body text, descriptions
Muted Text#9ca3af (gray-400)Captions, hints
Disabled Text#4b5563 (gray-600)Inactive elements

Color Accessibility

All color combinations must meet WCAG 2.1 AA standards:

  • Primary text on dark background: 15.8:1 contrast ratio
  • Accent cyan on dark background: 13.2:1 contrast ratio
  • Secondary text on dark background: 8.5:1 contrast ratio

Typography

Font Family

Poppins is our primary typeface, chosen for its modern geometric design and excellent readability across all screen sizes.

font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

Font Weights

WeightNameUsage
400RegularBody text, descriptions
500MediumButtons, labels
600SemiBoldSubheadings, emphasis
700BoldSection headers
800ExtraBoldHero text, large displays
900BlackMaximum impact headlines

Type Scale

ElementSize (Desktop)Size (Mobile)Line HeightWeight
Display72px48px1.1800
Heading 148px40px1.2700
Heading 236px32px1.3600
Heading 324px20px1.4600
Body Large18px16px1.7400
Body16px14px1.6400
Caption14px12px1.5400
Small12px10px1.4500

Text Styles

/* Heading 2 */
.heading-2 {
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 48px;
line-height: 76.8px;
color: #ffffff;
}

/* Body Paragraph */
.paragraph {
font-family: 'Poppins', sans-serif;
font-weight: 400;
font-size: 18px;
line-height: 30.8px;
color: rgba(255, 255, 255, 0.7);
}

Gradients & Effects

Primary Gradients

Blue Gradient (Primary CTA)

.bg-blue-gradient {
background: linear-gradient(
157.81deg,
#def9fa -43.27%,
#bef3f5 -21.24%,
#9dedf0 12.19%,
#7de7eb 29.82%,
#5ce1e6 51.94%,
#33bbcf 90.29%
);
}

Text Gradient

.text-gradient {
background: radial-gradient(
64.18% 64.18% at 71.16% 35.69%,
#def9fa 0.89%,
#bef3f5 17.23%,
#9dedf0 42.04%,
#7de7eb 55.12%,
#5ce1e6 71.54%,
#33bbcf 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

Dark Gradient (Cards)

.bg-black-gradient {
background: linear-gradient(
144.39deg,
#ffffff -278.56%,
#6d6d6d -78.47%,
#11101d 91.61%
);
}

Discount/Badge Gradient

.bg-discount-gradient {
background: linear-gradient(
125.17deg,
#272727 0%,
#11101d 100%
);
}

Ambient Gradients (Decorative)

Blue Glow

.blue__gradient {
background: linear-gradient(
180deg,
rgba(188, 165, 255, 0) 0%,
#214d76 100%
);
filter: blur(100px);
}

Pink Glow

.pink__gradient {
background: linear-gradient(
90deg,
#f4c4f3 0%,
#fc67fa 100%
);
filter: blur(200px);
}

White Glow

.white__gradient {
background: rgba(255, 255, 255, 0.6);
filter: blur(300px);
}

Shadow System

LevelValueUsage
Small0 4px 6px rgba(0, 0, 0, 0.1)Buttons, small elements
Medium0 10px 25px rgba(0, 0, 0, 0.15)Cards, dropdowns
Large0 20px 50px rgba(0, 0, 0, 0.2)Modals, popovers
Card0 20px 100px -10px rgba(66, 71, 91, 0.1)Feature cards
Glow0 0 40px rgba(0, 246, 255, 0.3)Active/focus states

UI Components

Buttons

Primary Button

.btn-primary {
background: linear-gradient(to right, #22d3ee, #3b82f6);
color: #111827;
font-weight: 600;
padding: 12px 24px;
border-radius: 12px;
transition: all 0.3s ease;
}

.btn-primary:hover {
transform: translateY(-2px);
box-shadow: 0 0 40px rgba(0, 246, 255, 0.3);
}

Secondary Button

.btn-secondary {
background: transparent;
border: 1px solid #22d3ee;
color: #22d3ee;
padding: 12px 24px;
border-radius: 12px;
transition: all 0.3s ease;
}

.btn-secondary:hover {
background: rgba(34, 211, 238, 0.1);
}

Cards

Feature Card

.feature-card {
background: transparent;
border-radius: 16px;
padding: 24px;
transition: all 0.3s ease;
}

.feature-card:hover {
background: rgba(31, 41, 55, 1);
box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

Feedback Card

.feedback-card {
background: linear-gradient(
144.39deg,
#ffffff -278.56%,
#6d6d6d -78.47%,
#11101d 91.61%
);
border-radius: 20px;
padding: 32px;
}

Form Elements

Input Field

.input-field {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 8px;
padding: 12px 16px;
color: #ffffff;
transition: border-color 0.2s ease;
}

.input-field:focus {
border-color: #22d3ee;
outline: none;
box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

Iconography

Icon Style

All icons should follow these guidelines:

  • Style: Outlined or minimal filled
  • Stroke Width: 1.5px - 2px
  • Corner Radius: Rounded corners matching brand aesthetic
  • Size: 24x24px default, scalable

Icon Categories

CategoryIconsUsage
FeaturesStar, Shield, SendProduct feature highlights
NavigationMenu, Close, ArrowUI navigation elements
SocialTelegram, Twitter, etc.Social media links
ActionDiscount, QuoteInteractive elements

Icon Colors

  • Default: #9ca3af (gray-400)
  • Hover: #22d3ee (cyan-400)
  • Active: #ffffff
  • Disabled: #4b5563 (gray-600)

Spacing & Layout

Spacing Scale

TokenValueUsage
space-14pxTight spacing, icon gaps
space-28pxCompact elements
space-312pxButton padding
space-416pxCard internal spacing
space-624pxSection padding mobile
space-832pxComponent gaps
space-1040pxSection margins
space-1664pxSection padding desktop
space-2080pxLarge section breaks

Layout Grid

/* Container */
.container {
max-width: 1280px;
margin: 0 auto;
padding: 0 24px;
}

@media (min-width: 640px) {
.container {
padding: 0 64px;
}
}

Responsive Breakpoints

BreakpointWidthTarget
xs480pxLarge phones
ss620pxSmall tablets
sm768pxTablets
md1060pxSmall laptops
lg1200pxDesktops
xl1700pxLarge displays

Border Radius

TokenValueUsage
rounded-sm4pxSmall elements, tags
rounded8pxInputs, small cards
rounded-lg12pxButtons
rounded-xl16pxCards
rounded-2xl20pxLarge cards, sections
rounded-full9999pxPills, avatars

Animation & Motion

Timing Functions

NameValueUsage
Ease DefaulteaseGeneral transitions
Ease Outcubic-bezier(0.25, 0.46, 0.45, 0.94)Enter animations
Ease In Outcubic-bezier(0.4, 0, 0.2, 1)Smooth interactions
Springcubic-bezier(0.68, -0.55, 0.265, 1.55)Bouncy effects

Duration

SpeedDurationUsage
Fast150msHover states, toggles
Normal300msPage transitions, modals
Slow500msComplex animations

Animation Patterns

Slide Up (Entry)

@keyframes slideUp {
from {
opacity: 0;
transform: translateY(100px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.animate-slide-up {
animation: slideUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

Fade In

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.animate-fade-in {
animation: fadeIn 0.3s ease forwards;
}

Hover Scale

.hover-scale {
transition: transform 0.3s ease;
}

.hover-scale:hover {
transform: scale(1.05);
}

Motion Principles

  1. Purpose — Every animation serves a function
  2. Subtlety — Animations enhance, never distract
  3. Consistency — Same actions, same animations
  4. Performance — Use transform and opacity for smooth 60fps

Voice & Tone

Brand Voice Attributes

AttributeDescriptionExample
ConfidentAssertive but not arrogant"Trade smarter with AI"
ClearSimple, jargon-free"Copy winning strategies"
EmpoweringEnable user success"Take control of your trades"
InnovativeForward-thinking"The future of trading"

Writing Guidelines

Headlines

  • Keep under 10 words
  • Lead with action verbs
  • Highlight the benefit

Good: "Master Trading with AI Intelligence" Avoid: "Our AI-Powered Trading Platform Helps You Trade Better"

Body Copy

  • Use short paragraphs (2-3 sentences)
  • Break complex ideas into bullet points
  • Address the user directly ("you")

CTAs

  • Use action verbs
  • Create urgency without pressure
  • Be specific about the outcome

Good: "Start Trading Now", "Get Your Strategy" Avoid: "Click Here", "Submit"

Terminology

UseAvoid
Strategy VaultStrategy Storage
AI IntelligenceArtificial Intelligence System
Trading AnalyticsAnalysis Dashboard
Telegram TradingBot Trading

Do's and Don'ts

Logo Usage

DoDon't
Use official logo filesRecreate or modify the logo
Maintain clear spaceCrowd the logo with other elements
Use on dark backgrounds primarilyPlace on busy backgrounds
Keep proportions intactStretch or distort

Color Application

DoDon't
Use midnight navy as primary backgroundUse bright backgrounds
Apply cyan for key interactive elementsOveruse cyan accents
Maintain contrast ratiosCombine low-contrast colors
Use gradients for emphasisApply gradients everywhere

Typography

DoDon't
Use Poppins consistentlyMix with other sans-serif fonts
Apply proper hierarchyUse more than 3 weights per page
Maintain readable line lengthsExtend text beyond 75 characters
Use dim white for body textUse pure white for everything

Components

DoDon't
Apply consistent border-radiusMix sharp and rounded corners
Use subtle shadowsApply heavy drop shadows
Animate purposefullyAdd animation without purpose
Maintain consistent spacingUse arbitrary spacing values

Photography & Imagery

DoDon't
Use high-quality imagesUse pixelated or stretched images
Apply dark overlays if neededUse images without context
Maintain brand color paletteUse images with clashing colors
Feature modern, tech aestheticsUse dated or generic stock photos

Quick Reference

CSS Variables

:root {
/* Colors */
--color-primary: #00040f;
--color-secondary: #00f6ff;
--color-text-primary: #ffffff;
--color-text-secondary: rgba(255, 255, 255, 0.7);
--color-card-bg: #11101d;

/* Gradients */
--gradient-blue: linear-gradient(157.81deg, #def9fa -43.27%, #33bbcf 90.29%);
--gradient-black: linear-gradient(144.39deg, #ffffff -278.56%, #11101d 91.61%);

/* Shadows */
--shadow-card: 0px 20px 100px -10px rgba(66, 71, 91, 0.1);
--shadow-glow: 0 0 40px rgba(0, 246, 255, 0.3);

/* Spacing */
--space-base: 8px;
--radius-base: 12px;

/* Typography */
--font-family: 'Poppins', sans-serif;
}

Tailwind Config Reference

// tailwind.config.cjs
module.exports = {
theme: {
extend: {
colors: {
primary: "#00040f",
secondary: "#00f6ff",
dimWhite: "rgba(255, 255, 255, 0.7)",
dimBlue: "rgba(9, 151, 124, 0.1)",
},
fontFamily: {
poppins: ["Poppins", "sans-serif"],
},
},
},
}

Resources

Brand Assets

All official brand assets are located in /src/assets/:

  • lazaitrader.png — Primary logo
  • logo.svg — Vector logo
  • Feature icons (Star, Shield, Send)
  • Social media icons
  • UI elements

Font Resources

Contact

For brand-related questions or asset requests, contact the LazaiTrader team.


Last Updated: December 2025 Version: 1.0