Skip to content

Commit fb09400

Browse files
committed
extend more color in colors folder.
1 parent 7279832 commit fb09400

7 files changed

+244
-0
lines changed

lib/colors/gf_element_color.dart

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFElementColors {
4+
/// 🌊 Water Element: Soothing, intuitive, emotional
5+
static const Color WATER_BLUE = Color(0xFF0288D1); // Ocean Blue
6+
static const Color WATER_TURQUOISE = Color(0xFF00BCD4); // Turquoise
7+
static const Color WATER_NAVY = Color(0xFF01579B); // Deep Sea
8+
static const Color WATER_WHITE = Color(0xFFE1F5FE); // Sea Foam
9+
static const Color WATER_TEAL = Color(0xFF00695C); // Teal Depth
10+
11+
/// 🔥 Fire Element: Passionate, dynamic, energizing
12+
static const Color FIRE_RED = Color(0xFFD32F2F); // Blaze Red
13+
static const Color FIRE_ORANGE = Color(0xFFFF5722); // Ember Orange
14+
static const Color FIRE_YELLOW = Color(0xFFFFC107); // Spark Yellow
15+
static const Color FIRE_MAGENTA = Color(0xFFD81B60); // Intense Magenta
16+
static const Color FIRE_BLACK = Color(0xFF3E2723); // Charcoal Ash
17+
18+
/// 💨 Air Element: Free-flowing, intellectual, creative
19+
static const Color AIR_SKY = Color(0xFF81D4FA); // Sky Blue
20+
static const Color AIR_GREY = Color(0xFFCFD8DC); // Cloud Grey
21+
static const Color AIR_WHITE = Color(0xFFFFFFFF); // Breeze White
22+
static const Color AIR_MINT = Color(0xFFB2EBF2); // Fresh Mint
23+
static const Color AIR_BEIGE = Color(0xFFFFF8E1); // Light Air
24+
25+
}

lib/colors/gf_emotion_color.dart

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFEmotionColors {
4+
// Calm palette: Use for tranquil and soft interfaces (e.g., meditation, wellness apps)
5+
static const Color CALM_BLUE = Color(0xFFB3E5FC); // Soft Blue
6+
static const Color CALM_GREEN = Color(0xFFC8E6C9); // Pale Mint
7+
static const Color CALM_PURPLE = Color(0xFFE1BEE7); // Light Lavender
8+
static const Color CALM_GREY = Color(0xFFF5F5F5); // Mist Grey
9+
static const Color CALM_WHITE = Color(0xFFFFFFFF); // Pure White
10+
11+
// Energetic palette: Use for action-oriented or youth-centric designs (e.g., fitness, games)
12+
static const Color ENERGETIC_RED = Color(0xFFFF5252); // Bright Red
13+
static const Color ENERGETIC_ORANGE = Color(0xFFFFA726); // Bold Orange
14+
static const Color ENERGETIC_YELLOW = Color(0xFFFFEB3B); // Vivid Yellow
15+
static const Color ENERGETIC_LIME = Color(0xFFCDDC39); // Lime
16+
static const Color ENERGETIC_PINK = Color(0xFFF06292); // Punch Pink
17+
18+
// Serious palette: Use for professional, legal, medical, or banking interfaces
19+
static const Color SERIOUS_NAVY = Color(0xFF283593); // Deep Navy
20+
static const Color SERIOUS_BLACK = Color(0xFF212121); // Almost Black
21+
static const Color SERIOUS_GREY = Color(0xFF757575); // Medium Grey
22+
static const Color SERIOUS_TEAL = Color(0xFF00796B); // Conservative Teal
23+
static const Color SERIOUS_MAROON = Color(0xFF6A1B9A); // Royal Maroon
24+
25+
}

lib/colors/gf_food_color.dart

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFFoodColors {
4+
/// ☕ Coffee Theme: Warm, earthy, comforting
5+
static const Color COFFEE_BROWN = Color(0xFF4E342E); // Espresso
6+
static const Color COFFEE_BEIGE = Color(0xFFD7CCC8); // Cappuccino Cream
7+
static const Color COFFEE_CARAMEL = Color(0xFFBCAAA4); // Caramel
8+
static const Color COFFEE_MOCHA = Color(0xFF6D4C41); // Mocha
9+
static const Color COFFEE_DARK = Color(0xFF3E2723); // Dark Roast
10+
11+
/// 🍓 Berry Theme: Vibrant, fresh, fruity
12+
static const Color BERRY_RED = Color(0xFFC2185B); // Raspberry
13+
static const Color BERRY_PURPLE = Color(0xFF7B1FA2); // Blackberry
14+
static const Color BERRY_PINK = Color(0xFFF06292); // Strawberry
15+
static const Color BERRY_BLUE = Color(0xFF3949AB); // Blueberry
16+
static const Color BERRY_LIGHT = Color(0xFFF8BBD0); // Yogurt Pink
17+
18+
/// 🍋 Citrus Theme: Zesty, bright, energetic
19+
static const Color CITRUS_ORANGE = Color(0xFFFF9800); // Orange
20+
static const Color CITRUS_YELLOW = Color(0xFFFFEB3B); // Lemon
21+
static const Color CITRUS_LIME = Color(0xFFCDDC39); // Lime
22+
static const Color CITRUS_GREEN = Color(0xFF8BC34A); // Citrus Leaf
23+
static const Color CITRUS_PEACH = Color(0xFFFFCC80); // Peach
24+
25+
}
26+
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFKidsEducationColors {
4+
// 🎨 Primary Vibrant Colors
5+
static const Color SUNNY_YELLOW = Color(0xFFFFEB3B); // Happiness & focus
6+
static const Color SKY_BLUE = Color(0xFF81D4FA); // Calm, focus
7+
static const Color GRASS_GREEN = Color(0xFF81C784); // Growth, balance
8+
static const Color BUBBLEGUM_PINK = Color(0xFFF48FB1); // Fun, friendliness
9+
static const Color TANGERINE_ORANGE = Color(0xFFFFB74D); // Energy, warmth
10+
static const Color CANDY_PURPLE = Color(0xFFBA68C8); // Imagination
11+
12+
// 🧩 Learning Accent Colors
13+
static const Color CRAYON_RED = Color(0xFFE57373); // Alertness
14+
static const Color MINT_GREEN = Color(0xFFB2DFDB); // Freshness
15+
static const Color PUZZLE_BLUE = Color(0xFF64B5F6); // Cognitive trigger
16+
static const Color BLOCK_BROWN = Color(0xFFA1887F); // Stability
17+
18+
// 🌈 Themed Neutrals for Balance
19+
static const Color CHALK_WHITE = Color(0xFFFFFDE7); // Light background
20+
static const Color BOARD_BLACK = Color(0xFF2E2E2E); // Text contrast
21+
static const Color PENCIL_GRAY = Color(0xFFBDBDBD); // Icons/lines
22+
23+
// 🍭 Special Fun Colors
24+
static const Color LEGO_RED = Color(0xFFD32F2F); // Playful blocks
25+
static const Color SLIME_GREEN = Color(0xFF66BB6A); // Playfulness
26+
static const Color MAGIC_PURPLE = Color(0xFF9575CD); // Creativity
27+
28+
// 📚 Utility Groupings
29+
static const List<Color> vibrantSet = [
30+
SUNNY_YELLOW,
31+
SKY_BLUE,
32+
GRASS_GREEN,
33+
BUBBLEGUM_PINK,
34+
TANGERINE_ORANGE,
35+
CANDY_PURPLE,
36+
];
37+
38+
static const List<Color> learningSet = [
39+
CRAYON_RED,
40+
PUZZLE_BLUE,
41+
MINT_GREEN,
42+
BLOCK_BROWN,
43+
];
44+
45+
static const List<Color> neutralSet = [
46+
CHALK_WHITE,
47+
BOARD_BLACK,
48+
PENCIL_GRAY,
49+
];
50+
51+
static const List<Color> funSet = [
52+
LEGO_RED,
53+
SLIME_GREEN,
54+
MAGIC_PURPLE,
55+
];
56+
57+
}

lib/colors/gf_luxury_color.dart

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFLuxuryColors {
4+
/// ✨ Gold Theme: Prestige, wealth, warmth
5+
static const Color GOLD = Color(0xFFFFD700); // Classic Gold
6+
static const Color ROSE_GOLD = Color(0xFFB76E79); // Rose Gold
7+
static const Color CHAMPAGNE_GOLD = Color(0xFFF7E7CE); // Champagne Gold
8+
9+
/// 💎 Silver Theme: Sleek, modern, minimal
10+
static const Color SILVER = Color(0xFFC0C0C0); // Silver
11+
static const Color METALLIC_SILVER = Color(0xFFB0B0B0); // Steel Silver
12+
static const Color LIGHT_SILVER = Color(0xFFE0E0E0); // Soft Silver
13+
14+
/// 🪙 Platinum Theme: Prestige, exclusivity
15+
static const Color PLATINUM = Color(0xFFE5E4E2); // Standard Platinum
16+
static const Color PLATINUM_GREY = Color(0xFFB2BEB5); // Industrial Platinum
17+
static const Color PEARL_WHITE = Color(0xFFFFFDF0); // Elegant Pearl
18+
19+
/// Optional: Background or accent
20+
static const Color BLACK_LUX = Color(0xFF121212); // Deep black for contrast
21+
static const Color WHITE_LUX = Color(0xFFFFFFFF); // Clean white
22+
23+
}
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFMedicalHealthcareColors {
4+
// 🔷 Primary Healthcare Colors
5+
static const Color MEDICAL_BLUE = Color(0xFF1976D2); // Trust, reliability
6+
static const Color HOSPITAL_WHITE = Color(0xFFF1F8FF); // Clean, sterile
7+
static const Color SCRUB_GREEN = Color(0xFF388E3C); // Healing, balance
8+
static const Color HEALTH_TEAL = Color(0xFF00796B); // Calm, reassurance
9+
10+
// 🌡️ Alert & Status Colors
11+
static const Color ALERT_RED = Color(0xFFD32F2F); // Urgency, alerts
12+
static const Color WARNING_ORANGE = Color(0xFFF57C00); // Caution
13+
static const Color STABLE_YELLOW = Color(0xFFFFF176); // Monitoring
14+
static const Color CRITICAL_PURPLE = Color(0xFF7E57C2); // Diagnostic
15+
16+
// 🩺 Neutral & Functional Colors
17+
static const Color DOCTOR_GRAY = Color(0xFF757575); // Text & icons
18+
static const Color LAB_BACKGROUND = Color(0xFFF5F5F5); // Card/background
19+
static const Color PHARMA_SILVER = Color(0xFFE0E0E0); // Divider, border
20+
21+
// 💊 Specialty Color Tags
22+
static const Color PEDIATRIC_PINK = Color(0xFFF8BBD0); // Kids healthcare
23+
static const Color DENTAL_BLUE = Color(0xFF64B5F6); // Dental theme
24+
static const Color SURGICAL_GREEN = Color(0xFF81C784); // Surgery theme
25+
static const Color WELLNESS_INDIGO = Color(0xFF5C6BC0); // Mental health
26+
27+
// 🧬 Department Color Map
28+
static const Map<String, Color> departmentColors = {
29+
'General': MEDICAL_BLUE,
30+
'Emergency': ALERT_RED,
31+
'Pediatrics': PEDIATRIC_PINK,
32+
'Dental': DENTAL_BLUE,
33+
'Surgery': SURGICAL_GREEN,
34+
'MentalHealth': WELLNESS_INDIGO,
35+
'Pharmacy': HEALTH_TEAL,
36+
'Radiology': CRITICAL_PURPLE,
37+
};
38+
39+
// 🌈 Suggested UI Groupings
40+
static const List<Color> statusColors = [
41+
ALERT_RED,
42+
WARNING_ORANGE,
43+
STABLE_YELLOW,
44+
CRITICAL_PURPLE,
45+
];
46+
47+
static const List<Color> backgroundColors = [
48+
HOSPITAL_WHITE,
49+
LAB_BACKGROUND,
50+
PHARMA_SILVER,
51+
];
52+
53+
static const List<Color> specialtyColors = [
54+
PEDIATRIC_PINK,
55+
DENTAL_BLUE,
56+
SURGICAL_GREEN,
57+
WELLNESS_INDIGO,
58+
];
59+
}

lib/colors/gf_space_color.dart

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import 'package:flutter/material.dart';
2+
3+
class GFSpaceColors {
4+
/// 🌌 Galactic Backgrounds
5+
static const Color COSMIC_BLACK = Color(0xFF0B0C10); // Deep space black
6+
static const Color NEBULA_PURPLE = Color(0xFF6A0DAD); // Interstellar clouds
7+
static const Color STARFIELD = Color(0xFF1C1C3A); // Starfield night
8+
9+
/// 🌠 Light Sources & Effects
10+
static const Color STELLAR_YELLOW = Color(0xFFFFD700); // Sunlight, stars
11+
static const Color SUPERNOVA_ORANGE = Color(0xFFFF6F00); // Exploding stars
12+
static const Color PULSAR_BLUE = Color(0xFF3D5AFE); // Energetic pulsar beams
13+
14+
/// 🪐 Planetary Tones
15+
static const Color MARS_RED = Color(0xFFB22222); // Mars surface
16+
static const Color EARTH_BLUE = Color(0xFF1E88E5); // Earth’s ocean
17+
static const Color VENUS_GOLD = Color(0xFFE6C229); // Venus atmosphere
18+
static const Color JUPITER_BRONZE = Color(0xFF8B5E3C); // Jupiter bands
19+
static const Color SATURN_BEIGE = Color(0xFFD6A77A); // Saturn rings
20+
static const Color NEPTUNE_NAVY = Color(0xFF2C387E); // Neptune deep blue
21+
static const Color URANUS_ICE = Color(0xFF76D7EA); // Uranus pale cyan
22+
static const Color MOON_GRAY = Color(0xFFBDBDBD); // Moon dust
23+
24+
/// 🌌 Miscellaneous
25+
static const Color AURORA_GREEN = Color(0xFF00FFB3); // Aurora Borealis
26+
static const Color DARK_MATTER = Color(0xFF121212); // Invisible form
27+
static const Color COMET_TAIL = Color(0xFFE1F5FE); // Ice trail
28+
29+
}

0 commit comments

Comments
 (0)