ui-pro-forge-cli 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +99 -0
- package/assets/data/app-interface.csv +31 -0
- package/assets/data/charts.csv +26 -0
- package/assets/data/colors.csv +194 -0
- package/assets/data/google-fonts.csv +1924 -0
- package/assets/data/icons.csv +106 -0
- package/assets/data/landing.csv +35 -0
- package/assets/data/motion.csv +17 -0
- package/assets/data/products.csv +193 -0
- package/assets/data/react-performance.csv +45 -0
- package/assets/data/stacks/angular.csv +51 -0
- package/assets/data/stacks/astro.csv +54 -0
- package/assets/data/stacks/avalonia.csv +57 -0
- package/assets/data/stacks/flutter.csv +53 -0
- package/assets/data/stacks/html-tailwind.csv +56 -0
- package/assets/data/stacks/javafx.csv +76 -0
- package/assets/data/stacks/jetpack-compose.csv +53 -0
- package/assets/data/stacks/laravel.csv +51 -0
- package/assets/data/stacks/nextjs.csv +53 -0
- package/assets/data/stacks/nuxt-ui.csv +71 -0
- package/assets/data/stacks/nuxtjs.csv +59 -0
- package/assets/data/stacks/react-native.csv +52 -0
- package/assets/data/stacks/react.csv +54 -0
- package/assets/data/stacks/shadcn.csv +61 -0
- package/assets/data/stacks/solidjs.csv +21 -0
- package/assets/data/stacks/svelte.csv +54 -0
- package/assets/data/stacks/swiftui.csv +51 -0
- package/assets/data/stacks/threejs.csv +54 -0
- package/assets/data/stacks/uno.csv +60 -0
- package/assets/data/stacks/vue.csv +50 -0
- package/assets/data/stacks/winui.csv +60 -0
- package/assets/data/styles.csv +86 -0
- package/assets/data/typography.csv +75 -0
- package/assets/data/ui-reasoning.csv +162 -0
- package/assets/data/ux-guidelines.csv +100 -0
- package/assets/scripts/core.py +463 -0
- package/assets/scripts/design_system.py +1371 -0
- package/assets/scripts/search.py +162 -0
- package/assets/scripts/tests/test_core.py +134 -0
- package/assets/scripts/validate_data.py +114 -0
- package/assets/skills/banner-design/SKILL.md +196 -0
- package/assets/skills/banner-design/references/banner-sizes-and-styles.md +118 -0
- package/assets/skills/brand/SKILL.md +97 -0
- package/assets/skills/brand/references/approval-checklist.md +169 -0
- package/assets/skills/brand/references/asset-organization.md +157 -0
- package/assets/skills/brand/references/brand-guideline-template.md +140 -0
- package/assets/skills/brand/references/color-palette-management.md +186 -0
- package/assets/skills/brand/references/consistency-checklist.md +94 -0
- package/assets/skills/brand/references/logo-usage-rules.md +185 -0
- package/assets/skills/brand/references/messaging-framework.md +85 -0
- package/assets/skills/brand/references/typography-specifications.md +214 -0
- package/assets/skills/brand/references/update.md +118 -0
- package/assets/skills/brand/references/visual-identity.md +96 -0
- package/assets/skills/brand/references/voice-framework.md +88 -0
- package/assets/skills/brand/scripts/extract-colors.cjs +341 -0
- package/assets/skills/brand/scripts/inject-brand-context.cjs +349 -0
- package/assets/skills/brand/scripts/sync-brand-to-tokens.cjs +248 -0
- package/assets/skills/brand/scripts/tests/test_sync_brand_to_tokens.py +52 -0
- package/assets/skills/brand/scripts/validate-asset.cjs +387 -0
- package/assets/skills/brand/templates/brand-guidelines-starter.md +275 -0
- package/assets/skills/design/SKILL.md +313 -0
- package/assets/skills/design/data/cip/deliverables.csv +51 -0
- package/assets/skills/design/data/cip/industries.csv +21 -0
- package/assets/skills/design/data/cip/mockup-contexts.csv +21 -0
- package/assets/skills/design/data/cip/styles.csv +21 -0
- package/assets/skills/design/data/icon/styles.csv +16 -0
- package/assets/skills/design/data/logo/colors.csv +56 -0
- package/assets/skills/design/data/logo/industries.csv +56 -0
- package/assets/skills/design/data/logo/styles.csv +56 -0
- package/assets/skills/design/references/banner-sizes-and-styles.md +118 -0
- package/assets/skills/design/references/cip-deliverable-guide.md +95 -0
- package/assets/skills/design/references/cip-design.md +121 -0
- package/assets/skills/design/references/cip-prompt-engineering.md +84 -0
- package/assets/skills/design/references/cip-style-guide.md +68 -0
- package/assets/skills/design/references/design-routing.md +207 -0
- package/assets/skills/design/references/icon-design.md +122 -0
- package/assets/skills/design/references/logo-color-psychology.md +101 -0
- package/assets/skills/design/references/logo-design.md +92 -0
- package/assets/skills/design/references/logo-prompt-engineering.md +158 -0
- package/assets/skills/design/references/logo-style-guide.md +109 -0
- package/assets/skills/design/references/slides-copywriting-formulas.md +84 -0
- package/assets/skills/design/references/slides-create.md +4 -0
- package/assets/skills/design/references/slides-html-template.md +295 -0
- package/assets/skills/design/references/slides-layout-patterns.md +137 -0
- package/assets/skills/design/references/slides-strategies.md +94 -0
- package/assets/skills/design/references/slides.md +42 -0
- package/assets/skills/design/references/social-photos-design.md +329 -0
- package/assets/skills/design/scripts/cip/core.py +215 -0
- package/assets/skills/design/scripts/cip/generate.py +484 -0
- package/assets/skills/design/scripts/cip/render-html.py +424 -0
- package/assets/skills/design/scripts/cip/search.py +127 -0
- package/assets/skills/design/scripts/icon/generate.py +487 -0
- package/assets/skills/design/scripts/logo/core.py +175 -0
- package/assets/skills/design/scripts/logo/generate.py +362 -0
- package/assets/skills/design/scripts/logo/search.py +114 -0
- package/assets/skills/design-system/SKILL.md +244 -0
- package/assets/skills/design-system/data/slide-backgrounds.csv +11 -0
- package/assets/skills/design-system/data/slide-charts.csv +26 -0
- package/assets/skills/design-system/data/slide-color-logic.csv +14 -0
- package/assets/skills/design-system/data/slide-copy.csv +26 -0
- package/assets/skills/design-system/data/slide-layout-logic.csv +16 -0
- package/assets/skills/design-system/data/slide-layouts.csv +26 -0
- package/assets/skills/design-system/data/slide-strategies.csv +16 -0
- package/assets/skills/design-system/data/slide-typography.csv +15 -0
- package/assets/skills/design-system/references/component-specs.md +236 -0
- package/assets/skills/design-system/references/component-tokens.md +214 -0
- package/assets/skills/design-system/references/primitive-tokens.md +203 -0
- package/assets/skills/design-system/references/semantic-tokens.md +215 -0
- package/assets/skills/design-system/references/states-and-variants.md +241 -0
- package/assets/skills/design-system/references/tailwind-integration.md +251 -0
- package/assets/skills/design-system/references/token-architecture.md +224 -0
- package/assets/skills/design-system/scripts/embed-tokens.cjs +99 -0
- package/assets/skills/design-system/scripts/fetch-background.py +317 -0
- package/assets/skills/design-system/scripts/generate-slide.py +770 -0
- package/assets/skills/design-system/scripts/generate-tokens.cjs +205 -0
- package/assets/skills/design-system/scripts/html-token-validator.py +327 -0
- package/assets/skills/design-system/scripts/search-slides.py +218 -0
- package/assets/skills/design-system/scripts/slide-token-validator.py +35 -0
- package/assets/skills/design-system/scripts/slide_search_core.py +453 -0
- package/assets/skills/design-system/scripts/tests/test_validate_tokens.py +48 -0
- package/assets/skills/design-system/scripts/validate-tokens.cjs +246 -0
- package/assets/skills/design-system/templates/design-tokens-starter.json +143 -0
- package/assets/skills/slides/SKILL.md +40 -0
- package/assets/skills/slides/references/copywriting-formulas.md +84 -0
- package/assets/skills/slides/references/create.md +4 -0
- package/assets/skills/slides/references/html-template.md +295 -0
- package/assets/skills/slides/references/layout-patterns.md +137 -0
- package/assets/skills/slides/references/slide-strategies.md +94 -0
- package/assets/skills/ui-styling/LICENSE.txt +202 -0
- package/assets/skills/ui-styling/SKILL.md +324 -0
- package/assets/skills/ui-styling/references/canvas-design-system.md +320 -0
- package/assets/skills/ui-styling/references/shadcn-accessibility.md +471 -0
- package/assets/skills/ui-styling/references/shadcn-components.md +424 -0
- package/assets/skills/ui-styling/references/shadcn-theming.md +373 -0
- package/assets/skills/ui-styling/references/tailwind-customization.md +483 -0
- package/assets/skills/ui-styling/references/tailwind-responsive.md +382 -0
- package/assets/skills/ui-styling/references/tailwind-utilities.md +455 -0
- package/assets/skills/ui-styling/scripts/requirements.txt +17 -0
- package/assets/skills/ui-styling/scripts/shadcn_add.py +308 -0
- package/assets/skills/ui-styling/scripts/tailwind_config_gen.py +473 -0
- package/assets/skills/ui-styling/scripts/tests/coverage-ui.json +1 -0
- package/assets/skills/ui-styling/scripts/tests/requirements.txt +3 -0
- package/assets/skills/ui-styling/scripts/tests/test_shadcn_add.py +266 -0
- package/assets/skills/ui-styling/scripts/tests/test_tailwind_config_gen.py +394 -0
- package/assets/templates/base/quick-reference.md +297 -0
- package/assets/templates/base/skill-content.md +384 -0
- package/assets/templates/platforms/agent.json +21 -0
- package/assets/templates/platforms/augment.json +18 -0
- package/assets/templates/platforms/claude.json +21 -0
- package/assets/templates/platforms/codebuddy.json +21 -0
- package/assets/templates/platforms/codewhale.json +21 -0
- package/assets/templates/platforms/codex.json +21 -0
- package/assets/templates/platforms/continue.json +21 -0
- package/assets/templates/platforms/copilot.json +21 -0
- package/assets/templates/platforms/cursor.json +21 -0
- package/assets/templates/platforms/droid.json +21 -0
- package/assets/templates/platforms/gemini.json +21 -0
- package/assets/templates/platforms/kilocode.json +21 -0
- package/assets/templates/platforms/kiro.json +21 -0
- package/assets/templates/platforms/opencode.json +21 -0
- package/assets/templates/platforms/qoder.json +21 -0
- package/assets/templates/platforms/roocode.json +21 -0
- package/assets/templates/platforms/trae.json +21 -0
- package/assets/templates/platforms/warp.json +18 -0
- package/assets/templates/platforms/windsurf.json +21 -0
- package/dist/commands/init.d.ts +11 -0
- package/dist/commands/init.js +165 -0
- package/dist/commands/uninstall.d.ts +7 -0
- package/dist/commands/uninstall.js +131 -0
- package/dist/commands/update.d.ts +7 -0
- package/dist/commands/update.js +73 -0
- package/dist/commands/versions.d.ts +5 -0
- package/dist/commands/versions.js +36 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +78 -0
- package/dist/types/index.d.ts +40 -0
- package/dist/types/index.js +25 -0
- package/dist/utils/detect.d.ts +8 -0
- package/dist/utils/detect.js +115 -0
- package/dist/utils/extract.d.ts +15 -0
- package/dist/utils/extract.js +125 -0
- package/dist/utils/github.d.ts +12 -0
- package/dist/utils/github.js +97 -0
- package/dist/utils/logger.d.ts +8 -0
- package/dist/utils/logger.js +9 -0
- package/dist/utils/template.d.ts +50 -0
- package/dist/utils/template.js +249 -0
- package/package.json +65 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
No,Context Name,Category,Keywords,Scene Description,Lighting,Environment,Props,Camera Angle,Background,Style Notes,Best For,Prompt Modifiers
|
|
2
|
+
1,Marble Desk,Stationery,marble luxury desk surface premium,Business cards on white marble desk surface,Soft natural daylight,Minimalist desk setup,Pen plant small decor,45 degree overhead,White grey marble veins,Clean shadows soft edges,Business cards letterhead,photorealistic soft shadows luxury
|
|
3
|
+
2,Wooden Table,Stationery,wood natural warm rustic table,Stationery items on warm wooden table,Warm natural light,Cozy workspace,Coffee cup notebook,Flat lay overhead,Warm wood grain texture,Natural warm tones,Notebooks folders organic brands,warm tones natural textures
|
|
4
|
+
3,Concrete Surface,Modern,concrete industrial urban minimalist,Items on raw concrete surface,Dramatic directional,Industrial minimal,Minimal geometric,Direct overhead,Grey concrete texture,High contrast dramatic,Tech modern industrial brands,dramatic lighting industrial minimal
|
|
5
|
+
4,Dark Background,Premium,dark moody black sophisticated,Items floating on dark background,Dramatic rim light,Studio dark,None minimal,Product centered,Deep black gradient,Dramatic luxurious,Luxury premium dark brands,dramatic rim lighting luxury
|
|
6
|
+
5,White Studio,Clean,white clean studio bright minimal,Clean studio shot white background,Bright even lighting,White infinity curve,None clean,Product centered,Pure white seamless,Clean professional,All brands product focused,clean white professional studio
|
|
7
|
+
6,Office Lobby,Environment,reception lobby corporate office,Reception area with brand signage,Bright modern office,Modern office interior,Plants furniture,Wide architectural,Glass wood modern materials,Architectural modern,Office signage reception,architectural photography modern office
|
|
8
|
+
7,Meeting Room,Environment,conference meeting corporate glass,Meeting room with brand elements,Natural window light,Modern glass walls,Conference table chairs,Interior wide angle,Glass partitions wood,Contemporary professional,Meeting room signs presentations,corporate interior photography
|
|
9
|
+
8,Retail Store,Environment,shop retail display store,Retail environment with branded elements,Bright retail lighting,Modern retail space,Displays products,Interior wide,Modern retail fixtures,Retail contemporary,Shopping bags displays retail,retail interior photography
|
|
10
|
+
9,Street Scene,Vehicle,urban street city car,Vehicle on urban street,Daylight golden hour,City street scene,Buildings pedestrians,3/4 front angle,Urban architecture,Dynamic urban,Vehicle branding fleet,urban photography dynamic
|
|
11
|
+
10,Parking Lot,Vehicle,parking corporate lot fleet,Fleet vehicles in parking,Overcast soft light,Corporate parking,Multiple vehicles,Wide establishing,Modern building,Fleet organized,Fleet multiple vehicles,fleet photography corporate
|
|
12
|
+
11,Highway Motion,Vehicle,road highway motion blur,Vehicle in motion on highway,Daylight clear,Highway motion,Road markings blur,Side tracking shot,Blurred background motion,Dynamic speed,Vehicle branding dynamic,motion photography speed
|
|
13
|
+
12,Trade Show,Events,exhibition booth event show,Trade show booth setup,Bright exhibition,Convention center,Displays banners,Wide booth view,Exhibition hall,Professional event,Booth banners displays,exhibition photography trade show
|
|
14
|
+
13,Conference,Events,conference event professional,Conference event setup,Stage lighting,Conference venue,Podium screens,Wide room view,Professional venue,Professional formal,Backdrops badges lanyards,event photography conference
|
|
15
|
+
14,Outdoor Event,Events,outdoor festival event brand,Outdoor event with brand presence,Natural daylight,Outdoor venue,Tents flags banners,Wide establishing,Sky outdoor space,Fresh dynamic,Outdoor banners flags tents,outdoor event photography
|
|
16
|
+
15,Lifestyle Desk,Digital,workspace laptop desk lifestyle,Modern workspace with digital devices,Soft natural light,Modern workspace,Laptop phone notebook,Overhead angle,Clean desk surface,Lifestyle modern,Digital mockups social media,lifestyle photography workspace
|
|
17
|
+
16,Hand Holding,Product,hand holding product lifestyle,Hand holding branded item,Soft natural light,Neutral environment,Human hand product,Close-up detail,Blurred background,Human connection,Business cards products,lifestyle product photography
|
|
18
|
+
17,Flat Lay,Product,flat lay arranged organized,Organized flat lay arrangement,Even overhead light,Neutral surface,Multiple items arranged,Direct overhead,Clean surface,Organized aesthetic,Multiple items stationery,flat lay photography arranged
|
|
19
|
+
18,Unboxing,Product,unboxing packaging reveal,Package opening reveal moment,Soft directional,Clean surface,Packaging tissue,Overhead angle,Neutral background,Premium reveal,Gift boxes packaging,unboxing photography premium
|
|
20
|
+
19,Fashion Model,Apparel,model wearing fashion lifestyle,Model wearing branded apparel,Fashion lighting,Studio or location,Model styling,Fashion portrait,Clean or contextual,Fashion lifestyle,Uniforms apparel clothing,fashion photography lifestyle
|
|
21
|
+
20,Product Grid,Catalog,grid multiple products organized,Multiple products organized grid,Even lighting,White background,Multiple items,Direct overhead,Pure white,Catalog clean,Multiple variations colors,catalog photography grid
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
No,Style Name,Category,Keywords,Description,Primary Colors,Secondary Colors,Typography,Materials,Finishes,Mood,Best For,Avoid For
|
|
2
|
+
1,Corporate Minimal,Professional,minimal clean corporate professional,Clean minimal corporate aesthetics with restrained color use,#0F172A #1E3A8A #FFFFFF,#64748B #E2E8F0,Sans-serif geometric clean,Premium paper quality materials,Matte spot UV,Professional trustworthy,Finance legal consulting tech,Playful consumer youth brands
|
|
3
|
+
2,Modern Tech,Professional,tech modern digital startup,Contemporary tech-forward visual identity,#6366F1 #8B5CF6 #0EA5E9,#10B981 #F8FAFC,Geometric sans modern,Smooth surfaces metals,Metallic gradients gloss,Innovative forward-thinking,Tech SaaS startups digital,Traditional heritage conservative
|
|
4
|
+
3,Luxury Premium,Premium,luxury premium elegant exclusive,High-end sophisticated premium aesthetics,#1C1917 #D4AF37 #FFFFFF,#44403C #FAFAF9,Elegant serif thin sans,Leather metal glass,Gold foil emboss deboss,Prestigious exclusive,Luxury fashion jewelry hotels,Budget mass market casual
|
|
5
|
+
4,Classic Traditional,Heritage,classic traditional timeless established,Timeless traditional corporate aesthetics,#0F172A #1E3A8A #D4AF37,#713F12 #F5F5F4,Serif traditional classic,Quality paper leather wood,Emboss letterpress gold,Established trustworthy,Law finance heritage established,Trendy modern startups
|
|
6
|
+
5,Fresh Modern,Contemporary,fresh modern contemporary clean,Light fresh contemporary visual style,#10B981 #0EA5E9 #FFFFFF,#22D3EE #F0FDF4,Modern sans-serif rounded,Light materials glass acrylics,Matte clean minimal,Fresh approachable,Wellness tech healthcare green,Heavy industrial traditional
|
|
7
|
+
6,Bold Dynamic,Energetic,bold dynamic energetic vibrant,High energy bold visual presence,#DC2626 #F97316 #FBBF24,#000000 #FFFFFF,Bold condensed strong,Strong materials metals,Gloss vibrant finishes,Energetic powerful,Sports entertainment media,Conservative corporate calm
|
|
8
|
+
7,Warm Organic,Natural,warm organic natural sustainable,Warm natural organic visual aesthetics,#8B4513 #228B22 #DEB887,#F5F5DC #2F4F4F,Organic serif friendly,Natural materials kraft recycled,Uncoated natural textures,Authentic sustainable,Organic food eco wellness,Tech corporate industrial
|
|
9
|
+
8,Soft Elegant,Feminine,soft elegant feminine delicate,Soft elegant feminine visual approach,#F472B6 #D4AF37 #FFFFFF,#FBCFE8 #FDF2F8,Elegant script thin sans,Soft materials quality paper,Rose gold soft touch,Elegant romantic,Beauty wedding fashion spa,Industrial masculine aggressive
|
|
10
|
+
9,Dark Premium,Sophisticated,dark premium sophisticated mysterious,Dark sophisticated premium aesthetics,#0F0F0F #1A1A1A #D4AF37,#3D3D3D #FFFFFF,Clean modern bold sans,Dark materials metals glass,Matte metallic accents,Sophisticated mysterious,Nightlife luxury tech fashion,Children medical bright
|
|
11
|
+
10,Playful Colorful,Fun,playful colorful fun vibrant,Fun colorful playful visual identity,#F472B6 #FBBF24 #4ADE80,#A78BFA #22D3EE,Rounded friendly bold,Bright materials plastics,Gloss vibrant playful,Fun energetic friendly,Children entertainment gaming,Corporate serious medical
|
|
12
|
+
11,Industrial Raw,Industrial,industrial raw urban authentic,Raw industrial urban aesthetics,#374151 #78716C #F97316,#1F2937 #D6D3D1,Strong condensed bold,Raw materials concrete metal,Raw exposed textures,Strong authentic,Manufacturing construction craft,Soft luxury feminine
|
|
13
|
+
12,Scandinavian Minimal,Minimal,scandinavian nordic minimal clean,Nordic-inspired minimal clean design,#FFFFFF #F5F5F5 #0F172A,#D4D4D4 #1E3A8A,Clean geometric sans,Light wood white materials,Matte minimal clean,Calm sophisticated clean,Design home wellness nordic,Bold colorful traditional
|
|
14
|
+
13,Retro Vintage,Nostalgic,retro vintage nostalgic classic,Nostalgic retro-inspired visual identity,#8B4513 #CA8A04 #DC2626,#2F4F4F #DEB887,Vintage serif script display,Heritage materials aged textures,Letterpress aged effects,Nostalgic authentic,Food beverage craft artisan,Modern tech digital
|
|
15
|
+
14,Geometric Modern,Abstract,geometric abstract modern shapes,Contemporary geometric abstract approach,#6366F1 #0EA5E9 #F97316,#10B981 #FFFFFF,Geometric sans modern,Smooth contemporary materials,Clean precise finishes,Modern innovative,Architecture design tech creative,Traditional conservative organic
|
|
16
|
+
15,Monochrome Elegant,Sophisticated,monochrome black white elegant,Sophisticated black and white aesthetics,#000000 #FFFFFF #D4AF37,#374151 #F5F5F5,Elegant serif sans contrast,Premium monochrome materials,Matte foil emboss,Sophisticated timeless,Luxury fashion photography,Colorful playful vibrant
|
|
17
|
+
16,Gradient Modern,Digital,gradient colorful digital modern,Modern gradient-based visual style,#6366F1 #EC4899 #F97316,#8B5CF6 #22D3EE,Modern geometric sans,Digital smooth surfaces,Glossy gradient effects,Modern dynamic digital,Tech gaming digital media,Traditional print-focused
|
|
18
|
+
17,Nature Biophilic,Organic,nature biophilic green organic,Nature-inspired biophilic design approach,#228B22 #8B4513 #0EA5E9,#22C55E #0891B2,Organic friendly readable,Natural sustainable materials,Natural textures matte,Natural calming authentic,Wellness outdoor eco organic,Industrial urban tech
|
|
19
|
+
18,Art Deco,Heritage,art deco geometric luxury vintage,Art Deco inspired geometric elegance,#D4AF37 #0F172A #FFFFFF,#8B4513 #1E3A8A,Geometric display serif,Premium metals marble,Gold metallics geometric,Elegant luxurious artistic,Hotels luxury events venues,Casual modern minimal
|
|
20
|
+
19,Swiss Minimal,Clean,swiss minimal international clean,Swiss International style minimal design,#FFFFFF #000000 #DC2626,#0F172A #F5F5F5,Helvetica-style sans grid,High quality precision materials,Clean precise matte,Clear precise professional,Corporate architecture design,Decorative ornate playful
|
|
21
|
+
20,Memphis Bold,Playful,memphis bold colorful patterns,Memphis-inspired bold colorful patterns,#F472B6 #FBBF24 #4ADE80,#6366F1 #22D3EE,Bold geometric display,Bold colorful materials,Gloss bold patterns,Fun bold creative,Creative entertainment youth,Conservative corporate serious
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
id,name,description,stroke_width,fill,best_for,keywords
|
|
2
|
+
outlined,Outlined,"Clean stroke-based icons with no fill, open paths",2px,none,"UI interfaces, web apps, dashboards","outline line stroke open clean"
|
|
3
|
+
filled,Filled,"Solid filled shapes with no stroke, bold presence",0,solid,"Mobile apps, nav bars, toolbars","solid fill bold flat shape"
|
|
4
|
+
duotone,Duotone,"Two-tone layered icons with primary and 30% opacity secondary",0,dual,"Marketing, landing pages, feature sections","two-tone layer opacity dual color"
|
|
5
|
+
thin,Thin,"Delicate thin line icons, minimal weight",1-1.5px,none,"Luxury brands, editorial, minimal UI","thin light delicate minimal hairline"
|
|
6
|
+
bold,Bold,"Heavy weight icons with thick strokes",3px,none,"Headers, hero sections, emphasis","bold heavy thick strong impactful"
|
|
7
|
+
rounded,Rounded,"Rounded line caps and joins, soft corners",2px,none,"Friendly apps, children, health","rounded soft friendly warm approachable"
|
|
8
|
+
sharp,Sharp,"Square line caps, mitered joins, precise edges",2px,none,"Tech, fintech, enterprise","sharp angular precise crisp exact"
|
|
9
|
+
flat,Flat,"Solid flat fills, no gradients or shadows",0,solid,"Material design, Google-style UI","flat material simple geometric clean"
|
|
10
|
+
gradient,Gradient,"Linear or radial gradient fills",0,gradient,"Modern brands, SaaS, creative","gradient color transition vibrant modern"
|
|
11
|
+
glassmorphism,Glassmorphism,"Semi-transparent fills simulating frosted glass",1px,semi-transparent,"Modern UI, overlays, cards","glass frosted transparent blur modern"
|
|
12
|
+
pixel,Pixel,"Pixel art style on grid, retro 8-bit aesthetic",0,solid,"Gaming, retro, nostalgia","pixel retro 8bit grid blocky"
|
|
13
|
+
hand-drawn,Hand-drawn,"Irregular strokes, organic sketch-like feel",varies,none,"Artisan, creative, casual","sketch organic hand drawn artistic"
|
|
14
|
+
isometric,Isometric,"3D isometric projection, 30-degree angles",1-2px,partial,"Tech docs, infographics, diagrams","3d isometric dimensional depth"
|
|
15
|
+
glyph,Glyph,"Single solid shape, minimal detail, pictogram style",0,solid,"System UI, status bar, compact","glyph pictogram symbol minimal compact"
|
|
16
|
+
animated-ready,Animated-ready,"SVG with named groups/IDs for CSS/JS animation",2px,varies,"Interactive UI, onboarding, micro-interactions","animation motion interactive css js"
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
No,Palette Name,Category,Keywords,Primary Hex,Secondary Hex,Accent Hex,Background Hex,Text Hex,Psychology,Best For,Avoid For
|
|
2
|
+
1,Classic Blue Trust,Professional,"trust, stability, corporate, reliable",#003366,#0055A4,#FFD700,#FFFFFF,#1A1A1A,Trust reliability professionalism,Finance legal healthcare corporate,Entertainment children playful
|
|
3
|
+
2,Tech Gradient,Technology,"modern, innovative, digital, future",#6366F1,#8B5CF6,#06B6D4,#0F172A,#F8FAFC,Innovation technology forward-thinking,Tech startups SaaS AI companies,Traditional heritage artisan
|
|
4
|
+
3,Eco Green,Nature,"sustainable, natural, growth, fresh",#228B22,#2E8B57,#8FBC8F,#F0FFF0,#1A1A1A,Growth sustainability health nature,Organic eco wellness environmental,Luxury tech industrial
|
|
5
|
+
4,Luxury Gold,Premium,"elegance, premium, wealth, sophisticated",#1C1917,#44403C,#D4AF37,#FAFAF9,#0C0A09,Luxury prestige exclusivity wealth,Luxury fashion jewelry hotels,Budget casual children
|
|
6
|
+
5,Vibrant Coral,Energetic,"warm, friendly, approachable, exciting",#FF6B6B,#FFE66D,#4ECDC4,#FFFFFF,#2C3E50,Energy warmth friendliness excitement,Food social media lifestyle,Corporate medical serious
|
|
7
|
+
6,Modern Purple,Creative,"creative, innovative, unique, premium",#7C3AED,#A78BFA,#F472B6,#FAF5FF,#1E1B4B,Creativity innovation imagination premium,Creative tech beauty brands,Traditional conservative
|
|
8
|
+
7,Fresh Mint,Clean,"fresh, clean, calm, modern",#10B981,#34D399,#6EE7B7,#ECFDF5,#064E3B,Freshness calmness cleanliness,Health wellness fintech apps,Industrial heavy traditional
|
|
9
|
+
8,Bold Red,Power,"passion, energy, urgency, bold",#DC2626,#EF4444,#F97316,#FEF2F2,#1F2937,Power passion urgency action,Food sports entertainment sale,Healthcare meditation calm
|
|
10
|
+
9,Navy Professional,Corporate,"professional, serious, trustworthy, established",#0F172A,#1E3A8A,#3B82F6,#F8FAFC,#020617,Authority trust professionalism,Legal finance consulting,Playful children casual
|
|
11
|
+
10,Warm Earth,Organic,"natural, authentic, grounded, warm",#8B4513,#D2691E,#DEB887,#FFF8DC,#2F1810,Authenticity warmth earthiness natural,Coffee craft artisan organic,Tech modern digital
|
|
12
|
+
11,Soft Blush,Feminine,"gentle, feminine, romantic, delicate",#F472B6,#FBCFE8,#FDA4AF,#FDF2F8,#831843,Femininity softness romance elegance,Beauty wedding fashion skincare,Industrial tech masculine
|
|
13
|
+
12,Electric Neon,Nightlife,"vibrant, exciting, youthful, digital",#FF00FF,#00FFFF,#39FF14,#0D0D0D,#FFFFFF,Energy excitement youth nightlife,Gaming entertainment clubs apps,Corporate traditional mature
|
|
14
|
+
13,Sunrise Gradient,Warm,"optimistic, warm, energetic, hopeful",#F97316,#FBBF24,#FCD34D,#FFFBEB,#78350F,Optimism warmth energy hope,Food lifestyle travel,Medical corporate serious
|
|
15
|
+
14,Ocean Deep,Calm,"calm, deep, trustworthy, serene",#0077B6,#00B4D8,#90E0EF,#CAF0F8,#023E8A,Calmness depth trust serenity,Wellness travel spa finance,Energy sports aggressive
|
|
16
|
+
15,Monochrome Gray,Minimal,"sophisticated, modern, neutral, elegant",#18181B,#3F3F46,#71717A,#FAFAFA,#09090B,Sophistication neutrality elegance,Luxury tech minimal design,Children playful vibrant
|
|
17
|
+
16,Forest Natural,Biophilic,"natural, sustainable, outdoors, growth",#14532D,#166534,#22C55E,#F0FDF4,#052E16,Nature growth sustainability,Outdoor eco wellness,Urban industrial digital
|
|
18
|
+
17,Candy Pop,Playful,"fun, youthful, colorful, energetic",#F472B6,#A78BFA,#22D3EE,#FFFFFF,#1E1B4B,Fun playfulness youth energy,Children toys games candy,Serious corporate medical
|
|
19
|
+
18,Vintage Sepia,Retro,"nostalgic, authentic, heritage, classic",#704214,#A0522D,#D2B48C,#FAF0E6,#3D2914,Nostalgia heritage authenticity,Craft heritage artisan vintage,Modern tech digital
|
|
20
|
+
19,Ice Cool,Fresh,"cool, fresh, professional, clean",#0891B2,#22D3EE,#A5F3FC,#ECFEFF,#164E63,Coolness freshness cleanliness,Tech healthcare dental spa,Warm food traditional
|
|
21
|
+
20,Sunset Warm,Inviting,"warm, inviting, comfortable, friendly",#EA580C,#F59E0B,#FACC15,#FFFBEB,#431407,Warmth comfort friendliness welcome,Hospitality food home,Medical tech cold
|
|
22
|
+
21,Royal Purple,Regal,"regal, creative, luxurious, wise",#581C87,#7C3AED,#C084FC,#FAF5FF,#3B0764,Royalty creativity wisdom luxury,Beauty creative luxury,Budget casual everyday
|
|
23
|
+
22,Olive Sage,Calm,"calm, natural, sophisticated, mature",#365314,#4D7C0F,#84CC16,#F7FEE7,#1A2E05,Calm maturity nature sophistication,Wellness food organic beauty,Tech gaming children
|
|
24
|
+
23,Cherry Bold,Passionate,"passionate, bold, exciting, romantic",#9F1239,#E11D48,#FB7185,#FFF1F2,#4C0519,Passion boldness romance excitement,Fashion cosmetics food,Corporate healthcare calm
|
|
25
|
+
24,Steel Industrial,Strong,"strong, industrial, modern, reliable",#374151,#4B5563,#9CA3AF,#F9FAFB,#111827,Strength reliability industrial modern,Industrial tech automotive,Soft feminine playful
|
|
26
|
+
25,Lavender Dream,Soft,"soft, calming, creative, spiritual",#6D28D9,#8B5CF6,#C4B5FD,#F5F3FF,#2E1065,Calm creativity spirituality softness,Wellness beauty spiritual,Industrial sports aggressive
|
|
27
|
+
26,Autumn Harvest,Warm,"warm, cozy, natural, seasonal",#9A3412,#C2410C,#EA580C,#FFF7ED,#431407,Warmth coziness natural seasonal,Food craft seasonal,Modern tech clinical
|
|
28
|
+
27,Arctic Blue,Cool,"cool, professional, clean, modern",#0C4A6E,#0369A1,#0EA5E9,#F0F9FF,#082F49,Cool professional clean trust,Tech healthcare finance,Warm food cozy
|
|
29
|
+
28,Terracotta Earth,Grounded,"grounded, warm, natural, artisan",#7C2D12,#9A3412,#EA580C,#FFF7ED,#431407,Warmth groundedness natural,Home craft pottery,Tech digital modern
|
|
30
|
+
29,Midnight Dark,Sophisticated,"sophisticated, luxurious, mysterious, elegant",#0F0F0F,#1A1A1A,#3D3D3D,#000000,#FFFFFF,Sophistication mystery elegance,Luxury fashion tech nightlife,Children medical friendly
|
|
31
|
+
30,Pastel Rainbow,Gentle,"gentle, playful, approachable, soft",#FED7AA,#D8B4FE,#A5F3FC,#FFFFFF,#374151,Gentleness playfulness approachability,Children wellness creative,Serious corporate traditional
|
|
32
|
+
31,Dark Academia,Moody,"scholarly, vintage, intellectual, mysterious",#0D0D0D,#594636,#4B3E15,#2C3850,#DEB887,Intellectualism mystery heritage sophistication,Education publishing vintage libraries,Children playful bright modern
|
|
33
|
+
32,Tiffany Blue,Luxury,"elegant, feminine, luxurious, iconic",#0ABAB5,#81D8D0,#FFFFFF,#F0FFFF,#0F172A,Elegance luxury femininity sophistication,Jewelry luxury fashion wedding,Industrial budget masculine
|
|
34
|
+
33,Rose Gold,Feminine,"feminine, luxurious, modern, warm",#B76E79,#E8C4C4,#F4E4E4,#FFF5F5,#4A1C1C,Femininity luxury warmth elegance,Beauty jewelry fashion wedding,Industrial tech masculine
|
|
35
|
+
34,Obsidian Dark,Premium,"mysterious, elegant, powerful, sophisticated",#0B1215,#1C2833,#566573,#212F3D,#ECF0F1,Mystery power sophistication elegance,Luxury tech fashion automotive,Children medical friendly
|
|
36
|
+
35,Champagne Pink,Soft,"soft, romantic, elegant, feminine",#FDE4CF,#FFCFD2,#F1C0E8,#FBF8CC,#5C4033,Romance softness elegance femininity,Wedding beauty skincare,Industrial tech aggressive
|
|
37
|
+
36,Lemon Fresh,Bright,"optimistic, cheerful, fresh, energetic",#FBF8CC,#FFE66D,#98F5E1,#FFFFFF,#334155,Optimism cheerfulness freshness energy,Food wellness children lifestyle,Corporate serious formal
|
|
38
|
+
37,Periwinkle Dream,Calm,"calming, creative, dreamy, gentle",#CCCCFF,#B4B4DC,#E6E6FA,#F8F8FF,#2E2E5C,Calmness creativity dreaminess gentleness,Wellness beauty creative spiritual,Industrial aggressive sports
|
|
39
|
+
38,Coffee Brew,Warm,"warm, cozy, artisan, authentic",#3C2415,#6F4E37,#A67B5B,#DEB887,#1A0F09,Warmth coziness authenticity artisan,Coffee bakery craft organic,Tech modern cold
|
|
40
|
+
39,Marine Navy,Nautical,"trustworthy, nautical, classic, strong",#0C2461,#1B4F72,#2E86AB,#EBF5FB,#0A1628,Trust strength reliability nautical,Maritime finance corporate,Playful warm tropical
|
|
41
|
+
40,Mint Chocolate,Fresh,"fresh, indulgent, balanced, appetizing",#98F5E1,#3D2914,#C4A484,#F5FFFA,#1A0F09,Freshness balance indulgence,Food beverage cafe dessert,Corporate serious industrial
|
|
42
|
+
41,Coral Sunset,Warm,"warm, inviting, tropical, energetic",#FF6B6B,#FF8E72,#FFA07A,#FFF5EE,#8B2500,Warmth energy vibrancy invitation,Travel hospitality food lifestyle,Corporate cold clinical
|
|
43
|
+
42,Dusty Rose,Vintage,"vintage, romantic, sophisticated, muted",#DCAE96,#C9A9A6,#E8D5D5,#FAF5F3,#5C4033,Romance sophistication nostalgia vintage,Fashion beauty interior vintage,Tech modern vibrant
|
|
44
|
+
43,Electric Cyan,Modern,"futuristic, energetic, digital, bold",#00FFFF,#00CED1,#20B2AA,#0A1628,#FFFFFF,Energy innovation futurism technology,Tech gaming digital startups,Traditional vintage warm
|
|
45
|
+
44,Sage Green,Natural,"calming, natural, sophisticated, organic",#9CAF88,#B2BDA3,#DCE4D3,#F5F5F0,#3D4F39,Calmness nature sophistication organic,Wellness organic home spa,Industrial aggressive bold
|
|
46
|
+
45,Burgundy Rich,Luxurious,"luxurious, sophisticated, bold, rich",#722F37,#800020,#A52A2A,#FDF5E6,#2C1810,Luxury sophistication richness boldness,Wine luxury fashion restaurants,Children budget casual
|
|
47
|
+
46,Slate Professional,Modern,"professional, modern, neutral, sophisticated",#2F4F4F,#708090,#778899,#F5F5F5,#1C1C1C,Professionalism sophistication neutrality,Corporate tech consulting,Playful children warm
|
|
48
|
+
47,Peachy Keen,Friendly,"friendly, approachable, warm, youthful",#FFCBA4,#FFB347,#FFE5B4,#FFFAF0,#8B4513,Friendliness warmth approachability,Food lifestyle social media,Corporate serious formal
|
|
49
|
+
48,Nordic Frost,Clean,"clean, minimal, sophisticated, calm",#E8F4F8,#B0C4DE,#87CEEB,#FFFFFF,#2C3E50,Cleanliness minimalism calm sophistication,Scandinavian tech wellness,Warm tropical vibrant
|
|
50
|
+
49,Emerald Luxury,Premium,"luxurious, natural, prestigious, rich",#046307,#228B22,#50C878,#F0FFF0,#022002,Luxury nature prestige richness,Luxury eco jewelry finance,Budget casual playful
|
|
51
|
+
50,Mauve Elegant,Sophisticated,"sophisticated, feminine, calm, elegant",#E0B0FF,#DDA0DD,#D8BFD8,#FAF0FA,#4A2040,Sophistication femininity calm elegance,Beauty spa fashion interior,Industrial aggressive bold
|
|
52
|
+
51,Charcoal Minimal,Sophisticated,"sophisticated, modern, bold, minimal",#36454F,#2F4F4F,#696969,#F8F8F8,#1A1A1A,Sophistication minimalism boldness,Luxury tech fashion architecture,Children playful warm
|
|
53
|
+
52,Honey Gold,Warm,"warm, luxurious, natural, inviting",#EB9605,#DAA520,#FFD700,#FFFEF0,#5C4033,Warmth luxury nature invitation,Food luxury organic hospitality,Cold tech clinical
|
|
54
|
+
53,Berry Fresh,Vibrant,"vibrant, fresh, energetic, youthful",#8E4585,#C71585,#DA70D6,#FFF0F5,#4A1040,Vibrancy freshness energy youth,Beauty food lifestyle entertainment,Corporate serious traditional
|
|
55
|
+
54,Ocean Teal,Calming,"calming, trustworthy, fresh, professional",#008080,#20B2AA,#5F9EA0,#E0FFFF,#0F4C5C,Calmness trust freshness professionalism,Healthcare spa finance wellness,Warm food aggressive
|
|
56
|
+
55,Rust Vintage,Warm,"warm, authentic, vintage, earthy",#B7410E,#CD5C5C,#E97451,#FFF8DC,#3C1414,Warmth authenticity vintage earthiness,Craft vintage food artisan,Modern tech cold
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
No,Industry,Keywords,Recommended Styles,Primary Colors,Typography,Common Symbols,Mood,Best Practices,Avoid
|
|
2
|
+
1,Technology,tech startup saas software app,Minimalist Abstract Mark Gradient Geometric,#6366F1 #0EA5E9 #10B981,Modern sans-serif geometric,Circuit nodes data infinity loop,Innovative forward-thinking modern,Clean lines scalable simple shapes,Overly complex clip art dated fonts
|
|
3
|
+
2,Healthcare,medical hospital clinic health wellness,Corporate Professional Minimal Line Art,#0077B6 #00A896 #059669,Clean professional sans-serif,Cross heart pulse human figure caduceus,Trustworthy caring professional,Simple recognizable calming colors,Red (blood) overly clinical aggressive
|
|
4
|
+
3,Finance,bank investment fintech insurance,Corporate Emblem Lettermark Wordmark,#003366 #1E3A8A #0F766E,Traditional serif or modern sans,Shield graph growth arrow pillars,Stable trustworthy established,Conservative colors timeless design,Trendy effects casual playful
|
|
5
|
+
4,Legal,law firm attorney legal services,Wordmark Emblem Crest Lettermark,#0F172A #1E3A8A #713F12,Serif traditional professional,Scales pillar gavel shield book,Authoritative trustworthy serious,Traditional balanced symmetrical,Playful colors casual fonts
|
|
6
|
+
5,Real Estate,property homes housing agency,Combination Mark Wordmark Abstract,#0F766E #0369A1 #334155,Clean professional sans-serif,House roof key door building,Professional trustworthy growth,Simple memorable scalable,Overly detailed houses trendy
|
|
7
|
+
6,Food Restaurant,cafe restaurant bakery food service,Vintage Badge Mascot Combination,#DC2626 #F97316 #CA8A04,Friendly script or bold sans,Utensils chef hat food items,Appetizing warm inviting,Warm colors clear readable,Cold colors overly complex
|
|
8
|
+
7,Fashion,clothing apparel luxury brand,Wordmark Luxury Monogram Line Art,#000000 #FFFFFF #D4AF37,Elegant serif or thin sans,Abstract marks letters,Sophisticated elegant modern,Minimal timeless refined,Trendy effects dated fonts
|
|
9
|
+
8,Beauty Cosmetics,skincare makeup salon spa,Script Wordmark Feminine Organic,#F472B6 #FDA4AF #D4AF37,Elegant script or thin sans,Face lips flower leaf,Elegant feminine luxurious,Soft colors elegant simple,Harsh colors masculine style
|
|
10
|
+
9,Education,school university learning edtech,Wordmark Emblem Combination Mark,#4F46E5 #7C3AED #059669,Clear readable professional,Book cap torch owl shield,Trustworthy growth knowledge,Clear readable balanced,Overly playful unprofessional
|
|
11
|
+
10,Sports Fitness,gym athletic sports team fitness,Dynamic Mark Bold Abstract Emblem,#DC2626 #F97316 #000000,Bold condensed strong sans,Figure motion lines dumbbell,Energetic powerful dynamic,Bold dynamic movement implied,Weak passive overly complex
|
|
12
|
+
11,Entertainment,music gaming events media,Abstract Bold Neon Wordmark,#7C3AED #EC4899 #F59E0B,Bold display experimental,Sound waves stars abstract,Exciting dynamic creative,Vibrant unique memorable,Conservative boring static
|
|
13
|
+
12,Automotive,car dealership repair transport,Abstract Emblem Dynamic Mark,#DC2626 #3B82F6 #000000,Bold modern sans-serif,Speed lines wheel car silhouette,Powerful reliable dynamic,Strong clean scalable,Weak delicate complex
|
|
14
|
+
13,Construction,building contractor architecture,Bold Emblem Wordmark,#F97316 #CA8A04 #334155,Strong bold sans-serif,Building gear hammer tools,Strong reliable professional,Bold simple recognizable,Delicate complex trendy
|
|
15
|
+
14,Agriculture,farm organic produce natural,Organic Hand-Drawn Vintage Badge,#228B22 #8B4513 #DEB887,Organic friendly readable,Leaf plant sun tractor,Natural authentic sustainable,Earth tones organic shapes,Industrial cold synthetic
|
|
16
|
+
15,Travel Tourism,hotel airline vacation agency,Wordmark Abstract Combination,#0EA5E9 #F97316 #10B981,Clean modern friendly,Globe plane compass location,Exciting trustworthy adventurous,Vibrant clear memorable,Overly complex small details
|
|
17
|
+
16,Pet Care,veterinary pet shop grooming,Mascot Playful Combination,#F97316 #4ADE80 #8B5CF6,Friendly rounded sans-serif,Paw print animal silhouette heart,Friendly caring playful,Warm colors friendly shapes,Cold clinical aggressive
|
|
18
|
+
17,Non-Profit,charity organization foundation,Wordmark Combination Emblem,#0891B2 #10B981 #F97316,Clear readable warm,Heart hands globe people,Trustworthy caring hopeful,Clear message warm colors,Corporate cold complex
|
|
19
|
+
18,Gaming,esports video games streaming,Bold Neon Abstract Mascot Modern,#7C3AED #EC4899 #06B6D4,Bold display futuristic,Controller joystick abstract shapes,Exciting dynamic immersive,Vibrant unique scalable,Conservative dated boring
|
|
20
|
+
19,Photography,studio photographer creative,Wordmark Minimal Line Art,#000000 #FFFFFF #D4AF37,Clean elegant sans or serif,Camera aperture lens frame,Creative professional artistic,Minimal elegant timeless,Clipart trendy effects
|
|
21
|
+
20,Consulting,business strategy management,Wordmark Lettermark Corporate,#0F172A #3B82F6 #10B981,Professional clean sans,Abstract marks arrows charts,Professional trustworthy expert,Clean simple professional,Playful casual complex
|
|
22
|
+
21,E-commerce,online shop marketplace retail,Modern Abstract Wordmark,#6366F1 #F97316 #10B981,Modern friendly sans-serif,Cart bag arrow abstract,Modern trustworthy easy,Simple memorable scalable,Complex dated traditional
|
|
23
|
+
22,Crypto Web3,blockchain defi nft,Gradient Abstract Geometric,#8B5CF6 #06B6D4 #F97316,Modern geometric futuristic,Hexagon chain node abstract,Innovative futuristic secure,Modern unique memorable,Traditional dated conservative
|
|
24
|
+
23,Wedding Events,planner venue coordinator,Script Elegant Combination,#D4AF37 #F472B6 #FFFFFF,Elegant script serif,Rings heart flowers,Romantic elegant memorable,Soft elegant refined,Bold harsh industrial
|
|
25
|
+
24,Coffee,cafe roaster shop,Vintage Badge Wordmark Hand-Drawn,#8B4513 #2F4F4F #DEB887,Script or vintage serif,Cup beans steam circle badge,Warm artisan authentic,Warm tones heritage feel,Cold clinical modern
|
|
26
|
+
25,Brewery,craft beer pub taproom,Vintage Badge Emblem Hand-Drawn,#8B4513 #CA8A04 #2F4F4F,Bold vintage slab serif,Hops barrel mug wheat badge,Authentic craft heritage,Vintage feel craft aesthetic,Corporate clean modern
|
|
27
|
+
26,Insurance,insurance protection coverage policy,Corporate Emblem Shield Abstract,#003366 #0077B6 #10B981,Professional clean sans-serif,Shield umbrella hands family house,Trustworthy protective secure,Blue tones stability protection symbols,Playful trendy aggressive red
|
|
28
|
+
27,Logistics,shipping transportation freight delivery,Dynamic Abstract Wordmark Bold,#0369A1 #F97316 #1E3A8A,Bold modern sans-serif,Arrow globe truck plane box,Efficient reliable global,Motion arrows connection symbols,Static delicate complex
|
|
29
|
+
28,Dental,dentist clinic oral health teeth,Minimal Line Art Professional,#0891B2 #10B981 #0077B6,Clean modern sans-serif,Tooth smile cross sparkle,Clean trustworthy caring,Blue teal simple shapes,Red harsh clinical
|
|
30
|
+
29,Cleaning Service,maid housekeeping janitorial residential,Playful Combination Badge Mascot,#0EA5E9 #10B981 #F472B6,Friendly rounded sans-serif,Broom mop sparkle house spray,Fresh clean friendly trustworthy,Bright clean colors sparkle elements,Dark muddy harsh
|
|
31
|
+
30,Security,guard protection surveillance alarm,Bold Emblem Shield Corporate,#0F172A #1E3A8A #10B981,Strong bold sans-serif,Shield lock eagle key badge,Strong protective trustworthy,Dark blues greens shields eagles,Playful soft delicate
|
|
32
|
+
31,Energy Renewable,solar power wind green sustainable,Modern Abstract Gradient Organic,#22C55E #F97316 #0EA5E9,Clean modern sans-serif,Sun leaf wind turbine lightning,Sustainable innovative clean,Green orange nature elements,Dark industrial polluting
|
|
33
|
+
32,Pharmacy,drugstore medical prescription health,Professional Minimal Cross Abstract,#10B981 #0077B6 #059669,Clean professional sans-serif,Cross pill capsule heart mortar,Trustworthy caring health,Green blue teal cross symbols,Red aggressive harsh
|
|
34
|
+
33,Childcare,daycare nursery preschool kids,Playful Colorful Mascot Combination,#F472B6 #FBBF24 #4ADE80,Rounded friendly playful,Children tree rainbow hands sun,Warm nurturing playful safe,Bright primary colors friendly shapes,Dark corporate serious
|
|
35
|
+
34,Aerospace Aviation,airline airport flight aircraft,Modern Abstract Dynamic Emblem,#1E3A8A #0EA5E9 #FFFFFF,Clean modern geometric sans,Plane wing arrow globe bird,Innovative precise reliable,Blue white clean dynamic shapes,Cluttered heavy grounded
|
|
36
|
+
35,Jewelry,jeweler gemstone diamond luxury,Elegant Luxury Monogram Line Art,#D4AF37 #8B5CF6 #F472B6,Elegant serif thin sans,Diamond ring gem crystal hand,Elegant luxurious precious,Gold purple elegant line art,Cheap bold industrial
|
|
37
|
+
36,Marine Maritime,ocean shipping nautical boat,Vintage Emblem Badge Bold,#0C4A6E #0891B2 #FFFFFF,Bold serif or strong sans,Anchor ship wheel wave compass,Strong reliable nautical,Navy blue teal white anchors,Landlocked desert dry
|
|
38
|
+
37,Accounting,bookkeeping CPA tax financial,Corporate Wordmark Lettermark Minimal,#1E3A8A #10B981 #334155,Professional clean sans-serif,Chart graph calculator checkmark,Professional trustworthy precise,Blue green conservative charts,Playful creative chaotic
|
|
39
|
+
38,Music Recording,studio artist label sound,Bold Abstract Neon Dynamic,#7C3AED #EC4899 #F59E0B,Bold display creative,Sound wave note microphone vinyl,Creative energetic expressive,Vibrant unique creative shapes,Conservative corporate bland
|
|
40
|
+
39,Architecture,design firm building interior,Minimal Geometric Line Art Abstract,#0F172A #6366F1 #D4AF37,Clean geometric modern sans,Building structure line blueprint,Sophisticated precise creative,Clean lines geometric shapes,Cluttered ornate traditional
|
|
41
|
+
40,Hotel Hospitality,resort lodge accommodation lodging,Elegant Wordmark Emblem Combination,#D4AF37 #0F766E #1E3A8A,Elegant serif or modern sans,Bed key building star crown,Welcoming luxurious comfortable,Elegant warm inviting colors,Cold industrial unwelcoming
|
|
42
|
+
41,Telecommunications,network mobile phone internet,Modern Abstract Gradient Tech,#6366F1 #0EA5E9 #10B981,Modern geometric sans-serif,Signal wave globe connection node,Connected innovative reliable,Blue gradients tech patterns,Dated heavy disconnected
|
|
43
|
+
42,Biotechnology,biotech research lab science,Modern Abstract Minimal Gradient,#10B981 #6366F1 #0891B2,Clean modern scientific sans,DNA helix cell molecule leaf,Innovative precise scientific,Green blue scientific clean,Industrial polluting harsh
|
|
44
|
+
43,Cybersecurity,infosec data protection digital,Modern Abstract Shield Tech,#0F172A #6366F1 #10B981,Modern technical sans-serif,Shield lock key binary code,Secure trustworthy technical,Dark blues greens tech elements,Weak exposed vulnerable
|
|
45
|
+
44,Interior Design,decorator home staging space,Elegant Minimal Line Art Script,#D4AF37 #8B5CF6 #F472B6,Elegant serif or thin script,Chair lamp house frame,Sophisticated creative stylish,Elegant refined neutral tones,Cluttered cheap industrial
|
|
46
|
+
45,Laundry,dry cleaning garment care wash,Friendly Combination Badge Playful,#0EA5E9 #10B981 #F472B6,Friendly rounded sans-serif,Shirt hanger water droplet bubble,Clean fresh convenient,Blue green fresh clean,Dirty muddy harsh
|
|
47
|
+
46,Printing,print shop graphics copy,Bold Combination Abstract Modern,#DC2626 #0EA5E9 #F97316,Bold modern sans-serif,Printer paper CMYK drop,Creative professional reliable,Bold CMYK colors print elements,Dull monochrome static
|
|
48
|
+
47,Florist,flower shop botanical garden,Organic Script Elegant Hand-Drawn,#F472B6 #10B981 #F97316,Elegant script or organic,Flower leaf petal bouquet,Beautiful natural romantic,Soft natural floral colors,Industrial harsh synthetic
|
|
49
|
+
48,Bakery,pastry bread artisan sweets,Vintage Hand-Drawn Badge Script,#8B4513 #F97316 #DEB887,Friendly script or vintage,Wheat bread rolling pin cupcake,Warm artisan homemade,Warm brown cream gold,Cold clinical industrial
|
|
50
|
+
49,Landscaping,garden lawn outdoor yard,Organic Bold Combination Badge,#22C55E #8B4513 #0EA5E9,Strong friendly sans-serif,Tree leaf lawn mower sun,Natural professional reliable,Green earth tones natural,Industrial urban concrete
|
|
51
|
+
50,Plumbing,pipe repair water fixture,Bold Badge Combination Emblem,#0EA5E9 #F97316 #334155,Strong bold sans-serif,Pipe wrench water drop faucet,Reliable professional skilled,Blue orange professional,Weak delicate dirty
|
|
52
|
+
51,Electrical,electrician power wiring contractor,Bold Dynamic Badge Combination,#F97316 #FBBF24 #334155,Strong bold sans-serif,Lightning bolt plug outlet wire,Reliable skilled powerful,Orange yellow electric symbols,Weak dim powerless
|
|
53
|
+
52,HVAC,heating cooling ventilation air,Bold Corporate Badge Combination,#0EA5E9 #DC2626 #334155,Strong professional sans-serif,Flame snowflake fan thermometer,Reliable comfortable professional,Blue red temperature symbols,Weak uncomfortable extreme
|
|
54
|
+
53,Pest Control,exterminator bug removal service,Bold Badge Combination Mascot,#22C55E #DC2626 #334155,Strong bold sans-serif,Bug shield spray target,Effective reliable protective,Green red action symbols,Weak ineffective infested
|
|
55
|
+
54,Moving Relocation,movers packing storage transport,Bold Dynamic Combination Badge,#F97316 #0EA5E9 #334155,Strong friendly sans-serif,Box truck house arrow,Reliable efficient careful,Orange blue movement symbols,Fragile broken scattered
|
|
56
|
+
55,Spa Wellness,massage retreat relaxation therapy,Elegant Organic Script Minimal,#0891B2 #10B981 #F472B6,Elegant thin script or sans,Lotus water drop stone bamboo,Calm relaxing rejuvenating,Soft calming natural colors,Harsh loud aggressive
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
No,Style Name,Category,Keywords,Primary Colors,Secondary Colors,Typography,Effects,Best For,Avoid For,Complexity,Era
|
|
2
|
+
1,Minimalist,General,"clean, simple, essential, whitespace, geometric, modern",#000000 #FFFFFF #F5F5F5,Single accent only,Sans-serif thin weight,"None, sharp edges, high contrast",Tech startups SaaS apps professional services,Playful brands children entertainment,Low,2010s-Present
|
|
3
|
+
2,Wordmark,Typography,"logotype, text-only, custom lettering, brand name",Brand-specific,Monochromatic,Custom modified typeface,"Kerning adjustments, ligatures",Established brands name recognition,Complex names visual-heavy industries,Low,Classic
|
|
4
|
+
3,Lettermark,Typography,"monogram, initials, abbreviated, compact",Brand-specific usually 2 colors,Minimal accent,Bold geometric sans-serif,"Interlocking letters, negative space",Long company names professional firms,Consumer brands needing recognition,Medium,Classic
|
|
5
|
+
4,Pictorial Mark,Symbol,"icon, image, symbol, standalone graphic",Brand-specific,Supporting colors,Paired with wordmark,"Clean lines, scalable shapes",Recognizable brands global companies,Startups unknown brands,Medium,Classic
|
|
6
|
+
5,Abstract Mark,Symbol,"geometric, non-representational, unique shape",Bold vibrant colors,Gradient or flat,Modern sans-serif pairing,"Gradients, 3D effects, flat design",Tech companies differentiating brands,Traditional industries,Medium,Modern
|
|
7
|
+
6,Mascot,Illustrated,"character, cartoon, friendly, approachable",Warm vibrant palette,Multiple supporting colors,Rounded friendly typeface,"Illustrated, expressions, poses",Food brands sports teams children products,Luxury finance professional services,High,Various
|
|
8
|
+
7,Emblem,Badge,"seal, crest, enclosed, official",#1E3A8A #FFD700 #000000,Metallic accents,Serif or gothic typeface,"Banners, shields, circular frame",Universities government traditional brands,Modern tech startups,High,Classic
|
|
9
|
+
8,Combination Mark,Hybrid,"icon + text, versatile, complete",Brand-specific,Coordinated palette,Balanced with icon,"Lockup variations, responsive",New brands versatile applications,Simple recognition needs,Medium,Various
|
|
10
|
+
9,Vintage/Retro,Aesthetic,"nostalgic, heritage, classic, established",#8B4513 #F5DEB3 #2F4F4F,Muted earth tones,Serif script or slab serif,"Distressed, worn, textured",Craft brands heritage products artisan goods,Modern tech forward brands,Medium,1920s-1970s
|
|
11
|
+
10,Art Deco,Aesthetic,"geometric, elegant, 1920s, glamorous",#FFD700 #000000 #1C1C1C,Metallic gold silver,Geometric display typeface,"Sharp angles, symmetry, luxury feel",Luxury hotels fashion high-end products,Budget casual brands,High,1920s-1930s
|
|
12
|
+
11,Hand-Drawn,Illustrated,"organic, authentic, imperfect, artisan",Earth tones warm colors,Natural palette,Script or hand-lettered,"Sketched, brush strokes, uneven lines",Artisan products bakeries creative brands,Corporate tech professional,Medium,Timeless
|
|
13
|
+
12,Geometric,Modern,"shapes, mathematical, precise, structured",Bold primary colors,Contrasting accent,Geometric sans-serif,"Clean angles, perfect shapes, symmetry",Tech architecture modern brands,Organic natural brands,Low,Modern
|
|
14
|
+
13,Gradient,Modern,"color transition, vibrant, dynamic, dimensional",Multi-color spectrum,Smooth transitions,Modern sans-serif,"Color flow, blur effects, 3D depth",Tech apps social media modern brands,Traditional conservative industries,Medium,2015-Present
|
|
15
|
+
14,Flat Design,Modern,"2D, solid colors, no shadows, minimal",Bright solid colors,Limited palette 3-4 max,Clean sans-serif,"No gradients, no shadows, simple shapes",Apps websites digital products,Luxury traditional premium,Low,2010s-Present
|
|
16
|
+
15,3D/Isometric,Modern,"dimensional, perspective, layered, technical",Cool tech colors,Highlight shadows,Modern geometric,"Depth, shadows, highlights, perspective",Tech gaming architecture firms,Simple classic brands,High,2018-Present
|
|
17
|
+
16,Negative Space,Clever,"hidden element, dual meaning, optical illusion",Usually 2 colors max,High contrast pairs,Clean readable font,"Clever cutouts, figure-ground reversal",Creative agencies clever brands,Straightforward industries,Medium,Timeless
|
|
18
|
+
17,Line Art,Minimal,"outline, single weight, continuous, elegant",#000000 or single color,Monochromatic,Thin weight sans-serif,"Stroke only, no fills, continuous lines",Fashion beauty boutique brands,Bold energetic brands,Low,Modern
|
|
19
|
+
18,Neon/Glow,Aesthetic,"vibrant, electric, nightlife, digital",#FF00FF #00FFFF #39FF14,Dark backgrounds,Bold display typeface,"Glow effect, light emission, bright",Entertainment nightlife gaming,Corporate healthcare traditional,Medium,1980s/Modern
|
|
20
|
+
19,Brutalist,Bold,"raw, stark, bold, anti-design",#FF0000 #0000FF #FFFF00 #000000,Primary colors only,Heavy bold sans-serif,"No effects, raw, bold blocks",Art creative counter-culture tech blogs,Conservative corporate healthcare,Low,1950s/2020s Revival
|
|
21
|
+
20,Luxury/Premium,Aesthetic,"elegant, sophisticated, high-end, refined",#000000 #FFFFFF #FFD700,Gold silver metallics,Elegant serif thin sans,"Foil, emboss, minimal, premium feel",Fashion jewelry luxury real estate,Budget mass-market casual,Medium,Timeless
|
|
22
|
+
21,Playful/Fun,Aesthetic,"colorful, whimsical, energetic, youthful",Rainbow bright palette,Multi-color variety,Rounded bubbly typeface,"Bouncy, irregular, decorative elements",Children brands toys entertainment,Serious finance legal medical,Medium,Various
|
|
23
|
+
22,Corporate/Professional,Business,"trustworthy, stable, serious, established",#003366 #666666 #FFFFFF,Conservative blues grays,Clean professional sans,"Subtle, refined, balanced",Financial legal consulting corporate,Creative entertainment youth,Low,Classic
|
|
24
|
+
23,Tech/Digital,Industry,"modern, innovative, forward, digital",#0080FF #00D4FF #6366F1,Gradient tech colors,Geometric modern sans,"Circuit, pixel, data visualization",Technology startups software apps,Traditional handmade artisan,Medium,Modern
|
|
25
|
+
24,Organic/Natural,Aesthetic,"flowing, nature, sustainable, eco",#228B22 #8B4513 #87CEEB,Earth tones greens,Organic flowing typeface,"Leaf, water, natural textures",Eco brands wellness organic food,Industrial tech urban,Medium,Timeless
|
|
26
|
+
25,Swiss/International,Design,"grid-based, rational, clean, functional",#000000 #FFFFFF neutral,Minimal color use,Helvetica style sans-serif,"Grid alignment, mathematical spacing",Corporate design professional,Decorative playful brands,Low,1950s-Present
|
|
27
|
+
26,Bauhaus,Design,"geometric, functional, primary colors, modernist",#FF0000 #FFFF00 #0000FF #000000,Primary colors only,Geometric sans-serif,"Circles squares triangles, functional",Architecture design schools modern brands,Traditional ornate decorative,Medium,1920s-1930s
|
|
28
|
+
27,Grunge,Aesthetic,"distressed, rough, textured, alternative",Dark muted colors,Earth tones blacks,Distressed or stencil type,"Scratched, worn, dirty textures",Music alternative fashion street brands,Luxury corporate clean,Medium,1990s
|
|
29
|
+
28,Watercolor,Artistic,"soft, artistic, fluid, organic",Soft pastel washes,Blended transitions,Script or delicate serif,"Paint bleeding, soft edges, artistic",Art galleries wedding florists beauty,Tech corporate industrial,High,Artistic
|
|
30
|
+
29,Monogram Luxury,Typography,"intertwined initials, fashion, heritage",#000000 #FFD700 #FFFFFF,Gold black combinations,Custom serif letterforms,"Interlocking, overlapping, refined",Fashion houses luxury brands hotels,Casual budget consumer,Medium,Classic
|
|
31
|
+
30,Vintage Badge,Retro,"circular, heritage, authentic, craft",#8B4513 #2F4F4F #D4AF37,Muted vintage palette,Serif or slab serif,"Banners, stars, established dates",Breweries coffee shops craft brands,Modern minimalist tech,High,1900s-1950s
|
|
32
|
+
31,Responsive/Adaptive,Modern,"scalable, flexible, multi-format",Brand-specific,Consistent across sizes,Legible at all sizes,"Multiple lockups, favicon version",Digital-first brands multi-platform,Print-only traditional,Medium,2015-Present
|
|
33
|
+
32,Motion-Ready,Digital,"animated, dynamic, kinetic, digital",Vibrant animated-friendly,Colors that transition well,Sans-serif legible in motion,"Designed for animation, morphing shapes",Digital brands apps social media,Static print-only brands,High,2018-Present
|
|
34
|
+
33,Duotone,Modern,"two-color, high contrast, bold, graphic",Two contrasting colors,No additional colors,Bold sans-serif,"Two-color overlay, high contrast",Graphic design music modern brands,Multi-color needs complex imagery,Low,2016-Present
|
|
35
|
+
34,Split/Fragmented,Experimental,"broken, deconstructed, modern, artistic",Bold contrasting,Highlight fragments,Modern experimental type,"Sliced, separated, glitch-like",Creative agencies art design studios,Conservative traditional corporate,High,2018-Present
|
|
36
|
+
35,Outline/Stroke,Minimal,"hollow, transparent, modern, light",Single color or gradient,Background contrast,Matching weight typeface,"Stroke only, no fill, see-through",Fashion tech modern minimal brands,Bold impactful needs,Low,Modern
|
|
37
|
+
36,Stamp/Seal,Vintage,"official, authentic, approved, certified",#8B0000 #000080 #006400,Ink-like colors,Bold condensed typeface,"Circular, aged, ink texture",Artisan coffee postal craft brands,Modern digital tech,Medium,Classic
|
|
38
|
+
37,Calligraphic,Typography,"flowing, elegant, hand-written, artistic",#000000 gold metallics,Minimal accent colors,Custom calligraphy,"Flourishes, swashes, elegant strokes",Wedding luxury fashion beauty,Tech corporate industrial,High,Timeless
|
|
39
|
+
38,Pixel Art,Digital,"8-bit, retro gaming, nostalgic, digital",Bright limited palette,Classic game colors,Pixel or blocky typeface,"Pixelated, grid-based, retro game feel",Gaming retro apps indie games,Luxury professional corporate,Medium,1980s Revival
|
|
40
|
+
39,Symmetrical,Balanced,"mirror, balanced, harmonious, stable",Balanced color scheme,Matching halves,Centered balanced type,"Perfect mirror, radial symmetry",Corporate wellness balanced brands,Dynamic energetic brands,Low,Timeless
|
|
41
|
+
40,Asymmetrical,Dynamic,"unbalanced, modern, dynamic, interesting",Bold accent placement,Contrasting weights,Off-center experimental,"Intentional imbalance, visual tension",Creative modern art fashion,Traditional stable corporate,Medium,Modern
|
|
42
|
+
41,Mascot Modern,Character,"simplified mascot, flat character, friendly",Bright character colors,Supporting brand colors,Rounded friendly sans,"Flat design mascot, simple shapes",Tech apps startups modern food brands,Serious luxury traditional,Medium,2015-Present
|
|
43
|
+
42,Monoline,Minimal,"single line weight, consistent, clean",Single color typically,Monochromatic,Matching weight typeface,"Uniform stroke, no weight variation",Coffee shops boutiques craft brands,Bold impactful industrial,Low,Modern
|
|
44
|
+
43,Letterform,Typography,"single letter, initial, bold statement",Brand primary color,Background contrast,Custom letter design,"One letter, modified, distinctive",Personal brands design studios agencies,Multi-initial brands corporations,Medium,Classic
|
|
45
|
+
44,Wordmark Script,Typography,"handwritten, signature, personal, elegant",#000000 or gold,Minimal supporting,Custom script typeface,"Flowing, connected, signature-like",Fashion designers personal brands,Corporate tech industrial,Medium,Timeless
|
|
46
|
+
45,Crest/Heraldic,Traditional,"coat of arms, royal, established, heritage",#1E3A8A #8B0000 #FFD700,Traditional regal colors,Serif blackletter,"Shield, crown, banners, symbols",Universities sports teams luxury brands,Modern casual startups,High,Classic
|
|
47
|
+
46,Circular,Shape,"round, infinite, complete, unified",Enclosed palette,Internal colors,Curved or circular type,"Full circle, badge-like, contained",Global brands apps communities,Angular sharp brands,Medium,Timeless
|
|
48
|
+
47,Hexagonal,Shape,"modern, tech, honeycomb, structured",Tech-forward colors,Geometric accent,Modern geometric sans,"Six-sided, tessellating, tech feel",Tech blockchain chemical science,Traditional organic natural,Medium,Modern
|
|
49
|
+
48,Dynamic Mark,Motion,"movement, speed, progress, forward",Energetic warm colors,Motion blur colors,Italic or forward-leaning,"Motion lines, implied movement",Sports logistics transportation,Static calm wellness,Medium,Modern
|
|
50
|
+
49,Eco/Sustainable,Values,"green, sustainable, recycling, earth-friendly",#228B22 #8FBC8F #2E8B57,Natural greens browns,Organic rounded typeface,"Leaf, recycle, earth, natural elements",Eco brands organic sustainable business,Luxury industrial chemical,Medium,2000s-Present
|
|
51
|
+
50,Healthcare/Medical,Industry,"trust, care, health, professional",#0077B6 #00A896 #FFFFFF,Calming blues greens,Clean professional sans,"Cross, heart, human figures, care",Hospitals clinics health wellness,Entertainment gaming fashion,Medium,Classic
|
|
52
|
+
51,Legal/Financial,Industry,"trust, stability, establishment, serious",#003366 #1E3A8A #4A5568,Navy blue conservative,Traditional serif,"Scales, pillars, shields, professional",Law firms banks financial services,Playful creative casual,Low,Classic
|
|
53
|
+
52,Food/Restaurant,Industry,"appetizing, warm, inviting, delicious",#DC2626 #F97316 #CA8A04,Warm appetizing colors,Friendly readable type,"Utensils, chef hat, food imagery",Restaurants cafes food delivery,Tech healthcare professional,Medium,Various
|
|
54
|
+
53,Real Estate,Industry,"home, trust, growth, property",#0F766E #0369A1 #000000,Blues greens professional,Clean professional sans,"House, roof, key, door imagery",Property agencies home services,Entertainment gaming tech,Medium,Classic
|
|
55
|
+
54,Education,Industry,"knowledge, growth, trust, achievement",#4F46E5 #7C3AED #059669,Blues purples greens,Clear readable typeface,"Book, cap, torch, learning symbols",Schools universities edtech,Entertainment luxury consumer,Medium,Classic
|
|
56
|
+
55,Music/Entertainment,Industry,"dynamic, creative, expressive, bold",#7C3AED #EC4899 #F59E0B,Vibrant expressive colors,Bold display typeface,"Sound waves, notes, dynamic shapes",Labels studios streaming venues,Corporate healthcare financial,Medium,Various
|
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
# Banner Sizes & Art Direction Styles Reference
|
|
2
|
+
|
|
3
|
+
## Complete Banner Sizes
|
|
4
|
+
|
|
5
|
+
### Social Media
|
|
6
|
+
| Platform | Type | Size (px) | Aspect Ratio |
|
|
7
|
+
|----------|------|-----------|--------------|
|
|
8
|
+
| Facebook | Cover (desktop) | 820 × 312 | ~2.6:1 |
|
|
9
|
+
| Facebook | Cover (mobile) | 640 × 360 | ~16:9 |
|
|
10
|
+
| Facebook | Event cover | 1920 × 1080 | 16:9 |
|
|
11
|
+
| Twitter/X | Header | 1500 × 500 | 3:1 |
|
|
12
|
+
| Twitter/X | Ad banner | 800 × 418 | ~2:1 |
|
|
13
|
+
| LinkedIn | Company cover | 1128 × 191 | ~6:1 |
|
|
14
|
+
| LinkedIn | Personal banner | 1584 × 396 | 4:1 |
|
|
15
|
+
| YouTube | Channel art | 2560 × 1440 | 16:9 |
|
|
16
|
+
| YouTube | Safe area | 1546 × 423 | ~3.7:1 |
|
|
17
|
+
| Instagram | Stories | 1080 × 1920 | 9:16 |
|
|
18
|
+
| Instagram | Post | 1080 × 1080 | 1:1 |
|
|
19
|
+
| Pinterest | Pin | 1000 × 1500 | 2:3 |
|
|
20
|
+
|
|
21
|
+
### Web / Display Ads (Google Display Network)
|
|
22
|
+
| Name | Size (px) | Notes |
|
|
23
|
+
|------|-----------|-------|
|
|
24
|
+
| Medium Rectangle | 300 × 250 | Highest CTR |
|
|
25
|
+
| Leaderboard | 728 × 90 | Top of page |
|
|
26
|
+
| Wide Skyscraper | 160 × 600 | Sidebar |
|
|
27
|
+
| Half Page | 300 × 600 | Premium |
|
|
28
|
+
| Large Rectangle | 336 × 280 | High performer |
|
|
29
|
+
| Mobile Banner | 320 × 50 | Mobile default |
|
|
30
|
+
| Large Mobile | 320 × 100 | Mobile hero |
|
|
31
|
+
| Billboard | 970 × 250 | Desktop hero |
|
|
32
|
+
|
|
33
|
+
### Website
|
|
34
|
+
| Type | Size (px) |
|
|
35
|
+
|------|-----------|
|
|
36
|
+
| Full-width hero | 1920 × 600–1080 |
|
|
37
|
+
| Section banner | 1200 × 400 |
|
|
38
|
+
| Blog header | 1200 × 628 |
|
|
39
|
+
| Email header | 600 × 200 |
|
|
40
|
+
|
|
41
|
+
### Print
|
|
42
|
+
| Type | Size |
|
|
43
|
+
|------|------|
|
|
44
|
+
| Roll-up | 850mm × 2000mm |
|
|
45
|
+
| Step-and-repeat | 8ft × 8ft |
|
|
46
|
+
| Vinyl outdoor | 6ft × 3ft |
|
|
47
|
+
| Trade show | 33in × 78in |
|
|
48
|
+
|
|
49
|
+
## 22 Art Direction Styles
|
|
50
|
+
|
|
51
|
+
1. **Minimalist** — White space dominant, single focal element, 1-2 colors, clean sans-serif
|
|
52
|
+
2. **Bold Typography** — Type IS the design; oversized, expressive letterforms fill canvas
|
|
53
|
+
3. **Gradient / Color Wash** — Smooth transitions, mesh gradients, chromatic blends
|
|
54
|
+
4. **Photo-Based** — Full-bleed photography with text overlay; hero lifestyle imagery
|
|
55
|
+
5. **Illustrated / Hand-Drawn** — Custom illustrations, bespoke icons, artisan feel
|
|
56
|
+
6. **Geometric / Abstract** — Shapes, lines, grids as primary visual elements
|
|
57
|
+
7. **Retro / Vintage** — Distressed textures, muted palettes, serif type, halftone dots
|
|
58
|
+
8. **Glassmorphism** — Frosted glass panels, blur backdrop, subtle border glow
|
|
59
|
+
9. **3D / Sculptural** — Rendered objects, depth, shadows; product-centric
|
|
60
|
+
10. **Neon / Cyberpunk** — Dark backgrounds, glowing neon accents, high contrast
|
|
61
|
+
11. **Duotone** — Two-color photo treatment; bold brand color overlay on image
|
|
62
|
+
12. **Editorial / Magazine** — Grid-heavy layouts, pull quotes, journalistic composition
|
|
63
|
+
13. **Collage / Mixed Media** — Cut-paper textures, photo cutouts, layered elements
|
|
64
|
+
14. **Retro Futurism** — Space-age nostalgia, chrome, gradients, optimism
|
|
65
|
+
15. **Expressive / Anti-Design** — Chaotic layouts, mixed fonts, deliberate "wrong" composition
|
|
66
|
+
16. **Digi-Cute / Kawaii** — Rounded shapes, pastel gradients, pixel art, playful characters
|
|
67
|
+
17. **Tactile / Sensory** — Puffy/squishy textures, hyper-real materials, embossed feel
|
|
68
|
+
18. **Data / Infographic** — Stats front-and-center, charts, numbers as heroes
|
|
69
|
+
19. **Dark Mode / Moody** — Near-black backgrounds, rich jewel tones, high contrast
|
|
70
|
+
20. **Flat / Solid Color** — Single background color, clean icons, no gradients
|
|
71
|
+
21. **Nature / Organic** — Earthy tones, botanical motifs, sustainable brand feel
|
|
72
|
+
22. **Motion-Ready / Kinetic** — Designed for animation; layered elements, loopable
|
|
73
|
+
|
|
74
|
+
## Design Principles
|
|
75
|
+
|
|
76
|
+
### Visual Hierarchy (3-Zone Rule)
|
|
77
|
+
- **Top**: Logo or main value prop
|
|
78
|
+
- **Middle**: Supporting message + visuals
|
|
79
|
+
- **Bottom**: CTA (button/QR/URL)
|
|
80
|
+
|
|
81
|
+
### Safe Zones
|
|
82
|
+
- Critical content in central 70-80% of canvas
|
|
83
|
+
- Avoid text/CTA within 50-100px of edges
|
|
84
|
+
- YouTube: 1546 × 423px safe area inside 2560 × 1440
|
|
85
|
+
- Meta/Instagram: central 80% to avoid UI chrome
|
|
86
|
+
|
|
87
|
+
### CTA Rules
|
|
88
|
+
- One CTA per banner
|
|
89
|
+
- High contrast vs background
|
|
90
|
+
- Bottom-right placement (terminal area)
|
|
91
|
+
- Min 44px height for mobile tap targets
|
|
92
|
+
- Action verbs: "Get", "Start", "Download", "Claim"
|
|
93
|
+
|
|
94
|
+
### Typography
|
|
95
|
+
- Max 2 typefaces per banner
|
|
96
|
+
- Min 16px body, ≥32px headline (digital)
|
|
97
|
+
- Min 4.5:1 contrast ratio
|
|
98
|
+
- Max 7 words/line, 3 lines for ads
|
|
99
|
+
|
|
100
|
+
### Text-to-Image Ratio
|
|
101
|
+
- Ads: under 20% text (Meta penalizes)
|
|
102
|
+
- Social covers: 60/40 image-to-text
|
|
103
|
+
- Print: 70pt+ headlines for 3-5m viewing distance
|
|
104
|
+
|
|
105
|
+
### Print Specs
|
|
106
|
+
- 300 DPI minimum (150 DPI for large format)
|
|
107
|
+
- 3-5mm bleed all sides
|
|
108
|
+
- CMYK color mode
|
|
109
|
+
- 1pt per foot viewing distance rule
|
|
110
|
+
|
|
111
|
+
## Pinterest Research Queries
|
|
112
|
+
|
|
113
|
+
Use these search queries on Pinterest for art direction references:
|
|
114
|
+
- `[purpose] banner design [style]` (e.g., "social media banner minimalist")
|
|
115
|
+
- `[platform] cover design inspiration` (e.g., "youtube channel art design")
|
|
116
|
+
- `creative banner layout [industry]` (e.g., "creative banner layout tech startup")
|
|
117
|
+
- `[style] graphic design 2026` (e.g., "gradient graphic design 2026")
|
|
118
|
+
- `banner ad design [product type]` (e.g., "banner ad design saas")
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
# CIP Deliverable Guide
|
|
2
|
+
|
|
3
|
+
## Core Identity
|
|
4
|
+
|
|
5
|
+
### Primary Logo
|
|
6
|
+
- Vector format (SVG, AI, EPS)
|
|
7
|
+
- Clear space rules defined
|
|
8
|
+
- Scalable from favicon to billboard
|
|
9
|
+
|
|
10
|
+
### Logo Variations
|
|
11
|
+
- Horizontal, vertical, stacked
|
|
12
|
+
- Icon/symbol only
|
|
13
|
+
- Monochrome versions (black, white, reversed)
|
|
14
|
+
|
|
15
|
+
## Stationery Set
|
|
16
|
+
|
|
17
|
+
### Business Card
|
|
18
|
+
- Standard: 3.5x2 inches / 85x55mm
|
|
19
|
+
- Premium paper stock (300-400gsm)
|
|
20
|
+
- Finishes: matte, spot UV, foil, emboss
|
|
21
|
+
|
|
22
|
+
### Letterhead
|
|
23
|
+
- A4 or Letter size
|
|
24
|
+
- Header area for logo/contact
|
|
25
|
+
- Digital and print versions
|
|
26
|
+
|
|
27
|
+
### Envelope
|
|
28
|
+
- DL, C4, C5 sizes
|
|
29
|
+
- Logo on flap or front
|
|
30
|
+
- Return address styling
|
|
31
|
+
|
|
32
|
+
## Office Environment
|
|
33
|
+
|
|
34
|
+
### Reception Signage
|
|
35
|
+
- 3D dimensional letters
|
|
36
|
+
- Backlit LED options
|
|
37
|
+
- Materials: acrylic, metal, wood
|
|
38
|
+
|
|
39
|
+
### Wayfinding System
|
|
40
|
+
- Consistent icon system
|
|
41
|
+
- Clear hierarchy
|
|
42
|
+
- ADA compliance
|
|
43
|
+
|
|
44
|
+
### Wall Graphics
|
|
45
|
+
- Mission/values displays
|
|
46
|
+
- Large-scale murals
|
|
47
|
+
- Window frosting
|
|
48
|
+
|
|
49
|
+
## Apparel
|
|
50
|
+
|
|
51
|
+
### Polo Shirt
|
|
52
|
+
- Embroidery preferred
|
|
53
|
+
- Left chest placement
|
|
54
|
+
- Quality fabric (pique cotton)
|
|
55
|
+
|
|
56
|
+
### Uniforms
|
|
57
|
+
- Department color coding
|
|
58
|
+
- Name badge integration
|
|
59
|
+
- Safety requirements if applicable
|
|
60
|
+
|
|
61
|
+
## Vehicle Branding
|
|
62
|
+
|
|
63
|
+
### Car/Sedan
|
|
64
|
+
- Door panel branding
|
|
65
|
+
- Partial or full wrap
|
|
66
|
+
- Contact information visible
|
|
67
|
+
|
|
68
|
+
### Fleet Vehicles
|
|
69
|
+
- Consistent design across fleet
|
|
70
|
+
- High visibility contact details
|
|
71
|
+
- Professional installation
|
|
72
|
+
|
|
73
|
+
## Digital Assets
|
|
74
|
+
|
|
75
|
+
### Social Media
|
|
76
|
+
- Profile pictures (icon version)
|
|
77
|
+
- Cover images (platform-specific)
|
|
78
|
+
- Post templates
|
|
79
|
+
|
|
80
|
+
### Email Signature
|
|
81
|
+
- HTML responsive
|
|
82
|
+
- Max 600px width
|
|
83
|
+
- Essential contact only
|
|
84
|
+
|
|
85
|
+
## Events & Promotional
|
|
86
|
+
|
|
87
|
+
### Trade Show Booth
|
|
88
|
+
- Modular design
|
|
89
|
+
- Easy assembly
|
|
90
|
+
- Key messaging visible
|
|
91
|
+
|
|
92
|
+
### Promotional Items
|
|
93
|
+
- Quality over quantity
|
|
94
|
+
- Useful items preferred
|
|
95
|
+
- Brand colors prominent
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# CIP Design Reference
|
|
2
|
+
|
|
3
|
+
Corporate Identity Program design with 50+ deliverables, 20 styles, 20 industries. Generate mockups with Gemini Nano Banana (Flash/Pro).
|
|
4
|
+
|
|
5
|
+
## Scripts
|
|
6
|
+
|
|
7
|
+
| Script | Purpose |
|
|
8
|
+
|--------|---------|
|
|
9
|
+
| `scripts/cip/search.py` | Search deliverables, styles, industries; generate CIP briefs |
|
|
10
|
+
| `scripts/cip/generate.py` | Generate CIP mockups with Gemini (Flash/Pro) |
|
|
11
|
+
| `scripts/cip/render-html.py` | Render HTML presentation from CIP mockups |
|
|
12
|
+
| `scripts/cip/core.py` | BM25 search engine for CIP data |
|
|
13
|
+
|
|
14
|
+
## Commands
|
|
15
|
+
|
|
16
|
+
### CIP Brief (Start Here)
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "tech startup" --cip-brief -b "BrandName"
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
### Search Domains
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
# Deliverables
|
|
26
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "business card letterhead" --domain deliverable
|
|
27
|
+
|
|
28
|
+
# Design styles
|
|
29
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "luxury premium elegant" --domain style
|
|
30
|
+
|
|
31
|
+
# Industry guidelines
|
|
32
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "hospitality hotel" --domain industry
|
|
33
|
+
|
|
34
|
+
# Mockup contexts
|
|
35
|
+
python3 ~/.claude/skills/design/scripts/cip/search.py "office reception" --domain mockup
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
### Generate Mockups
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
# With logo (RECOMMENDED - uses image editing)
|
|
42
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo /path/to/logo.png --deliverable "business card" --industry "consulting"
|
|
43
|
+
|
|
44
|
+
# Full CIP set with logo
|
|
45
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo /path/to/logo.png --industry "consulting" --set
|
|
46
|
+
|
|
47
|
+
# Pro model for 4K text rendering
|
|
48
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TopGroup" --logo logo.png --deliverable "business card" --model pro
|
|
49
|
+
|
|
50
|
+
# Custom deliverables with aspect ratio
|
|
51
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "GreenLeaf" --logo logo.png --industry "organic food" --deliverables "letterhead,packaging,vehicle" --ratio 16:9
|
|
52
|
+
|
|
53
|
+
# Without logo (AI generates interpretation)
|
|
54
|
+
python3 ~/.claude/skills/design/scripts/cip/generate.py --brand "TechFlow" --deliverable "business card" --no-logo-prompt
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
### Render HTML Presentation
|
|
58
|
+
|
|
59
|
+
```bash
|
|
60
|
+
python3 ~/.claude/skills/design/scripts/cip/render-html.py --brand "TopGroup" --industry "consulting" --images /path/to/cip-output
|
|
61
|
+
python3 ~/.claude/skills/design/scripts/cip/render-html.py --brand "TopGroup" --industry "consulting" --images ./topgroup-cip --output presentation.html
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
## Models
|
|
65
|
+
|
|
66
|
+
- `flash` (default): `gemini-2.5-flash-image` - Fast, cost-effective
|
|
67
|
+
- `pro`: `gemini-3-pro-image-preview` - Quality, 4K text rendering
|
|
68
|
+
|
|
69
|
+
## Deliverable Categories
|
|
70
|
+
|
|
71
|
+
| Category | Items |
|
|
72
|
+
|----------|-------|
|
|
73
|
+
| Core Identity | Logo, Logo Variations |
|
|
74
|
+
| Stationery | Business Card, Letterhead, Envelope, Folder, Notebook, Pen |
|
|
75
|
+
| Security/Access | ID Badge, Lanyard, Access Card |
|
|
76
|
+
| Office Environment | Reception Signage, Wayfinding, Meeting Room Signs, Wall Graphics |
|
|
77
|
+
| Apparel | Polo Shirt, T-Shirt, Cap, Jacket, Apron |
|
|
78
|
+
| Promotional | Tote Bag, Gift Box, USB Drive, Water Bottle, Mug, Umbrella |
|
|
79
|
+
| Vehicle | Car Sedan, Van, Truck |
|
|
80
|
+
| Digital | Social Media, Email Signature, PowerPoint, Document Templates |
|
|
81
|
+
| Product | Packaging Box, Labels, Tags, Retail Display |
|
|
82
|
+
| Events | Trade Show Booth, Banner Stand, Table Cover, Backdrop |
|
|
83
|
+
|
|
84
|
+
## Design Styles
|
|
85
|
+
|
|
86
|
+
| Style | Colors | Best For |
|
|
87
|
+
|-------|--------|----------|
|
|
88
|
+
| Corporate Minimal | Navy, White, Blue | Finance, Legal, Consulting |
|
|
89
|
+
| Modern Tech | Purple, Cyan, Green | Tech, Startups, SaaS |
|
|
90
|
+
| Luxury Premium | Black, Gold, White | Fashion, Jewelry, Hotels |
|
|
91
|
+
| Warm Organic | Brown, Green, Cream | Food, Organic, Artisan |
|
|
92
|
+
| Bold Dynamic | Red, Orange, Black | Sports, Entertainment |
|
|
93
|
+
|
|
94
|
+
## HTML Presentation Features
|
|
95
|
+
|
|
96
|
+
- Hero section with brand name, industry, style, mood
|
|
97
|
+
- Deliverable cards with mockup images
|
|
98
|
+
- Descriptions: concept, purpose, specifications
|
|
99
|
+
- Responsive desktop/mobile, dark theme
|
|
100
|
+
- Images embedded as base64 (single-file portable)
|
|
101
|
+
|
|
102
|
+
## Workflow
|
|
103
|
+
|
|
104
|
+
1. Generate CIP brief → `scripts/cip/search.py --cip-brief`
|
|
105
|
+
2. Generate mockups with logo → `scripts/cip/generate.py --brand --logo --industry --set`
|
|
106
|
+
3. Render HTML presentation → `scripts/cip/render-html.py --brand --industry --images`
|
|
107
|
+
|
|
108
|
+
**Tip:** If no logo exists, use Logo Design (built-in) to generate one first.
|
|
109
|
+
|
|
110
|
+
## Detailed References
|
|
111
|
+
|
|
112
|
+
- `references/cip-deliverable-guide.md` - Deliverable specifications
|
|
113
|
+
- `references/cip-style-guide.md` - Design style descriptions
|
|
114
|
+
- `references/cip-prompt-engineering.md` - AI generation prompts
|
|
115
|
+
|
|
116
|
+
## Setup
|
|
117
|
+
|
|
118
|
+
```bash
|
|
119
|
+
export GEMINI_API_KEY="your-key"
|
|
120
|
+
pip install google-genai pillow
|
|
121
|
+
```
|