You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

47 lines
1.5 KiB

  1. import {createArticlePage} from "./ArticlePage";
  2. export default {
  3. title: 'Pages/Article Page',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. args: {
  8. },
  9. }
  10. const Template = ({...args}) => {
  11. return createArticlePage({...args});
  12. };
  13. export const ArticlePage = Template.bind({});
  14. ArticlePage.args = {};
  15. export const ArticlePageMicrosite = Template.bind({});
  16. ArticlePageMicrosite.args = {
  17. styleBlock: `
  18. :root {
  19. --theme-color-primary: #E6007E !important;
  20. --theme-color-primary-microsite: #000000 !important;
  21. --theme-color-primary-rgb: 230,0,126 !important;
  22. --theme-color-primary-dimmed-01: #EB3398 !important;
  23. --theme-color-primary-dimmed-02: #F063B0 !important;
  24. --theme-color-primary-dimmed-03: #F9BFDF !important;
  25. --theme-color-primary-dimmed-04: #FCE6F2 !important;
  26. --theme-color-secondary: #563F54 !important;
  27. --theme-color-secondary-microsite: #E6007E !important;
  28. --theme-color-secondary-intensed: #563F54 !important;
  29. --theme-color-secondary-dimmed: #EEECEE !important;
  30. --theme-color-neutral: #E6007E !important;
  31. --theme-color-neutral-background: #EFF3F6 !important;
  32. --theme-color-background: #FFFFFF !important;
  33. --theme-color-text-intensed: #000000 !important;
  34. --theme-color-text: #000000 !important;
  35. --theme-color-link: #E6007E !important;
  36. --theme-color-link-hover: #E6007E !important;
  37. --theme-color-gradient-01: #E6007E !important;
  38. --theme-color-gradient-02: #9f1f69 !important;
  39. --theme-color-gradient-03: #563f54 !important;
  40. }
  41. `
  42. };