edited default project colors

This commit is contained in:
jorge-vitrubio 2024-01-12 19:13:04 +01:00
parent e96aa46d8e
commit f9efa78efc
2 changed files with 46 additions and 0 deletions

View File

@ -24,6 +24,42 @@ A WordPress theme for the Xarxaprod.cat
2. Click Upload Theme and Choose File, then select the theme's .zip file. Click Install Now.
3. Click Activate to use your new theme right away.
## Design and styles
### Logo
### Colors
The colors used in the design are:
- black: #000000
- white: #ffffff
- salmon: #ff866f
- yellow: #ffcb1f
- pink: #ff6bc3
- violet: #651aff
- cyan: #00d1ec
- green: #00f274
- red: #ff5a69
### Fonts
## Development
Is is developed using the underscores base, wich is capable of interpreting sass/scss, php control and other magic.
### npm
Before being able to use npm, do `npm install` and follow screen instrucions.
#### all npm actions
to see all the implemented actions do `npm run` and will show help
### Sass / Scss
Edit the files inside `sass` directory, they are well documented.
To compile sass, with in the theme directory do:
- to follow changes as you work `npm run watch`
- to compile css before deploy `npm run compile:css`
- to compile css applied in the admin/loged in dashboard 'npm run compile:cssadmin'
## Frequently Asked Questions
### Does this theme support any plugins?

View File

@ -1,3 +1,13 @@
$color__xxp_black: #000000
$color__xxp_white: #ffffff
$color__xxp_salmon: #ff866f
$color__xxp_yellow: #ffcb1f
$color__xxp_pink: #ff6bc3
$color__xxp_violet: #651aff
$color__xxp_cyan: #00d1ec
$color__xxp_green: #00f274
$color__xxp_red: #ff5a69
$color__white: #fff;
$color__white-dark: #fdfdfd;
$color__white-transparent: rgba(255,255,255,0.95);