Skip to content

Commit 3e626e0

Browse files
chore: fix inconsistencies
1 parent ed55cee commit 3e626e0

File tree

51 files changed

+395
-421
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+395
-421
lines changed

apps/sim/app/(auth)/login/login-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,7 @@ export default function LoginPage({
500500
{showDivider && (
501501
<div className='relative my-6 font-light'>
502502
<div className='absolute inset-0 flex items-center'>
503-
<div className='w-full border-[var(--surface-4)] border-t' />
503+
<div className='w-full border-[var(--landing-bg-elevated)] border-t' />
504504
</div>
505505
<div className='relative flex justify-center text-sm'>
506506
<span className='bg-[var(--landing-bg)] px-4 font-[340] text-[var(--text-subtle)]'>

apps/sim/app/(auth)/oauth/consent/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ export default function OAuthConsentPage() {
195195
</div>
196196

197197
{session?.user && (
198-
<div className='mt-5 flex items-center gap-3 rounded-lg border border-[var(--surface-4)] px-4 py-3'>
198+
<div className='mt-5 flex items-center gap-3 rounded-lg border border-[var(--landing-bg-elevated)] px-4 py-3'>
199199
{session.user.image ? (
200200
<Image
201201
src={session.user.image}

apps/sim/app/(auth)/signup/signup-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ function SignupFormContent({
511511
})() && (
512512
<div className='relative my-6 font-light'>
513513
<div className='absolute inset-0 flex items-center'>
514-
<div className='w-full border-[var(--surface-4)] border-t' />
514+
<div className='w-full border-[var(--landing-bg-elevated)] border-t' />
515515
</div>
516516
<div className='relative flex justify-center text-sm'>
517517
<span className='bg-[var(--landing-bg)] px-4 font-[340] text-[var(--text-subtle)]'>

apps/sim/app/(home)/components/collaboration/collaboration.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ function DotGrid({ className, cols, rows, gap = 0 }: DotGridProps) {
2525
}}
2626
>
2727
{Array.from({ length: cols * rows }, (_, i) => (
28-
<div key={i} className='h-[1.5px] w-[1.5px] rounded-full bg-[var(--surface-4)]' />
28+
<div key={i} className='h-[1.5px] w-[1.5px] rounded-full bg-[var(--landing-bg-elevated)]' />
2929
))}
3030
</div>
3131
)
@@ -222,7 +222,7 @@ export default function Collaboration() {
222222
<style dangerouslySetInnerHTML={{ __html: CURSOR_KEYFRAMES }} />
223223

224224
<DotGrid
225-
className='overflow-hidden border-[var(--surface-4)] border-y bg-[var(--landing-bg)] p-1.5'
225+
className='overflow-hidden border-[var(--landing-bg-elevated)] border-y bg-[var(--landing-bg)] p-1.5'
226226
cols={120}
227227
rows={1}
228228
gap={6}
@@ -256,7 +256,7 @@ export default function Collaboration() {
256256

257257
<Link
258258
href='/signup'
259-
className='group/cta mt-3 inline-flex h-[32px] cursor-none items-center gap-1.5 rounded-[5px] border border-[var(--white)] bg-[var(--white)] px-2.5 font-[430] font-season text-black text-sm transition-colors hover:border-[var(--border-1)] hover:bg-[var(--border-1)]'
259+
className='group/cta mt-3 inline-flex h-[32px] cursor-none items-center gap-1.5 rounded-[5px] border border-white bg-white px-2.5 font-[430] font-season text-black text-sm transition-colors hover:border-[#E0E0E0] hover:bg-[#E0E0E0]'
260260
>
261261
Build together
262262
<span className='relative h-[10px] w-[10px] shrink-0'>
@@ -306,7 +306,7 @@ export default function Collaboration() {
306306
href='/blog/multiplayer'
307307
target='_blank'
308308
rel='noopener noreferrer'
309-
className='relative mx-4 mb-6 flex cursor-none items-center gap-3.5 rounded-[5px] border border-[var(--surface-4)] bg-[var(--landing-bg)] px-3 py-2.5 transition-colors hover:border-[var(--border-1)] hover:bg-[var(--surface-2)] sm:mx-8 md:absolute md:bottom-10 md:left-[80px] md:z-20 md:mx-0 md:mb-0'
309+
className='relative mx-4 mb-6 flex cursor-none items-center gap-3.5 rounded-[5px] border border-[var(--landing-bg-elevated)] bg-[var(--landing-bg)] px-3 py-2.5 transition-colors hover:border-[#3d3d3d] hover:bg-[var(--landing-bg-card)] sm:mx-8 md:absolute md:bottom-10 md:left-[80px] md:z-20 md:mx-0 md:mb-0'
310310
>
311311
<div className='relative h-7 w-11 shrink-0'>
312312
<Image src='/landing/multiplayer-cursors.svg' alt='' fill className='object-contain' />
@@ -323,7 +323,7 @@ export default function Collaboration() {
323323
</div>
324324

325325
<DotGrid
326-
className='overflow-hidden border-[var(--surface-4)] border-y bg-[var(--landing-bg)] p-1.5'
326+
className='overflow-hidden border-[var(--landing-bg-elevated)] border-y bg-[var(--landing-bg)] p-1.5'
327327
cols={120}
328328
rows={1}
329329
gap={6}

apps/sim/app/(home)/components/enterprise/enterprise.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -476,13 +476,13 @@ function AccessControlPanel() {
476476

477477
function TrustStrip() {
478478
return (
479-
<div className='mx-6 mt-4 grid grid-cols-1 overflow-hidden rounded-lg border border-[var(--surface-4)] sm:grid-cols-3 md:mx-8'>
479+
<div className='mx-6 mt-4 grid grid-cols-1 overflow-hidden rounded-lg border border-[var(--landing-bg-elevated)] sm:grid-cols-3 md:mx-8'>
480480
{/* SOC 2 + HIPAA combined */}
481481
<Link
482482
href='https://trust.delve.co/sim-studio'
483483
target='_blank'
484484
rel='noopener noreferrer'
485-
className='group flex items-center gap-3 border-[var(--surface-4)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--surface-1)] sm:border-r sm:border-b-0'
485+
className='group flex items-center gap-3 border-[var(--landing-bg-elevated)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--landing-bg-surface)] sm:border-r sm:border-b-0'
486486
>
487487
<Image
488488
src='/footer/soc2.png'
@@ -506,7 +506,7 @@ function TrustStrip() {
506506
href='https://github.com/simstudioai/sim'
507507
target='_blank'
508508
rel='noopener noreferrer'
509-
className='group flex items-center gap-3 border-[var(--surface-4)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--surface-1)] sm:border-r sm:border-b-0'
509+
className='group flex items-center gap-3 border-[var(--landing-bg-elevated)] border-b px-4 py-3.5 transition-colors hover:bg-[var(--landing-bg-surface)] sm:border-r sm:border-b-0'
510510
>
511511
<div className='flex h-[22px] w-[22px] shrink-0 items-center justify-center rounded-full bg-[#FFCC02]/10'>
512512
<GithubIcon width={11} height={11} className='text-[#FFCC02]/75' />
@@ -559,7 +559,7 @@ export default function Enterprise() {
559559

560560
<h2
561561
id='enterprise-heading'
562-
className='max-w-[600px] font-[430] font-season text-[32px] text-[var(--text-primary)] leading-[100%] tracking-[-0.02em] sm:text-[36px] md:text-[40px]'
562+
className='max-w-[600px] font-[430] font-season text-[32px] text-[var(--landing-text-dark)] leading-[100%] tracking-[-0.02em] sm:text-[36px] md:text-[40px]'
563563
>
564564
Enterprise features for
565565
<br />
@@ -602,7 +602,7 @@ export default function Enterprise() {
602602
<TrustStrip />
603603

604604
{/* Scrolling feature ticker — keyframe loop; pause on hover. Tags use transitions for hover. */}
605-
<div className='enterprise-feature-marquee relative mt-6 overflow-hidden border-[var(--surface-4)] border-t'>
605+
<div className='enterprise-feature-marquee relative mt-6 overflow-hidden border-[var(--landing-bg-elevated)] border-t'>
606606
<style dangerouslySetInnerHTML={{ __html: ENTERPRISE_FEATURE_MARQUEE_STYLES }} />
607607
{/* Fade edges */}
608608
<div
@@ -621,7 +621,7 @@ export default function Enterprise() {
621621
(tag, i) => (
622622
<span
623623
key={i}
624-
className='enterprise-feature-marquee-tag whitespace-nowrap border-[var(--surface-4)] border-r px-5 py-4 font-[430] font-season text-[color-mix(in_srgb,var(--landing-text-subtle)_40%,transparent)] text-small leading-none tracking-[0.02em] hover:bg-white/[0.04] hover:text-[color-mix(in_srgb,var(--landing-text-subtle)_55%,transparent)]'
624+
className='enterprise-feature-marquee-tag whitespace-nowrap border-[var(--landing-bg-elevated)] border-r px-5 py-4 font-[430] font-season text-[color-mix(in_srgb,var(--landing-text-subtle)_40%,transparent)] text-small leading-none tracking-[0.02em] hover:bg-white/[0.04] hover:text-[color-mix(in_srgb,var(--landing-text-subtle)_55%,transparent)]'
625625
>
626626
{tag}
627627
</span>
@@ -630,7 +630,7 @@ export default function Enterprise() {
630630
</div>
631631
</div>
632632

633-
<div className='flex items-center justify-between border-[var(--surface-4)] border-t px-6 py-5 md:px-8 md:py-6'>
633+
<div className='flex items-center justify-between border-[var(--landing-bg-elevated)] border-t px-6 py-5 md:px-8 md:py-6'>
634634
<p className='font-[430] font-season text-[color-mix(in_srgb,var(--landing-text-subtle)_40%,transparent)] text-base leading-[150%] tracking-[0.02em]'>
635635
Ready for growth?
636636
</p>

0 commit comments

Comments
 (0)