-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwind.config.js
36 lines (35 loc) · 966 Bytes
/
tailwind.config.js
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
36
// SPDX-FileCopyrightText: 2024 NOI Techpark <digital@noi.bz.it>
// SPDX-FileCopyrightText: NOI Techpark <digital@noi.bz.it>
//
// SPDX-License-Identifier: AGPL-3.0-or-later
/** @type {import('tailwindcss').Config} */
export default {
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
content: [],
theme: {
extend: {
colors: {
green: '#50742F',
'black-2': '#1F2328',
white: '#FFFFFF',
grey: '#F6F8FA',
stroke: '#D8DEE4',
'grey-2': '#9A9A9A',
'grey-3': '#687182',
'green-light': '#EDF1EA',
yellow: '#FFC000',
},
fontFamily: {
title: ['SourceSansPro', 'sans-serif'],
sans: ['SourceSansPro', 'sans-serif'],
},
borderRadius: {
DEFAULT: '6px',
},
borderColor: {
DEFAULT: '#D8DEE4',
},
},
},
plugins: [],
}