Skip to content

Commit 317622b

Browse files
committed
Update dependencies and colors
1 parent 669d400 commit 317622b

File tree

10 files changed

+544
-210
lines changed

10 files changed

+544
-210
lines changed

package-lock.json

Lines changed: 521 additions & 185 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -18,36 +18,34 @@
1818
},
1919
"devDependencies": {
2020
"@playwright/test": "^1.48.2",
21-
"@sveltejs/adapter-static": "^3.0.1",
22-
"@sveltejs/kit": "^2.7.3",
21+
"@sveltejs/adapter-static": "^3.0.6",
22+
"@sveltejs/kit": "^2.8.1",
2323
"@sveltejs/vite-plugin-svelte": "^4.0.0",
2424
"@types/eslint": "9.6.1",
25-
"@types/node": "^22.8.1",
26-
"@typescript-eslint/eslint-plugin": "^8.11.0",
27-
"@typescript-eslint/parser": "^8.11.0",
25+
"@types/node": "^22.9.0",
26+
"@typescript-eslint/eslint-plugin": "^8.14.0",
27+
"@typescript-eslint/parser": "^8.14.0",
2828
"autoprefixer": "^10.4.20",
29-
"eslint": "^9.13.0",
29+
"eslint": "^9.14.0",
3030
"eslint-config-prettier": "^9.1.0",
3131
"eslint-plugin-svelte": "^2.46.0",
3232
"jsdom": "^25.0.1",
33-
"npm-check-updates": "^17.1.6",
34-
"postcss": "^8.4.47",
33+
"postcss": "^8.4.49",
3534
"prettier": "^3.3.3",
36-
"prettier-plugin-svelte": "^3.2.7",
35+
"prettier-plugin-svelte": "^3.2.8",
3736
"prettier-plugin-tailwindcss": "^0.6.8",
38-
"sv": "^0.5.9",
39-
"svelte": "^5.1.3",
40-
"svelte-check": "^4.0.5",
41-
"tailwindcss": "^3.4.14",
37+
"svelte": "^5.2.0",
38+
"svelte-check": "^4.0.8",
39+
"tailwindcss": "^3.4.15",
4240
"tailwindcss-debug-screens": "^2.2.1",
43-
"tslib": "^2.8.0",
41+
"tslib": "^2.8.1",
4442
"typescript": "^5.6.3",
4543
"typescript-eslint": "^8.11.0",
46-
"vite": "^5.4.10",
47-
"vitest": "2.1.3"
44+
"vite": "^5.4.11",
45+
"vitest": "2.1.5"
4846
},
4947
"type": "module",
5048
"dependencies": {
51-
"@frequency-chain/style-guide": "^0.1.17"
49+
"@frequency-chain/style-guide": "^0.1.18"
5250
}
5351
}

src/components/Sections/About.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<!-- Text content -->
1313
<SectionContent class="mx-auto sm:pb-f56 sm:pt-0 md:py-f56">
1414
<SlideIn>
15-
<h2 class="title-70 pb-f24 text-navy">What is<br /> Frequency?</h2>
15+
<h2 class="title-70 pb-f24 text-primary">What is<br /> Frequency?</h2>
1616
</SlideIn>
1717

1818
<SectionParagraph class="text-sm md:max-w-[415px] lg:max-w-[415px]">

src/components/Sections/DeveloperSteps.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
const sectionParagraphClasses = 'text-sm mt-f8';
1111
const sectionClasses = 'ml-[30px]';
12-
const stepTitleClasses = 'text-h3 font-bold text-navy';
12+
const stepTitleClasses = 'text-h3 font-bold text-primary';
1313
</script>
1414

1515
<div class="hidden lg:block">

src/components/Sections/DeveloperStepsMobile.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import { DeveloperStepsText } from '$lib/consts';
99
1010
const sectionParagraphClasses = 'text-normal mt-f12 leading-[20px]';
11-
const stepTitleClasses = 'text-h3 font-bold text-navy';
11+
const stepTitleClasses = 'text-h3 font-bold text-primary';
1212
const circleWidth = '60';
1313
const sectionClasses = 'flex flex-col px-[36px]';
1414
const stepClasses = 'py-[12px] flex flex-col';

src/components/Sections/DeveloperStepsTablet.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
const sectionParagraphClasses = 'text-[12px] mt-[16px]';
1111
const stepTextClasses = '';
12-
const stepTitleClasses = 'text-[40px] font-bold text-navy';
12+
const stepTitleClasses = 'text-[40px] font-bold text-primary';
1313
const stepClasses = 'flex flex-col';
1414
const circleWidth = '60';
1515
</script>

src/components/Sections/Ecosystem.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</section>
3838
</div>
3939
<section class="freq-container py-10">
40-
<Typography tag="h1" class="h1 mb-6 text-center font-title text-navyLight">
40+
<Typography tag="h1" class="h1 mb-6 text-center font-title text-primary">
4141
Companies in the Frequency Ecosystem
4242
</Typography>
4343
<div class="flex w-full flex-wrap justify-around p-2 md:p-6">

src/components/Sections/Mission/MissionHeader.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<div class="pl-f32 lg:pl-f48">
66
<SlideIn>
7-
<h2 class="title-70 pb-f24 text-navy">Frequency’s Mission</h2>
7+
<h2 class="title-70 pb-f24 text-primary">Frequency’s Mission</h2>
88
</SlideIn>
99
<SlideIn>
1010
<h5

src/components/Sections/Top.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<SectionContent>
1010
<div class="">
1111
<SlideIn>
12-
<h2 class="title-100 text-navy">Bringing Humanity Internet of People</h2>
12+
<h2 class="title-100 text-primary">Bringing Humanity Internet of People</h2>
1313
</SlideIn>
1414
</div>
1515
</SectionContent>

src/routes/docs/components/DocsMain.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<DocsMainImage />
88
</div>
99
<div class="flex flex-col gap-6 pt-f32 lg:w-1/2 lg:pt-f224 vertical-md:pt-f224">
10-
<h2 class=" title-70 text-h2 text-navy">Get Started with Frequency Development</h2>
10+
<h2 class=" title-70 text-h2 text-primary">Get Started with Frequency Development</h2>
1111
<p class="body text-h5 font-bold text-black sm:text-normal">
1212
Frequency offers a variety of open source tools and documentation in the Developers Portal to help you rapidly get
1313
applications up and running on Frequency.

0 commit comments

Comments
 (0)