From c21966ff9a4094b92956201843998c72408be43a Mon Sep 17 00:00:00 2001 From: Karan Singh Date: Thu, 7 Aug 2025 02:01:56 +0530 Subject: [PATCH] Add new patterns: Intersecting Circles and Grid Spotlight --- src/data/patterns.ts | 58 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) diff --git a/src/data/patterns.ts b/src/data/patterns.ts index b1d9104..cbdb327 100644 --- a/src/data/patterns.ts +++ b/src/data/patterns.ts @@ -3255,4 +3255,62 @@ export const gridPatterns: Pattern[] = [ {/* Your Content/Components */} `, }, + { + "id": "intersecting-circles", + "name": "Intersecting Circles", + "category": "geometric", + "badge": "New", + "style": { + "backgroundColor": "#e0f2fe", + "backgroundImage": "radial-gradient(#0ea5e9 0.5px, transparent 0.5px), radial-gradient(#0ea5e9 0.5px, #e0f2fe 0.5px)", + "backgroundSize": "20px 20px", + "backgroundPosition": "0 0, 10px 10px" + }, + "code": `
+ {/* Intersecting Circles Background */} +
+ {/* Your Content/Components */} +
+

Dot Pattern

+
+
` + }, + { + "id": "grid-spotlight", + "name": "Grid Spotlight", + "category": "geometric", + "badge": "New", + "style": { + "background": "#0a0a0a", + "backgroundImage": ` + linear-gradient(to right, rgba(99, 102, 241, 0.15) 1px, transparent 1px), + linear-gradient(to bottom, rgba(99, 102, 241, 0.15) 1px, transparent 1px), + radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2), transparent 50%) + `, + "backgroundSize": "40px 40px, 40px 40px, 100% 100%" + }, + "code": `
+ {/* Grid Spotlight Background */} +
+ {/* Your Content/Components */} +
` + } ];