UNPKG

193 BTypeScriptView Raw
1interface Colors {
2 mongeral: string;
3}
4
5export default (Colors: Colors) => `
6 background-color: transparent;
7 color: ${Colors.mongeral};
8
9 &:hover {
10 text-decoration: underline;
11 }
12`;