×

注意!页面内容来自https://translatormind.com/,本站不储存任何内容,为了更好的阅读体验进行在线解析,若有广告出现,请及时反馈。若您觉得侵犯了您的利益,请通知我们进行删除,然后访问 原网页

Go Beyond Translation. Find Your Voice.

The Most Organized FREE Online Translators

Tired of boringliteral translations? So are we. Welcome to TranslatorMinda universe of creative AI-powered translators that infuse your words with personalityand humor.

All-in-One AI Language Toolkit

Translate textsimagesand contexts; check your grammar; and look up words instantly – all in one seamless platform.

AI Dictionary

Unlock meanings with ease – find definitionspronunciationsand usage in seconds.

AI Text Translator

Translate 250+ languages with AI – keep the toneand meaning intact.

AI Image Translator

Instantly read and translate text from images – menussignsdocumentsand more.

AI Grammar Checker

Perfect your writing – fix grammarspellingand punctuation with one click.

AI Contextual Translator

Translate with context in mind – for naturalculture-aware communication.

AI Paraphraser

Easily rewrite your text with AI – retain the original meaning while improving claritytoneand flow.

AI Proofreader

Polish your text to perfection – ensure clearaccurateand natural writing with AI-powered proofreading.

Vocabulary Story Generator

Learn new words through funmemorable stories.

All AI Translators

Explore our full collection of AI-powered translators – each with a unique personality and specialty.

Not Just a ToolIt's a Playground for Words

TranslatorMind was built for anyone who believes communication should be fun and expressive.

Creators & Writers

Break through writer's block with fresh perspectives.
Creators & Writers

Social Media Mavens

Craft unique posts and replies that stand out.
Social Media Mavens

Everyday Communicators

Add a spark of joy and humor to your daily chats with friends and colleagues.
Everyday Communicators

Ready to transform your words

translatormind
Welcome to our ever-expanding collection of AI translators. Each translator here has a unique personality designed to transform your words in surprising and creative ways.
Disclaimer: While we strive for accuracythis AI-powered translation may not be perfect. Use it as a guide and always double-check important details.

AI Assistant

How can I help you today?

0 / 3000
⏱️
<> /* ============================================ Ask AI Container - Enhanced Design v3.0 CSS Custom Properties for Brand Consistency ============================================ */ .ask-ai-container { /* Brand Color Variables - Primary: #1c21f5 (Vibrant Modern Blue) */ --primary-color: #1c21f5; --primary-hover: #1418c8; --primary-light: #3d43f7; --primary-alpha-10: rgba(28332450.1); --primary-alpha-12: rgba(28332450.12); --primary-alpha-20: rgba(28332450.2); --primary-alpha-25: rgba(28332450.25); --primary-alpha-35: rgba(28332450.35); --primary-alpha-40: rgba(28332450.4); --primary-alpha-60: rgba(28332450.6); /* Layout */ width: 100%; max-width: none; margin: 0; padding: 0; font-family: -apple-systemBlinkMacSystemFont'Segoe UI'RobotoOxygenUbuntuCantarellsans-serif; background: transparent; /* ✅ Let Popup control background */ border-radius: inherit; /* ✅ Inherit from Popup */ box-shadow: none; /* ✅ Let Popup control shadow */ overflow: visible; /* ✅ Changed from hidden to visible */ display: flex; flex-direction: column; min-height: 400px; /* ✅ Changed from height: 100% to min-height */ max-height: 80vh; /* ✅ Added max-height for responsiveness */ } .ask-ai-container[data-theme="dark"] { background: transparent; color: #e0e0e0; } /* ============================================ Messages Container - Enhanced ============================================ */ .ask-ai-messages { flex: 1; max-height: none; min-height: 250px; /* ✅ Increased from 200px */ overflow-y: auto; padding: 24px; /* ✅ Increased padding for Popup context */ background: transparent; /* ✅ Let Popup control background */ border-bottom: 1px solid rgba(0000.08); /* ✅ Subtle divider */ } .ask-ai-container[data-theme="dark"] .ask-ai-messages { background: #1a1a1a; border-bottom-color: #333; } /* ============================================ Welcome Message - Premium Look ============================================ */ .ask-ai-welcome-message { text-align: center; padding: 30px 20px; color: #6b7280; } .welcome-icon svg { width: 56px; height: 56px; margin-bottom: 16px; color: var(--primary-color); filter: drop-shadow(0 2px 8px var(--primary-alpha-25)); } .ask-ai-welcome-message h3 { margin: 0 0 8px 0; font-size: 1.375rem; font-weight: 600; color: #111827; } .ask-ai-container[data-theme="dark"] .ask-ai-welcome-message h3 { color: #e0e0e0; } .ask-ai-welcome-message p { margin: 0; font-size: 0.9375rem; color: #718096; } /* ============================================ Message Bubbles - Enhanced Radius ============================================ */ .ask-ai-message { margin-bottom: 18px; animation: fadeIn 0.3s ease-in; } @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } } .ask-ai-message-user { text-align: right; } .ask-ai-message-bubble { display: inline-block; max-width: 85%; padding: 12px 16px; border-radius: 16px; text-align: left; position: relative; box-shadow: 0 1px 3px rgba(0000.08); } .ask-ai-message-user .ask-ai-message-bubble { background: linear-gradient(135degvar(--primary-color) 0%var(--primary-light) 100%); color: white; } .ask-ai-message-ai .ask-ai-message-bubble { background: white; color: #111827; border: 1px solid #e5e7eb; } .ask-ai-container[data-theme="dark"] .ask-ai-message-ai .ask-ai-message-bubble { background: #2a2a2a; color: #e0e0e0; border-color: #404040; } .ask-ai-message-content { margin: 0; font-size: 1rem; /* 16px desktop - clear baseline */ line-height: 1.6; word-wrap: break-word; letter-spacing: 0.01em; /* subtle spacing for readability */ } .ask-ai-message-content code { background: rgba(0000.08); padding: 3px 6px; border-radius: 6px; font-family: 'SF Mono''Monaco''Consolas'monospace; font-size: 0.875rem; /* 14px - better for code readability */ } .ask-ai-message-content pre { background: #1e1e1e; color: #d4d4d4; padding: 12px; border-radius: 8px; overflow-x: auto; margin: 12px 0; font-size: 0.875rem; /* 14px - consistent code block size */ line-height: 1.5; } .ask-ai-message-content pre code { background: none; padding: 0; color: inherit; font-size: inherit; /* inherit from pre */ } .ask-ai-message-time { display: none; /* ✅ Hidden - timestamp removed */ } .ask-ai-copy-btn { background: none; border: none; padding: 4px 8px; cursor: pointer; color: #6b7280; font-size: 0.75rem; margin-top: 8px; display: inline-flex; align-items: center; gap: 4px; transition: all 0.2s ease; border-radius: 6px; } .ask-ai-copy-btn:hover { color: var(--primary-color); background: var(--primary-alpha-10); } .ask-ai-copy-btn svg { width: 14px; height: 14px; } /* ============================================ Input Area - Translator Style ============================================ */ .ask-ai-input-area { padding: 24px; /* ✅ Match messages padding */ background: transparent; /* ✅ Let Popup control background */ flex-shrink: 0; border-top: none; /* ✅ Remove redundant border */ } .ask-ai-container[data-theme="dark"] .ask-ai-input-area { background: #1a1a1a; border-top-color: #333; } .ask-ai-input-wrapper { position: relative; margin-bottom: 12px; } .ask-ai-input { width: 100%; padding: 14px 16px; border: 1.5px solid #e1e5e9; /* slightly thicker for better definition */ border-radius: 16px; font-size: 1rem; /* ensure >=16px to avoid iOS zoom */ line-height: 1.5; font-family: inherit; resize: vertical; min-height: 56px; max-height: 160px; transition: all 0.2s ease; background: #ffffff; } .ask-ai-input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 4px var(--primary-alpha-10); /* Refined: softermore subtle glow */ /* No outline needed - box-shadow provides clean focus indication */ } .ask-ai-container[data-theme="dark"] .ask-ai-input { background: #2a2a2a; border-color: #404040; color: #e0e0e0; } .ask-ai-char-counter { position: absolute; bottom: 12px; right: 14px; font-size: 0.75rem; color: #9ca3af; font-weight: 500; padding: 4px 8px; background: rgba(2552552550.95); border-radius: 6px; pointer-events: none; } .ask-ai-char-counter.warning { color: #d69e2e; } .ask-ai-char-counter.limit { color: #e53e3e; font-weight: 600; } /* ============================================ Actions - Enhanced Buttons ============================================ */ .ask-ai-actions { display: flex; gap: 10px; justify-content: flex-end; } .ask-ai-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; /* WCAG 2.1: ensure 44x44px min touch target */ min-height: 44px; border: none; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.2s ease; } .ask-ai-btn svg { width: 18px; height: 18px; } .ask-ai-btn-primary { background: var(--primary-color); color: white; } .ask-ai-btn-primary:hover:not(:disabled) { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 4px 12px var(--primary-alpha-35); } .ask-ai-btn-primary:active:not(:disabled) { transform: translateY(0); } .ask-ai-btn-primary:disabled { background: #a0aec0; cursor: not-allowed; transform: none; } .ask-ai-btn-secondary { background: #f3f4f6; color: #4a5568; } .ask-ai-btn-secondary:hover { background: #e5e7eb; transform: translateY(-1px); } .ask-ai-container[data-theme="dark"] .ask-ai-btn-secondary { background: #2a2a2a; color: #9ca3af; } /* ============================================ Loading Spinner ============================================ */ .spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid rgba(2552552550.3); border-top-color: white; border-radius: 50%; animation: spin 0.8s linear infinite; } @keyframes spin { to { transform: rotate(360deg); } } /* ============================================ Rate Limit Info - Enhanced ============================================ */ .ask-ai-rate-limit-info { padding: 14px 18px; background: #fff3cd; color: #856404; display: flex; align-items: center; gap: 12px; border-top: 1px solid #ffeaa7; font-size: 0.875rem; border-radius: 0; } .rate-limit-icon { font-size: 1.375rem; } /* ============================================ Typing Indicator ============================================ */ .ask-ai-typing { display: inline-flex; gap: 5px; padding: 12px 16px; } .ask-ai-typing span { width: 7px; height: 7px; background: #9ca3af; border-radius: 50%; animation: typing 1.4s infinite; } .ask-ai-typing span:nth-child(2) { animation-delay: 0.2s; } .ask-ai-typing span:nth-child(3) { animation-delay: 0.4s; } @keyframes typing { 0%60%100% { transform: translateY(0); } 30% { transform: translateY(-10px); } } /* ============================================ Tablet Responsive (iPadmedium screens) ============================================ */ @media (min-width: 768px) and (max-width: 1024px) { .ask-ai-message-content { font-size: 1.0625rem; /* 17px - slightly larger for tablet reading distance */ line-height: 1.65; } .ask-ai-welcome-message h3 { font-size: 1.5rem; /* 24px */ } .ask-ai-welcome-message p { font-size: 1rem; /* 16px */ } .ask-ai-input { font-size: 1.0625rem; /* 17px */ } .ask-ai-btn { font-size: 1.0625rem; /* 17px - tablets are touch devices too */ padding: 12px 24px; /* maintain 44x44px touch target */ min-height: 44px; } } /* ============================================ Mobile Responsive (phones) ============================================ */ @media (max-width: 767px) { .ask-ai-messages { padding: 16px; } .ask-ai-input-area { padding: 16px; } .ask-ai-message-bubble { max-width: 90%; padding: 10px 14px; } /* Mobile: larger text for comfortable reading at arm's length */ .ask-ai-message-content { font-size: 1.0625rem; /* 17px - optimal for mobile readability */ line-height: 1.7; /* more breathing room on mobile */ letter-spacing: 0.015em; } .ask-ai-message-content code { font-size: 0.9375rem; /* 15px - slightly larger for mobile */ } .ask-ai-message-content pre { font-size: 0.9375rem; /* 15px */ line-height: 1.6; } .ask-ai-btn { font-size: 1.0625rem; /* 17px - easier to tap */ padding: 13px 24px; /* WCAG AAA: 44x44px touch target */ min-height: 48px; /* mobile standardeven more comfortable */ } .ask-ai-input { font-size: 1rem; /* 16px - iOS no-zoom threshold */ min-height: 48px; line-height: 1.6; } .ask-ai-char-counter { font-size: 0.875rem; /* 14px - minimum readable on mobile */ } .ask-ai-copy-btn { font-size: 0.875rem; /* 14px */ padding: 6px 10px; /* larger tap target */ } .welcome-icon svg { width: 48px; height: 48px; } .ask-ai-welcome-message h3 { font-size: 1.5rem; /* 24px - more prominent on mobile */ } .ask-ai-welcome-message p { font-size: 1rem; /* 16px - easier to read */ } .ask-ai-rate-limit-info { font-size: 0.9375rem; /* 15px - ensure visibility */ } } /* Accessibility: clearvisible focus s and support browser zoom */ .ask-ai-container { -webkit-text-size-adjust: 100%; } /* Keyboard focus s - Refined for modern UX */ /* Buttons need outline for accessibility (no box-shadow) */ .ask-ai-btn:focus { outline: 0.2rem solid var(--primary-color); outline-offset: 0.2rem; } /* Modern browsers: only show outline on keyboard focusnot mouse click */ .ask-ai-btn:focus:not(:focus-visible) { outline: none; } .ask-ai-btn:focus-visible { outline: 0.2rem solid var(--primary-color); outline-offset: 0.2rem; } /* Input already has box-shadow glowno outline needed - cleaner design */ .ask-ai-input:focus, .ask-ai-input:focus-visible { outline: none; /* box-shadow provides sufficient focus indication */ } @media (prefers-reduced-motion: reduce) { .ask-ai-message.ask-ai-typing.spinner { animation: none !important; transition: none !important; } } /* ============================================ Scrollbar Styling - Premium ============================================ */ .ask-ai-messages::-webkit-scrollbar { width: 8px; } .ask-ai-messages::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; } .ask-ai-messages::-webkit-scrollbar-thumb { background: linear-gradient(180degvar(--primary-alpha-20) 0%var(--primary-alpha-35) 100%); border-radius: 10px; } .ask-ai-messages::-webkit-scrollbar-thumb:hover { background: linear-gradient(180degvar(--primary-alpha-40) 0%var(--primary-alpha-60) 100%); } .ask-ai-container[data-theme="dark"] .ask-ai-messages::-webkit-scrollbar-track { background: #2a2a2a; } .ask-ai-container[data-theme="dark"] .ask-ai-messages::-webkit-scrollbar-thumb { background: var(--primary-alpha-40); } .ask-ai-container[data-theme="dark"] .ask-ai-messages::-webkit-scrollbar-thumb:hover { background: var(--primary-alpha-60); } /* Turnstile Widget */ .ask-ai-turnstile-wrap { display: flex; justify-content: center; margin: 0.5rem 0 0; } .ask-ai-turnstile-wrap:empty { display: none; }

Tell Us Your Fun Idea!

< id="global-s-inline-css" type="text/css"> :root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgb(6,147,227) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgb(252,185,0) 0%,rgb(255,105,0) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgb(255,105,0) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0000.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0000.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0000.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgb(255255255)6px 6px rgb(000);--wp--preset--shadow--crisp: 6px 6px 0px rgb(000);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;} /*# sourceURL=global-s-inline-css */