CoolFace
Apppublic

robgomezsir/smart-click-segmentation-plugin

sourceHugging Faceupdated 8mo agoView on Hugging Face
0likes
index.html84 linesDownload Raw Back to root
1<!DOCTYPE html>2<html lang="pt-BR">3<head>4    <meta charset="UTF-8">5    <meta name="viewport" content="width=device-width, initial-scale=1.0">6    <title>Smart Click Segmentation - GIMP Plugin</title>7    <link rel="stylesheet" href="style.css">8    <script src="https://cdn.tailwindcss.com"></script>9    <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>10    <script src="https://unpkg.com/feather-icons"></script>11    <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>12    <script>13        tailwind.config = {14            darkMode: 'class',15            theme: {16                extend: {17                    colors: {18                        primary: {19                            50: '#f0f9ff',20                            100: '#e0f2fe',21                            200: '#bae6fd',22                            300: '#7dd3fc',23                            400: '#38bdf8',24                            500: '#0ea5e9',25                            600: '#0284c7',26                            700: '#0369a1',27                            800: '#075985',28                            900: '#0c4a6e',29                        },30                        secondary: {31                            50: '#fdf4ff',32                            100: '#fae8ff',33                            200: '#f5d0fe',34                            300: '#f0abfc',35                            400: '#e879f9',36                            500: '#d946ef',37                            600: '#c026d3',38                            700: '#a21caf',39                            800: '#86198f',40                            900: '#701a75',41                        },42                    },43                    animation: {44                        'pulse-slow': 'pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite',45                        'float': 'float 6s ease-in-out infinite',46                        'gradient': 'gradient 8s ease infinite',47                    },48                    keyframes: {49                        float: {50                            '0%, 100%': { transform: 'translateY(0)' },51                            '50%': { transform: 'translateY(-20px)' },52                        },53                        gradient: {54                            '0%, 100%': { backgroundPosition: '0% 50%' },55                            '50%': { backgroundPosition: '100% 50%' },56                        },57                    },58                },59            },60        }61    </script>62</head>63<body class="bg-gray-50 dark:bg-gray-900 transition-colors duration-300">64    <script src="components/navbar.js"></script>65    <script src="components/hero.js"></script>66    <script src="components/features.js"></script>67    <script src="components/demo.js"></script>68    <script src="components/installation.js"></script>69    <script src="components/docs.js"></script>70    <script src="components/footer.js"></script>71    72    <main-nav></main-nav>73    <hero-section></hero-section>74    <features-section></features-section>75    <demo-section></demo-section>76    <installation-section></installation-section>77    <docs-section></docs-section>78    <main-footer></main-footer>79    80    <script src="script.js"></script>81    <script>feather.replace();</script>82<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>83</body>84</html>