-
-
Notifications
You must be signed in to change notification settings - Fork 282
Expand file tree
/
Copy path_Colored.svelte
More file actions
34 lines (30 loc) · 1.07 KB
/
_Colored.svelte
File metadata and controls
34 lines (30 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<div class="paper-container">
<Paper color="custom-green">
<Title>Custom Color Paper</Title>
<Content>
Paper can have a color, allowing you to construct fancy school projects
with the colored paper and glue sticks.
</Content>
</Paper>
<Paper color="custom-green" variant="unelevated">
<Title>Unelevated Custom Color Paper</Title>
<Content>
Unelevated custom color paper is nice because it will pretty much always
stand out, even in light mode.
</Content>
</Paper>
<Paper color="custom-green" variant="outlined">
<Title>Outlined Custom Color Paper</Title>
<Content>Outlined custom color paper has a neat border.</Content>
</Paper>
<Paper color="custom-green" variant="outlined" class="custom-green">
<Title>Outlined Custom Color Paper with Custom Color Text</Title>
<Content>
Outlined custom color paper with custom color color text. For the times
when you need to draw attention.
</Content>
</Paper>
</div>
<script lang="ts">
import Paper, { Title, Content } from '@smui/paper';
</script>