File size: 543 Bytes
1d066f5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
35
body {
  /* Set the background color to a light brown */
  background-color: #F5D6C1;
}

h1, h2, h3 {
  /* Set the text color to a darker brown */
  color: #A35A2F;
}

p {
  /* Set the text color to a sepia tone */
  color: #704214;
}

a {
  /* Set the link color to a dark brown */
  color: #5D3217;
}

a:hover {
  /* Set the link color on hover to a lighter brown */
  color: #965A2F;
}

li {
  /* Set the list item color to a darker brown */
  color: #A35A2F;
}

ol, ul {
  /* Set the list item color to a sepia tone */
  color: #704214;
}