Dependencies
Packages
For Svelte 5 install @aws-amplify/ui-svelte with npm or yarn:
npm install @aws-amplify/ui-svelte aws-amplifyyarn add @aws-amplify/ui-svelte aws-amplifySvelte versions prior to 5 are not supported by Amplify UI as the components rely on runes, which are available since Svelte v5 only
Styles
Amplify UI ships with a default theme that you can customize to match the look and feel of your project.
import '@aws-amplify/ui-svelte/styles.css';
Fonts
By default, Amplify UI does not bundle a font so that you can choose which font to use in your application and how you want to load the font. The default theme references the Inter font because it works well for UI design and is offered as a variable font. The easiest way to add the Inter font to your application is to use the Google Fonts CDN:
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap"
rel="stylesheet"
/>
or
@import url('https://fonts.googleapis.com/css2?family=Inter:slnt,wght@-10..0,100..900&display=swap');
You can also install it as an NPM dependency:
npm install @fontsource/interyarn add @fontsource/interThen import the variable font in your application:
import '@fontsource/inter/variable.css';
Check out Fontsource for more information and documentation on this library.
If you want to enable OpenType features like alternative styles, you can use the font directly from the creator's website: https://rsms.me/inter/
@import url('https://rsms.me/inter/inter.css');
html {
/* this enables some alternative styles and contextual characters to the font */
font-feature-settings: 'ss01', 'ss02', 'case', 'salt';
}