Aurora UI

Explore the features and applications of the Aurora UI web design style

Back to Style List

About This Style

Aurora UI is an interface design style inspired by the natural phenomenon of the aurora borealis. It creates an ethereal, dreamy, and light-filled visual effect by using large, soft, highly blurred colorful glows (often dominated by blue-green tones) in the background.

This style is often combined with dark mode to better highlight the flowing color glows in the background and is frequently accompanied by smooth animation effects to enhance its dynamism.

Main Features:

Aurora UI is suitable for websites and applications that need to create a sense of technology, futurism, tranquility, or a dreamlike atmosphere, such as SaaS platforms, data visualization, and creative portfolios.

Example AI Prompt

Design a web application interface with an Aurora UI style. Use a very dark background (e.g., #0d1117). Create large, intensely blurred (e.g., filter: blur(140px)) background gradient shapes (opacity: 0.7) primarily using aurora-like colors: vibrant green (e.g., #34d399), teal (e.g., #2dd4bf), deep blue (e.g., #3b82f6), and a touch of violet (e.g., #8b5cf6). Position these shapes dynamically, partially overlapping and extending off-screen. Apply a subtle, slow, and wide-ranging animation to simulate aurora movement. Foreground cards should use a semi-transparent blue-green gradient background (e.g., linear-gradient(135deg, rgba(20, 184, 166, 0.85), rgba(59, 130, 246, 0.85))) to ensure text readability. Use 'Inter' font. Buttons should use a saturated teal (e.g., #14b8a6) with white text.

(中文解释:设计一个具有极光 UI 风格的 Web 应用界面。使用非常深的背景(例如 #0d1117)。创建大型、强烈模糊(例如 filter: blur(140px))、透明度为0.7的背景渐变形状,主要使用类似极光的颜色:鲜绿色(例如 #34d399)、青色(例如 #2dd4bf)、深蓝色(例如 #3b82f6)和少量紫色(例如 #8b5cf6)。动态地放置这些形状,使其部分重叠并延伸到屏幕外。应用微妙、缓慢且范围广泛的动画来模拟极光运动。前景卡片应使用半透明的蓝绿渐变背景(例如 linear-gradient(135deg, rgba(20, 184, 166, 0.85), rgba(59, 130, 246, 0.85)))以确保文本的可读性。使用 'Inter' 字体。按钮应使用饱和的青色(例如 #14b8a6)和白色文本。)

Theme CSS Snippets

以下是将此极光 UI 风格(蓝绿色调,动态效果,更高饱和度)应用为全局主题的核心 CSS 代码 (body.theme-aurora-ui)。它通过伪元素创建模糊的背景光晕效果,并包含动画:


                

                    /* ==========================================================================
                       14. Aurora UI Theme (Blue-Green Focus, Dynamic - Enhanced Readability)
                       ========================================================================== */
                    
                    body.theme-aurora-ui {
                        /* Base Colors & Typography */
                        --page-bg: #0d1117;
                        --text-color: #d0d8f0; /* General page text */
                        --heading-color: #e8f0ff; /* General page headings */
                        --link-color: #14b8a6;
                        --link-hover-color: #0d9488;
                        --border-color: rgba(255, 255, 255, 0.2);
                    
                        /* Card & Section Styles - Enhanced Readability */
                        --card-bg: rgba(23, 37, 59, 0.92); /* Darker, highly opaque for content areas */
                        --card-text-color: #e0e7ff;
                        --card-heading-color: #f0f5ff;
                        --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
                        --card-hover-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
                        --card-border-radius: 14px;
                    
                        /* Header & Footer Styles */
                        --header-bg: rgba(13, 17, 23, 0.88);
                        --header-text-color: var(--heading-color);
                        --footer-bg: rgba(13, 17, 23, 0.88);
                        --footer-text-color: #a1a1aa;
                    
                        /* Button Styles */
                        --button-bg: var(--link-color);
                        --button-text-color: #ffffff;
                        /* ... (Other button variables) ... */
                    
                        /* Prompt Area & Code Block Styles */
                        --prompt-bg: rgba(0, 0, 0, 0.45);
                        --prompt-text-color: var(--card-text-color);
                    
                        /* Aurora Specific Colors (Background Glows) */
                        --aurora-color-1: #34d399; /* ... */
                        --aurora-color-2: #2dd4bf; /* ... */
                        --aurora-color-3: #3b82f6; /* ... */
                        --aurora-color-4: #8b5cf6; /* ... */
                    
                        position: relative; overflow-x: hidden;
                        background-color: var(--page-bg);
                        color: var(--text-color);
                        font-family: var(--base-font);
                    }
                    
                    /* Aurora Effect Background Shapes */
                    body.theme-aurora-ui::before,
                    body.theme-aurora-ui::after {
                        content: ""; position: fixed; z-index: -1;
                        filter: blur(140px); opacity: 0.65; /* Adjusted opacity */
                        /* ... (Other pseudo-element styles) ... */
                    }
                    /* ... (Animations and other related rules like text shadows, etc., can be added here or noted as applied externally) ... */
                    /*
                      Note: Specific text colors for content within cards/sections
                      (var(--card-text-color), var(--card-heading-color)) and
                      text-shadows for headings are applied via additional CSS rules
                      when this theme is active to ensure readability.
                    */
                                

注意:极光 UI 的效果很大程度上取决于模糊度、颜色选择、透明度、形状大小和位置的微调。动画效果是可选的,但可以增加动态感。请注意此效果可能对性能有一定要求。

Resource Download (Example)

下载包含此风格更完整 CSS 定义的压缩包。

下载 aurora-ui.zip